[FFmpeg-devel] [PATCH] avformat/utils: Preserve AV_PKT_FLAG_CORRUPT

Pavel Koshevoy pkoshevoy at gmail.com
Thu Mar 18 02:19:26 EET 2021


Preserve AV_PKT_FLAG_CORRUPT so the caller can decide whether to drop
the packet.
---
 libavformat/utils.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavformat/utils.c b/libavformat/utils.c
index a73f944e6e..0dc978e3d2 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -1494,7 +1494,8 @@ static int parse_packet(AVFormatContext *s, AVPacket *pkt,
         out_pkt->pts          = st->parser->pts;
         out_pkt->dts          = st->parser->dts;
         out_pkt->pos          = st->parser->pos;
-        out_pkt->flags       |= pkt->flags & AV_PKT_FLAG_DISCARD;
+        out_pkt->flags       |= pkt->flags & (AV_PKT_FLAG_CORRUPT |
+                                              AV_PKT_FLAG_DISCARD);
 
         if (st->need_parsing == AVSTREAM_PARSE_FULL_RAW)
             out_pkt->pos = st->parser->frame_offset;
-- 
2.26.2



More information about the ffmpeg-devel mailing list