diff options
Diffstat (limited to 'libavcodec/pcxenc.c')
-rw-r--r-- | libavcodec/pcxenc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/pcxenc.c b/libavcodec/pcxenc.c index 2a4eb8ef59..fef34bed9b 100644 --- a/libavcodec/pcxenc.c +++ b/libavcodec/pcxenc.c @@ -35,8 +35,12 @@ static const uint32_t monoblack_pal[16] = { 0x000000, 0xFFFFFF }; static av_cold int pcx_encode_init(AVCodecContext *avctx) { +#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 return 0; } |