diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-12-19 10:12:29 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-01-03 18:47:41 -0500 |
commit | 99baf2c7d0dfa7d9ced34665ed6f0bf057fc9b30 (patch) | |
tree | 3afb3d41bd52e799c120c916cc0aeafb472273d1 | |
parent | 613668210b87e4d7ceabf65c5939f9219570a6f2 (diff) | |
download | ffmpeg-99baf2c7d0dfa7d9ced34665ed6f0bf057fc9b30.tar.gz |
adx: add AVFMT_GENERIC_INDEX to demuxer flags.
fixes seeking
-rw-r--r-- | libavformat/adxdec.c | 1 |
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, }; |