]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/zmbvenc.c
Deprecate avctx.coded_frame
[ffmpeg] / libavcodec / zmbvenc.c
index ea63b9477affbbb52fa0ee857111144b06c6789d..4436bb3c5158ea43c80cf3ef32f38dc58acb432e 100644 (file)
@@ -133,8 +133,12 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
     c->curfrm++;
     if(c->curfrm == c->keyint)
         c->curfrm = 0;
+#if FF_API_CODED_FRAME
+FF_DISABLE_DEPRECATION_WARNINGS
     avctx->coded_frame->pict_type = keyframe ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
     avctx->coded_frame->key_frame = keyframe;
+FF_ENABLE_DEPRECATION_WARNINGS
+#endif
     chpal = !keyframe && memcmp(p->data[1], c->pal2, 1024);
 
     palptr = (uint32_t*)p->data[1];