diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-01-25 16:00:46 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-25 16:00:46 +0100 |
commit | ec28cdedde8164139197f4ee178061007ec3e387 (patch) | |
tree | e812b572a2dc0f5bf3d90bbdbc62a3054f3da503 /libavfilter/vf_mcdeint.c | |
parent | fd048e690b0ec7797adc2371f8637707cd02c91b (diff) | |
download | ffmpeg-ec28cdedde8164139197f4ee178061007ec3e387.tar.gz |
avfilter/vf_mcdeint: fix gop_size
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_mcdeint.c')
-rw-r--r-- | libavfilter/vf_mcdeint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_mcdeint.c b/libavfilter/vf_mcdeint.c index 2aa2e273b2..13299158ae 100644 --- a/libavfilter/vf_mcdeint.c +++ b/libavfilter/vf_mcdeint.c @@ -117,7 +117,7 @@ static int config_props(AVFilterLink *inlink) enc_ctx->width = inlink->w; enc_ctx->height = inlink->h; enc_ctx->time_base = (AVRational){1,25}; // meaningless - enc_ctx->gop_size = 300; + enc_ctx->gop_size = INT_MAX; enc_ctx->max_b_frames = 0; enc_ctx->pix_fmt = AV_PIX_FMT_YUV420P; enc_ctx->flags = CODEC_FLAG_QSCALE | CODEC_FLAG_LOW_DELAY; |