From 5631729c3de589b45498af5272b47b0792ca07d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Sun, 24 Apr 2011 17:34:39 +0200 Subject: [PATCH] Increase TS packet size detection buffer. Fixes warning message with ticket #68. --- libavformat/mpegts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;