You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/ccaption_dec: remove unused arguments from function
This commit is contained in:
@@ -619,7 +619,7 @@ static int handle_eoc(CCaptionSubContext *ctx, int64_t pts)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void handle_delete_end_of_row(CCaptionSubContext *ctx, char hi, char lo)
|
static void handle_delete_end_of_row(CCaptionSubContext *ctx)
|
||||||
{
|
{
|
||||||
struct Screen *screen = get_writing_screen(ctx);
|
struct Screen *screen = get_writing_screen(ctx);
|
||||||
write_char(ctx, screen, 0);
|
write_char(ctx, screen, 0);
|
||||||
@@ -690,7 +690,7 @@ static int process_cc608(CCaptionSubContext *ctx, int64_t pts, uint8_t hi, uint8
|
|||||||
ctx->mode = CCMODE_POPON;
|
ctx->mode = CCMODE_POPON;
|
||||||
break;
|
break;
|
||||||
case 0x24:
|
case 0x24:
|
||||||
handle_delete_end_of_row(ctx, hi, lo);
|
handle_delete_end_of_row(ctx);
|
||||||
break;
|
break;
|
||||||
case 0x25:
|
case 0x25:
|
||||||
case 0x26:
|
case 0x26:
|
||||||
|
Reference in New Issue
Block a user