Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-06-20 23:49:02 +0400
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2013-06-21 03:11:56 +0400
commit073bde2b1fbb19eeabd00abe944cdf5c3cfdb000 (patch)
tree6b290bba34d90e69e7bb59b6183b5531e22e5009 /libavformat
parente4bb67bc506924e1eb115b04202aebd2a31374bc (diff)
avformat/iff: Byte seek is unsupported
Fixes Ticket2194 Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit 03cd3bec6e66a49bcec138d72bac97cb8a64d246)
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/iff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/iff.c b/libavformat/iff.c
index 100d981cab..17be2b1ece 100644
--- a/libavformat/iff.c
+++ b/libavformat/iff.c
@@ -478,5 +478,5 @@ AVInputFormat ff_iff_demuxer = {
.read_probe = iff_probe,
.read_header = iff_read_header,
.read_packet = iff_read_packet,
- .flags = AVFMT_GENERIC_INDEX,
+ .flags = AVFMT_GENERIC_INDEX | AVFMT_NO_BYTE_SEEK,
};