Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2020-06-13 12:48:43 +0300
committerPaul B Mahol <onemda@gmail.com>2020-06-13 13:02:44 +0300
commit847d0b99dee1c2a8d9c3e8649fee7faa424efc3e (patch)
tree8c7e35cc4d712915236e28562779beb447d463ef /libavcodec/ccaption_dec.c
parent6995ea35060753a59bfa07aa089b00d1169cd86d (diff)
avcodec/ccaption_dec: remove unused arguments from function
Diffstat (limited to 'libavcodec/ccaption_dec.c')
-rw-r--r--libavcodec/ccaption_dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ccaption_dec.c b/libavcodec/ccaption_dec.c
index 9b1dbc053b..7a494b25a4 100644
--- a/libavcodec/ccaption_dec.c
+++ b/libavcodec/ccaption_dec.c
@@ -619,7 +619,7 @@ static int handle_eoc(CCaptionSubContext *ctx, int64_t pts)
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);
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;
break;
case 0x24:
- handle_delete_end_of_row(ctx, hi, lo);
+ handle_delete_end_of_row(ctx);
break;
case 0x25:
case 0x26: