diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-01-27 15:05:58 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-02-09 15:24:15 +0100 |
commit | 868a31b42dc0fb62f63e704138f083d48f40d68c (patch) | |
tree | 685d86b950257c3a984d3792437a22a9e4d4a8b9 /fftools/ffmpeg.c | |
parent | 0281e28c3763765be1bff448bb735bbefca4c7d6 (diff) | |
download | ffmpeg-868a31b42dc0fb62f63e704138f083d48f40d68c.tar.gz |
avcodec: Make avcodec_decode_subtitle2 accept a const AVPacket*
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'fftools/ffmpeg.c')
-rw-r--r-- | fftools/ffmpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index aac393c714..a9c84f507c 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -2512,8 +2512,8 @@ static int trigger_fix_sub_duration_heartbeat(OutputStream *ost, const AVPacket return 0; } -static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output, - int *decode_failed) +static int transcode_subtitles(InputStream *ist, const AVPacket *pkt, + int *got_output, int *decode_failed) { AVSubtitle subtitle; int ret = avcodec_decode_subtitle2(ist->dec_ctx, |