diff options
author | Laurent Aimar <fenrir@videolan.org> | 2011-10-08 23:40:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-19 23:28:05 +0200 |
commit | bc38e83793be5f7a184c88be55e556453a25224b (patch) | |
tree | cc65ed348bb77285a494e7075c1739439f3b971a /libavformat/mpegts.c | |
parent | 49ec0c818dc3c1c293a582b57fb58ba611a10b32 (diff) | |
download | ffmpeg-bc38e83793be5f7a184c88be55e556453a25224b.tar.gz |
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>
Diffstat (limited to 'libavformat/mpegts.c')
-rw-r--r-- | libavformat/mpegts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index 1d26c6c438..ea4c535e24 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -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; |