1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

avformat/demux: preserve AV_PKT_FLAG_CORRUPT in parse_packet

If original packet is corrupted, then parsed packet is probably corrupted too.
Let the application decide what to do.

Signed-off-by: Alex Shumsky <alexthreed@gmail.com>
This commit is contained in:
Alex Shumsky
2021-10-21 19:21:31 +03:00
committed by James Almer
parent 783935de18
commit 3925b826df

View File

@@ -1179,7 +1179,7 @@ static int parse_packet(AVFormatContext *s, AVPacket *pkt,
out_pkt->pts = sti->parser->pts; out_pkt->pts = sti->parser->pts;
out_pkt->dts = sti->parser->dts; out_pkt->dts = sti->parser->dts;
out_pkt->pos = sti->parser->pos; out_pkt->pos = sti->parser->pos;
out_pkt->flags |= pkt->flags & AV_PKT_FLAG_DISCARD; out_pkt->flags |= pkt->flags & (AV_PKT_FLAG_DISCARD | AV_PKT_FLAG_CORRUPT);
if (sti->need_parsing == AVSTREAM_PARSE_FULL_RAW) if (sti->need_parsing == AVSTREAM_PARSE_FULL_RAW)
out_pkt->pos = sti->parser->frame_offset; out_pkt->pos = sti->parser->frame_offset;