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
bfe397e4
Commit
bfe397e4
authored
Jan 05, 2018
by
Misty De Meo
Committed by
Michael Niedermayer
Jan 06, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aiff: add explicit goto got_sound
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
94e6b5ac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
Changelog
Changelog
+1
-0
aiffdec.c
libavformat/aiffdec.c
+3
-0
No files found.
Changelog
View file @
bfe397e4
...
@@ -34,6 +34,7 @@ version <next>:
...
@@ -34,6 +34,7 @@ version <next>:
- entropy video filter
- entropy video filter
- hilbert audio filter source
- hilbert audio filter source
- aiir audio filter
- aiir audio filter
- aiff: add support for CD-ROM XA ADPCM
version 3.4:
version 3.4:
...
...
libavformat/aiffdec.c
View file @
bfe397e4
...
@@ -332,6 +332,9 @@ static int aiff_read_header(AVFormatContext *s)
...
@@ -332,6 +332,9 @@ static int aiff_read_header(AVFormatContext *s)
/* This field is unknown and its data seems to be irrelevant */
/* This field is unknown and its data seems to be irrelevant */
avio_rb32
(
pb
);
avio_rb32
(
pb
);
st
->
codecpar
->
block_align
=
avio_rb32
(
pb
);
st
->
codecpar
->
block_align
=
avio_rb32
(
pb
);
goto
got_sound
;
break
;
case
0
:
case
0
:
if
(
offset
>
0
&&
st
->
codecpar
->
block_align
)
// COMM && SSND
if
(
offset
>
0
&&
st
->
codecpar
->
block_align
)
// COMM && SSND
goto
got_sound
;
goto
got_sound
;
...
...
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