提交 550f0a9b 编写于 作者: W Wolfram Gloger 提交者: Michael Niedermayer

Off-by-two in mpegts.c patch by (Wolfram Gloger <wmglo at dent dot med dot uni-muenchen dot de>)

Originally committed as revision 3011 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 6c205de2
......@@ -1467,7 +1467,7 @@ int mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt,
if (len < TS_PACKET_SIZE)
return -1;
if (buf[0] != 0x47) {
buf--;
buf++;
len--;
} else {
handle_packet(ts, buf);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册