diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-05-25 06:44:14 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-05-28 08:01:08 +0200 |
commit | 7b44c9918086c6aeacf7ef9f902af38b97f43170 (patch) | |
tree | 2e08382989e0f28cb846bc2ad0aff0eafca39e16 /libavcodec/wavpack.c | |
parent | c330eba84cf2370ad72423aa9e410e20afdc52e2 (diff) | |
download | ffmpeg-7b44c9918086c6aeacf7ef9f902af38b97f43170.tar.gz |
wavpack: remove the subframes codec cap
The decoder always consumes full packets.
Diffstat (limited to 'libavcodec/wavpack.c')
-rw-r--r-- | libavcodec/wavpack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c index e6e9872491..7136e7aa16 100644 --- a/libavcodec/wavpack.c +++ b/libavcodec/wavpack.c @@ -1289,6 +1289,6 @@ AVCodec ff_wavpack_decoder = { .close = wavpack_decode_end, .decode = wavpack_decode_frame, .flush = wavpack_decode_flush, - .capabilities = CODEC_CAP_SUBFRAMES | CODEC_CAP_DR1, + .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("WavPack"), }; |