Commit ac40de07 authored by kostya's avatar kostya

WavPack hybrid mode support

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16643 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f339ef28
This diff is collapsed.
...@@ -100,10 +100,6 @@ static int wv_read_block_header(AVFormatContext *ctx, ByteIOContext *pb) ...@@ -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"); av_log(ctx, AV_LOG_ERROR, "Floating point data is not supported\n");
return -1; 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; bpp = ((wc->flags & 3) + 1) << 3;
chan = 1 + !(wc->flags & WV_MONO); chan = 1 + !(wc->flags & WV_MONO);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment