summaryrefslogtreecommitdiff
path: root/libavfilter/vf_uspp.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-01-25 15:58:28 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-01-25 15:58:28 +0100
commitfd048e690b0ec7797adc2371f8637707cd02c91b (patch)
treed038655aaf0fbbcd1908ade5403e225582feacb4 /libavfilter/vf_uspp.c
parent49456ed6069a86846b8626f0cbeacf3c79d74949 (diff)
avfilter/vf_uspp: fix gop_size
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_uspp.c')
-rw-r--r--libavfilter/vf_uspp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_uspp.c b/libavfilter/vf_uspp.c
index 16e85ea018..a60e51312b 100644
--- a/libavfilter/vf_uspp.c
+++ b/libavfilter/vf_uspp.c
@@ -345,7 +345,7 @@ static int config_input(AVFilterLink *inlink)
avctx_enc->width = width + BLOCK;
avctx_enc->height = height + BLOCK;
avctx_enc->time_base = (AVRational){1,25}; // meaningless
- avctx_enc->gop_size = 300;
+ avctx_enc->gop_size = INT_MAX;
avctx_enc->max_b_frames = 0;
avctx_enc->pix_fmt = inlink->format;
avctx_enc->flags = CODEC_FLAG_QSCALE | CODEC_FLAG_LOW_DELAY;