summaryrefslogtreecommitdiffstats
path: root/libavcodec/ffv1enc.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2016-06-17 13:47:02 -0300
committerJames Almer <jamrial@gmail.com>2016-06-17 16:53:13 -0300
commit403a53c60e7c6046467ca078ca78210312879e14 (patch)
treec028d20d63eeb02f9210d002e55f5d5a4082092c /libavcodec/ffv1enc.c
parent4efbeadadc6f5a107d5219cbd677b644e7cdca84 (diff)
downloadffmpeg-streaming-403a53c60e7c6046467ca078ca78210312879e14.zip
ffmpeg-streaming-403a53c60e7c6046467ca078ca78210312879e14.tar.gz
avcodec/ffv1enc: silence warning about deprecated coded_frame
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/ffv1enc.c')
-rw-r--r--libavcodec/ffv1enc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c
index 9ee9921..f2434e6 100644
--- a/libavcodec/ffv1enc.c
+++ b/libavcodec/ffv1enc.c
@@ -1289,7 +1289,11 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
av_frame_unref(p);
if ((ret = av_frame_ref(p, pict)) < 0)
return ret;
+#if FF_API_CODED_FRAME
+FF_DISABLE_DEPRECATION_WARNINGS
avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
+FF_ENABLE_DEPRECATION_WARNINGS
+#endif
if (avctx->gop_size == 0 || f->picture_number % avctx->gop_size == 0) {
put_rac(c, &keystate, 1);
OpenPOWER on IntegriCloud