summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2016-10-16 19:20:36 +0200
committerClément Bœsch <u@pkh.me>2016-10-16 19:22:19 +0200
commitad2d2ebd4ee904b57cac375694e67443717d08ba (patch)
tree5c7e4c6902519f75b37381cc635567b82bb2c538 /ffmpeg.c
parent8b59ce0342684a9b2fb0f87d6f191f33a8136619 (diff)
ffmpeg: remove unused ist parameter in do_subtitle_out()
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 39fac3fc60..edb27c8cde 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -918,7 +918,6 @@ error:
static void do_subtitle_out(OutputFile *of,
OutputStream *ost,
- InputStream *ist,
AVSubtitle *sub)
{
int subtitle_out_max_size = 1024 * 1024;
@@ -2396,7 +2395,7 @@ static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output)
|| ost->enc->type != AVMEDIA_TYPE_SUBTITLE)
continue;
- do_subtitle_out(output_files[ost->file_index], ost, ist, &subtitle);
+ do_subtitle_out(output_files[ost->file_index], ost, &subtitle);
}
out: