diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-04-24 17:34:39 +0200 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-05-07 17:38:18 +0200 |
commit | 5631729c3de589b45498af5272b47b0792ca07d4 (patch) | |
tree | ae97b724544d5790be98803c243945e89be6d9f7 | |
parent | 90f5e991be3a28a2caa06132d995c0daef911a56 (diff) | |
download | ffmpeg-5631729c3de589b45498af5272b47b0792ca07d4.tar.gz |
Increase TS packet size detection buffer.
Fixes warning message with ticket #68.
-rw-r--r-- | libavformat/mpegts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c index caef69d1eb..d03fe19ad2 100644 --- a/libavformat/mpegts.c +++ b/libavformat/mpegts.c @@ -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; |