summaryrefslogtreecommitdiff
path: root/libavcodec/decode.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-05-02 14:54:26 -0300
committerJames Almer <jamrial@gmail.com>2021-05-05 16:39:52 -0300
commit3575a495f6dcc395656343380e13c57d48b9f976 (patch)
treed883ddd240cc6c588afc351afbc8947fca84a450 /libavcodec/decode.c
parentb30851c87274730749f282b61875393e29918d8e (diff)
avcodec/decode: stop trying to initialize palette values in avcodec_default_get_buffer2()
avpriv_set_systematic_pal2() is meant to fill fixed vales for formats that until recently were tagged as "pseudo pal". This is no longer the case, so this call is a no-op when used on real PAL formats. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/decode.c')
-rw-r--r--libavcodec/decode.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/decode.c b/libavcodec/decode.c
index cd98c98a97..75bc7ad98e 100644
--- a/libavcodec/decode.c
+++ b/libavcodec/decode.c
@@ -1425,8 +1425,6 @@ static int video_get_buffer(AVCodecContext *s, AVFrame *pic)
pic->data[i] = NULL;
pic->linesize[i] = 0;
}
- if (desc->flags & AV_PIX_FMT_FLAG_PAL)
- avpriv_set_systematic_pal2((uint32_t *)pic->data[1], pic->format);
if (s->debug & FF_DEBUG_BUFFERS)
av_log(s, AV_LOG_DEBUG, "default_get_buffer called on pic %p\n", pic);