wavpack: remove the subframes codec cap

The decoder always consumes full packets.
This commit is contained in:
Anton Khirnov 2013-05-25 06:44:14 +02:00
parent c330eba84c
commit 7b44c99180
1 changed files with 1 additions and 1 deletions

View File

@ -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"),
};