aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/wvdec.c
diff options
context:
space:
mode:
authorDavid Bryant <david@wavpack.com>2018-11-20 21:00:47 -0800
committerMichael Niedermayer <michael@niedermayer.cc>2019-03-21 10:42:51 +0100
commitcdf1dc136caa5844d4b8c024b35a36aa76e0f545 (patch)
tree8fa9ae4a6a2a2d56c04085f1a8bb823ae75536e7 /libavformat/wvdec.c
parent4dbfbcef16703ed44c1c1605827cb27945a3c897 (diff)
downloadffmpeg-cdf1dc136caa5844d4b8c024b35a36aa76e0f545.tar.gz
avformat/wvdec: detect and error out on WavPack DSD files
Not currently supported. (cherry picked from commit db109373d87b1fa5fe9f3d027d1bb752f725b74a) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/wvdec.c')
-rw-r--r--libavformat/wvdec.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/wvdec.c b/libavformat/wvdec.c
index 82526563ec..2060523c3b 100644
--- a/libavformat/wvdec.c
+++ b/libavformat/wvdec.c
@@ -40,6 +40,7 @@ enum WV_FLAGS {
WV_HBAL = 0x0400,
WV_MCINIT = 0x0800,
WV_MCEND = 0x1000,
+ WV_DSD = 0x80000000,
};
static const int wv_rates[16] = {
@@ -97,6 +98,11 @@ static int wv_read_block_header(AVFormatContext *ctx, AVIOContext *pb)
return ret;
}
+ if (wc->header.flags & WV_DSD) {
+ avpriv_report_missing_feature(ctx, "WV DSD");
+ return AVERROR_PATCHWELCOME;
+ }
+
if (wc->header.version < 0x402 || wc->header.version > 0x410) {
avpriv_report_missing_feature(ctx, "WV version 0x%03X",
wc->header.version);