diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-09 03:34:32 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-05-19 11:40:07 +0200 |
commit | df3cdf4c75b802b124ad6d62eb2cd3d9686ea070 (patch) | |
tree | 6bd8de0eee9ddc44194e4d5ee8196867247e5317 /libavcodec/012v.c | |
parent | eee88ba0dc67b5beaa31199d5bf1e7fc324e0652 (diff) | |
download | ffmpeg-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/012v.c')
-rw-r--r-- | libavcodec/012v.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/012v.c b/libavcodec/012v.c index fa5eb0f95e..7bb60219cc 100644 --- a/libavcodec/012v.c +++ b/libavcodec/012v.c @@ -64,9 +64,6 @@ static int zero12v_decode_frame(AVCodecContext *avctx, AVFrame *pic, if ((ret = ff_get_buffer(avctx, pic, 0)) < 0) return ret; - pic->pict_type = AV_PICTURE_TYPE_I; - pic->flags |= AV_FRAME_FLAG_KEY; - line_end = avpkt->data + stride; for (line = 0; line < avctx->height; line++) { uint16_t y_temp[6] = {0x8000, 0x8000, 0x8000, 0x8000, 0x8000, 0x8000}; |