summaryrefslogtreecommitdiff
path: root/libavfilter/vf_uspp.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-03-25 21:35:52 -0300
committerJames Almer <jamrial@gmail.com>2017-03-25 21:37:06 -0300
commit963cd953fbf6a57d8433043f3a3b341dd85c60f0 (patch)
tree8f46d4aa9448ae3adf5c493ada2fe2c49b6bba6a /libavfilter/vf_uspp.c
parentf5c8d004c28d930d780c9164f7ed6005b88b9be5 (diff)
avfilter: stop using deprecated codec flags
Signed-off-by: James Almer <jamrial@gmail.com>
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 8a6d0fbb93..ef493b860f 100644
--- a/libavfilter/vf_uspp.c
+++ b/libavfilter/vf_uspp.c
@@ -357,7 +357,7 @@ static int config_input(AVFilterLink *inlink)
avctx_enc->gop_size = INT_MAX;
avctx_enc->max_b_frames = 0;
avctx_enc->pix_fmt = inlink->format;
- avctx_enc->flags = AV_CODEC_FLAG_QSCALE | CODEC_FLAG_LOW_DELAY;
+ avctx_enc->flags = AV_CODEC_FLAG_QSCALE | AV_CODEC_FLAG_LOW_DELAY;
avctx_enc->strict_std_compliance = FF_COMPLIANCE_EXPERIMENTAL;
avctx_enc->global_quality = 123;
av_dict_set(&opts, "no_bitstream", "1", 0);