mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-19 13:27:00 +00:00
mpegts: do not return from ff_mpegts_parse_packet() after having seen the first PMT
It prevents leaving the AVPacket uninitialized. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
49ec0c818d
commit
bc38e83793
@ -1894,10 +1894,8 @@ int ff_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
|
||||
|
||||
len1 = len;
|
||||
ts->pkt = pkt;
|
||||
ts->stop_parse = 0;
|
||||
for(;;) {
|
||||
if (ts->stop_parse>0)
|
||||
break;
|
||||
ts->stop_parse = 0;
|
||||
if (len < TS_PACKET_SIZE)
|
||||
return -1;
|
||||
if (buf[0] != 0x47) {
|
||||
@ -1907,6 +1905,8 @@ int ff_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
|
||||
handle_packet(ts, buf);
|
||||
buf += TS_PACKET_SIZE;
|
||||
len -= TS_PACKET_SIZE;
|
||||
if (ts->stop_parse == 1)
|
||||
break;
|
||||
}
|
||||
}
|
||||
return len1 - len;
|
||||
|
Loading…
Reference in New Issue
Block a user