diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-06-20 21:49:02 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-06-20 21:49:02 +0200 |
commit | 03cd3bec6e66a49bcec138d72bac97cb8a64d246 (patch) | |
tree | 1efc7807cddcc692b243276bb4788f35bce99296 /libavformat | |
parent | c605adbf562fbf535e83ae427bb681bc45e440c8 (diff) | |
download | ffmpeg-streaming-03cd3bec6e66a49bcec138d72bac97cb8a64d246.zip ffmpeg-streaming-03cd3bec6e66a49bcec138d72bac97cb8a64d246.tar.gz |
avformat/iff: Byte seek is unsupported
Fixes Ticket2194
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/iff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/iff.c b/libavformat/iff.c index 1efc147..edf308b 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, }; |