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
committerMichael Niedermayer <michaelni@gmx.at>2013-06-20 23:49:02 +0400
commit03cd3bec6e66a49bcec138d72bac97cb8a64d246 (patch)
tree1efc7807cddcc692b243276bb4788f35bce99296 /libavformat/iff.c
parentc605adbf562fbf535e83ae427bb681bc45e440c8 (diff)
avformat/iff: Byte seek is unsupported
Fixes Ticket2194 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/iff.c')
-rw-r--r--libavformat/iff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/iff.c b/libavformat/iff.c
index 1efc1472cc..edf308b135 100644
--- a/libavformat/iff.c
+++ b/libavformat/iff.c
@@ -481,5 +481,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,
};