diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-12-16 06:02:56 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-12-16 06:02:56 +0100 |
commit | f72601d06378494b5026b919fcd3eb5eb22799a1 (patch) | |
tree | a295f7ab88c3f9c0d928b31fa748407f04799739 | |
parent | a0009754442b339dd6f07f8fe4f803f272866912 (diff) | |
download | ffmpeg-f72601d06378494b5026b919fcd3eb5eb22799a1.tar.gz |
txddemux: Limit allocated packets to filesize.
Fixes Ticket772
Bug found by: Diana Elena Muscalu
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/txd.c | 3 |
1 files changed, 3 insertions, 0 deletions
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; } |