git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
c330eba
)
wavpack: remove the subframes codec cap
author
Anton Khirnov
<anton@khirnov.net>
Sat, 25 May 2013 04:44:14 +0000
(06:44 +0200)
committer
Anton Khirnov
<anton@khirnov.net>
Tue, 28 May 2013 06:01:08 +0000
(08:01 +0200)
The decoder always consumes full packets.
libavcodec/wavpack.c
patch
|
blob
|
history
diff --git
a/libavcodec/wavpack.c
b/libavcodec/wavpack.c
index
e6e9872
..
7136e7a
100644
(file)
--- 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"),
};