diff --git a/libavformat/txd.c b/libavformat/txd.c index 5d9f969270..284d53212f 100644 --- a/libavformat/txd.c +++ b/libavformat/txd.c @@ -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; }