diff options
author | James Almer <jamrial@gmail.com> | 2023-05-17 22:39:57 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-05-18 08:45:23 -0300 |
commit | 63767b79a570404628b2521b83104108b7b6884c (patch) | |
tree | ba05301188d4deb51854721e0e60bfca4edb0323 /libavcodec/dfa.c | |
parent | 01d9a84ef58c2d0d89958b18420483b058ac9dd1 (diff) | |
download | ffmpeg-63767b79a570404628b2521b83104108b7b6884c.tar.gz |
avutil/frame: deprecate palette_has_changed
Not only this is information that relies on the concept of a sequence of
frames, which is completely out of place as a field in AVFrame, but there are
no known or intended uses of this field.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/dfa.c')
-rw-r--r-- | libavcodec/dfa.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/dfa.c b/libavcodec/dfa.c index 114c803f32..9114feb0b3 100644 --- a/libavcodec/dfa.c +++ b/libavcodec/dfa.c @@ -367,7 +367,11 @@ static int dfa_decode_frame(AVCodecContext *avctx, AVFrame *frame, s->pal[i] = bytestream2_get_be24(&gb) << 2; s->pal[i] |= 0xFFU << 24 | (s->pal[i] >> 6) & 0x30303; } +#if FF_API_PALETTE_HAS_CHANGED +FF_DISABLE_DEPRECATION_WARNINGS frame->palette_has_changed = 1; +FF_ENABLE_DEPRECATION_WARNINGS +#endif } else if (chunk_type <= 9) { if (decoder[chunk_type - 2](&gb, s->frame_buf, avctx->width, avctx->height)) { av_log(avctx, AV_LOG_ERROR, "Error decoding %s chunk\n", |