mirror of https://git.ffmpeg.org/ffmpeg.git
Increase TS packet size detection buffer.
Fixes warning message with ticket #68.
This commit is contained in:
parent
90f5e991be
commit
5631729c3d
|
@ -1450,7 +1450,7 @@ static int mpegts_read_header(AVFormatContext *s,
|
|||
{
|
||||
MpegTSContext *ts = s->priv_data;
|
||||
AVIOContext *pb = s->pb;
|
||||
uint8_t buf[5*1024];
|
||||
uint8_t buf[8*1024];
|
||||
int len;
|
||||
int64_t pos;
|
||||
|
||||
|
|
Loading…
Reference in New Issue