summaryrefslogtreecommitdiff
path: root/libavformat/adxdec.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-12-19 10:12:29 -0500
committerJustin Ruggles <justin.ruggles@gmail.com>2012-01-03 18:47:41 -0500
commit99baf2c7d0dfa7d9ced34665ed6f0bf057fc9b30 (patch)
tree3afb3d41bd52e799c120c916cc0aeafb472273d1 /libavformat/adxdec.c
parent613668210b87e4d7ceabf65c5939f9219570a6f2 (diff)
adx: add AVFMT_GENERIC_INDEX to demuxer flags.
fixes seeking
Diffstat (limited to 'libavformat/adxdec.c')
-rw-r--r--libavformat/adxdec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/adxdec.c b/libavformat/adxdec.c
index dca9748301..ab11d832d8 100644
--- a/libavformat/adxdec.c
+++ b/libavformat/adxdec.c
@@ -109,4 +109,5 @@ AVInputFormat ff_adx_demuxer = {
.read_packet = adx_read_packet,
.extensions = "adx",
.value = CODEC_ID_ADPCM_ADX,
+ .flags = AVFMT_GENERIC_INDEX,
};