diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-05-07 02:42:00 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-05-07 02:42:00 +0200 |
commit | 16b9156b7ec3eedf8d5a109f1fb1a103a8b5d6f0 (patch) | |
tree | 3af12a546c9fa37ad13acf000a3db26b8e98a90a /libavformat/ffmdec.c | |
parent | 4f5c5416ca27a5e8886151fbc332182269572f99 (diff) | |
download | ffmpeg-16b9156b7ec3eedf8d5a109f1fb1a103a8b5d6f0.tar.gz |
ffm: disable adjust_write_index()
This code can in its current form not work with ffserver
Fixes Ticket1249
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/ffmdec.c')
-rw-r--r-- | libavformat/ffmdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ffmdec.c b/libavformat/ffmdec.c index 6bcb98c72e..0c943fbe09 100644 --- a/libavformat/ffmdec.c +++ b/libavformat/ffmdec.c @@ -285,7 +285,7 @@ static int ffm_read_header(AVFormatContext *s) /* get also filesize */ if (pb->seekable) { ffm->file_size = avio_size(pb); - if (ffm->write_index) + if (ffm->write_index && 0) adjust_write_index(s); } else { ffm->file_size = (UINT64_C(1) << 63) - 1; |