aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/msp2dec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-05-09 03:34:32 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2024-05-19 11:40:07 +0200
commitdf3cdf4c75b802b124ad6d62eb2cd3d9686ea070 (patch)
tree6bd8de0eee9ddc44194e4d5ee8196867247e5317 /libavcodec/msp2dec.c
parenteee88ba0dc67b5beaa31199d5bf1e7fc324e0652 (diff)
downloadffmpeg-df3cdf4c75b802b124ad6d62eb2cd3d9686ea070.tar.gz
avcodec: Remove redundant setting of AV_FRAME_FLAG_KEY, AV_PICTURE_TYPE_I
This is done generically now. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/msp2dec.c')
-rw-r--r--libavcodec/msp2dec.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/msp2dec.c b/libavcodec/msp2dec.c
index 30a2825e47..e1daeeb144 100644
--- a/libavcodec/msp2dec.c
+++ b/libavcodec/msp2dec.c
@@ -46,9 +46,6 @@ static int msp2_decode_frame(AVCodecContext *avctx, AVFrame *p,
if ((ret = ff_get_buffer(avctx, p, 0)) < 0)
return ret;
- p->pict_type = AV_PICTURE_TYPE_I;
- p->flags |= AV_FRAME_FLAG_KEY;
-
bytestream2_init(&idx, buf, 2 * avctx->height);
buf += 2 * avctx->height;
buf_size -= 2 * avctx->height;