diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-04 11:42:23 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-04 11:42:23 +0200 |
commit | cf410f8fb94d2052909f7c2bc5c3a0eee06511ba (patch) | |
tree | fa710512dfb245d64caad6e1ce8f207dadf31735 | |
parent | e9c58033e884b6ec8b8628793bb3d65c124b6590 (diff) | |
download | ffmpeg-cf410f8fb94d2052909f7c2bc5c3a0eee06511ba.tar.gz |
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 <michael@niedermayer.cc>
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |