]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/aliaspixenc.c
Deprecate avctx.coded_frame
[ffmpeg] / libavcodec / aliaspixenc.c
index 5e3bcb4c981c83ad768fa28ccb2a2042bd46a32e..63016afc636633e655938bcebc655a4c1134054f 100644 (file)
@@ -33,8 +33,12 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
     int width, height, bits_pixel, i, j, length, ret;
     uint8_t *in_buf, *buf;
 
+#if FF_API_CODED_FRAME
+FF_DISABLE_DEPRECATION_WARNINGS
     avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
     avctx->coded_frame->key_frame = 1;
+FF_ENABLE_DEPRECATION_WARNINGS
+#endif
 
     width  = avctx->width;
     height = avctx->height;