Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
db109373
Commit
db109373
authored
Nov 21, 2018
by
David Bryant
Committed by
Paul B Mahol
Dec 28, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/wvdec: detect and error out on WavPack DSD files
Not currently supported.
parent
cfa7709d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
wvdec.c
libavformat/wvdec.c
+6
-0
No files found.
libavformat/wvdec.c
View file @
db109373
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment