diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-01-16 17:46:19 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2009-01-16 17:46:19 +0000 |
commit | 2c96535af74d4e9ef6c3eaf4f0cd291229685fa6 (patch) | |
tree | bb9229626a20ed1e798d1e9c41fe08e12d98647c /libavformat/wv.c | |
parent | bef01ca08f0872060a7e7db095646177f3644541 (diff) | |
download | ffmpeg-2c96535af74d4e9ef6c3eaf4f0cd291229685fa6.tar.gz |
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.c | 4 |
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); |