From cf410f8fb94d2052909f7c2bc5c3a0eee06511ba Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 4 Sep 2015 11:42:23 +0200 Subject: [PATCH] ffmpeg: Drop redundant ist check stream copy always has a input stream, it cannot use complex video/audio filters with unambigous input Fixes CID1322348 Signed-off-by: Michael Niedermayer --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index 9f9170e327..2b3085afea 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2914,7 +2914,7 @@ static int transcode_init(void) enc_ctx->time_base = dec_ctx->time_base; } - if (ist && !ost->frame_rate.num) + if (!ost->frame_rate.num) ost->frame_rate = ist->framerate; if(ost->frame_rate.num) enc_ctx->time_base = av_inv_q(ost->frame_rate);