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
24efb5e5
Commit
24efb5e5
authored
May 11, 2006
by
Loren Merritt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix a crash on x86_64
Originally committed as revision 5360 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
b451719e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vorbis.c
libavcodec/vorbis.c
+1
-1
No files found.
libavcodec/vorbis.c
View file @
24efb5e5
...
...
@@ -473,7 +473,7 @@ static int vorbis_parse_setup_hdr_floors(vorbis_context *vc) {
}
for
(
k
=
0
;
k
<
(
1
<<
floor_setup
->
data
.
t1
.
class_subclasses
[
j
]);
++
k
)
{
floor_setup
->
data
.
t1
.
subclass_books
[
j
][
k
]
=
get_bits
(
gb
,
8
)
-
1
;
floor_setup
->
data
.
t1
.
subclass_books
[
j
][
k
]
=
(
int16_t
)
get_bits
(
gb
,
8
)
-
1
;
AV_DEBUG
(
" book %d. : %d
\n
"
,
k
,
floor_setup
->
data
.
t1
.
subclass_books
[
j
][
k
]);
}
...
...
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