OSDN Git Service

txddemux: Limit allocated packets to filesize.
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 16 Dec 2011 05:02:56 +0000 (06:02 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 16 Dec 2011 05:02:56 +0000 (06:02 +0100)
Fixes Ticket772
Bug found by: Diana Elena Muscalu

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/txd.c

index 5d9f969..284d532 100644 (file)
@@ -48,6 +48,9 @@ static int txd_read_header(AVFormatContext *s, AVFormatParameters *ap) {
     st->codec->time_base.den = 5;
     st->codec->time_base.num = 1;
     /* the parameters will be extracted from the compressed bitstream */
+
+    s->pb->maxsize= avio_size(s->pb);
+
     return 0;
 }