summaryrefslogtreecommitdiff
path: root/libavformat/wv.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2009-01-16 17:46:19 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2009-01-16 17:46:19 +0000
commit2c96535af74d4e9ef6c3eaf4f0cd291229685fa6 (patch)
treebb9229626a20ed1e798d1e9c41fe08e12d98647c /libavformat/wv.c
parentbef01ca08f0872060a7e7db095646177f3644541 (diff)
WavPack hybrid mode support
Originally committed as revision 16643 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/wv.c')
-rw-r--r--libavformat/wv.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavformat/wv.c b/libavformat/wv.c
index a8c4db2df5..2fc6115500 100644
--- a/libavformat/wv.c
+++ b/libavformat/wv.c
@@ -100,10 +100,6 @@ static int wv_read_block_header(AVFormatContext *ctx, ByteIOContext *pb)
av_log(ctx, AV_LOG_ERROR, "Floating point data is not supported\n");
return -1;
}
- if(wc->flags & WV_HYBRID){
- av_log(ctx, AV_LOG_ERROR, "Hybrid coding mode is not supported\n");
- return -1;
- }
bpp = ((wc->flags & 3) + 1) << 3;
chan = 1 + !(wc->flags & WV_MONO);