]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/ccaption_dec: remove pts parameter from handle_char()
authorPaul B Mahol <onemda@gmail.com>
Mon, 15 Jun 2020 22:10:57 +0000 (00:10 +0200)
committerPaul B Mahol <onemda@gmail.com>
Tue, 16 Jun 2020 15:11:38 +0000 (17:11 +0200)
libavcodec/ccaption_dec.c

index a953181e53b8f6b258a5fcac14daaf149b16c6a0..6636043968953abcb0f8c645c051e03ecedac931 100644 (file)
@@ -653,7 +653,7 @@ static void handle_delete_end_of_row(CCaptionSubContext *ctx)
     write_char(ctx, screen, 0);
 }
 
-static void handle_char(CCaptionSubContext *ctx, char hi, char lo, int64_t pts)
+static void handle_char(CCaptionSubContext *ctx, char hi, char lo)
 {
     struct Screen *screen = get_writing_screen(ctx);
 
@@ -766,16 +766,16 @@ static int process_cc608(CCaptionSubContext *ctx, int64_t pts, uint8_t hi, uint8
         }
     } else if (hi >= 0x11 && hi <= 0x13) {
         /* Special characters */
-        handle_char(ctx, hi, lo, pts);
+        handle_char(ctx, hi, lo);
     } else if (hi >= 0x20) {
         /* Standard characters (always in pairs) */
-        handle_char(ctx, hi, lo, pts);
+        handle_char(ctx, hi, lo);
         ctx->prev_cmd[0] = ctx->prev_cmd[1] = 0;
     } else if (hi == 0x17 && lo >= 0x21 && lo <= 0x23) {
         int i;
         /* Tab offsets (spacing) */
         for (i = 0; i < lo - 0x20; i++) {
-            handle_char(ctx, ' ', 0, pts);
+            handle_char(ctx, ' ', 0);
         }
     } else {
         /* Ignoring all other non data code */