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
ae038c09
Commit
ae038c09
authored
Jul 01, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vorbisdec: propagate errors from setup_classifs()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
712ef251
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
vorbisdec.c
libavcodec/vorbisdec.c
+3
-1
No files found.
libavcodec/vorbisdec.c
View file @
ae038c09
...
...
@@ -1397,7 +1397,9 @@ static av_always_inline int vorbis_residue_decode_internal(vorbis_context *vc,
voffset
=
vr
->
begin
;
for
(
partition_count
=
0
;
partition_count
<
ptns_to_read
;)
{
// SPEC error
if
(
!
pass
)
{
setup_classifs
(
vc
,
vr
,
do_not_decode
,
ch_used
,
partition_count
);
int
ret
;
if
((
ret
=
setup_classifs
(
vc
,
vr
,
do_not_decode
,
ch_used
,
partition_count
))
<
0
)
return
ret
;
}
for
(
i
=
0
;
(
i
<
c_p_c
)
&&
(
partition_count
<
ptns_to_read
);
++
i
)
{
for
(
j_times_ptns_to_read
=
0
,
j
=
0
;
j
<
ch_used
;
++
j
)
{
...
...
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