diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-22 00:09:54 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-28 01:57:10 +0200 |
commit | ed6549887a1969636b30295b3da87313b7c46864 (patch) | |
tree | d7c8bc971f8f8eecc7ac4d21803e9606f0bc4d87 /libavcodec/rawenc.c | |
parent | 3f11eac75741888c7b2b6f93c458766f2613bab5 (diff) | |
download | ffmpeg-ed6549887a1969636b30295b3da87313b7c46864.tar.gz |
avcodec/encoders: Remove redundant setting of AV_PKT_FLAG_KEY
It is now set generically for all those encoders whose corresponding
AVCodecDescriptor has the AV_CODEC_PROP_INTRA_ONLY.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/rawenc.c')
-rw-r--r-- | libavcodec/rawenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/rawenc.c b/libavcodec/rawenc.c index bd992239a5..7e15084d71 100644 --- a/libavcodec/rawenc.c +++ b/libavcodec/rawenc.c @@ -76,7 +76,6 @@ static int raw_encode(AVCodecContext *avctx, AVPacket *pkt, AV_WB64(&pkt->data[8 * x], v << 48 | v >> 16); } } - pkt->flags |= AV_PKT_FLAG_KEY; *got_packet = 1; return 0; } |