aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-04-24 17:34:39 +0200
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2011-05-07 17:38:18 +0200
commit5631729c3de589b45498af5272b47b0792ca07d4 (patch)
treeae97b724544d5790be98803c243945e89be6d9f7
parent90f5e991be3a28a2caa06132d995c0daef911a56 (diff)
downloadffmpeg-5631729c3de589b45498af5272b47b0792ca07d4.tar.gz
Increase TS packet size detection buffer.
Fixes warning message with ticket #68.
-rw-r--r--libavformat/mpegts.c2
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;