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
f80a8ca5
Commit
f80a8ca5
authored
Sep 18, 2008
by
Robert Swain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics: missing brackets
Originally committed as revision 15363 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
c8947a56
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
aac.c
libavcodec/aac.c
+4
-2
No files found.
libavcodec/aac.c
View file @
f80a8ca5
...
...
@@ -993,8 +993,8 @@ static int decode_cce(AACContext * ac, GetBitContext * gb, ChannelElement * che)
gain
=
cge
?
get_vlc2
(
gb
,
vlc_scalefactors
.
table
,
7
,
3
)
-
60
:
0
;
gain_cache
=
pow
(
scale
,
gain
);
}
for
(
g
=
0
;
g
<
sce
->
ics
.
num_window_groups
;
g
++
)
for
(
sfb
=
0
;
sfb
<
sce
->
ics
.
max_sfb
;
sfb
++
,
idx
++
)
for
(
g
=
0
;
g
<
sce
->
ics
.
num_window_groups
;
g
++
)
{
for
(
sfb
=
0
;
sfb
<
sce
->
ics
.
max_sfb
;
sfb
++
,
idx
++
)
{
if
(
sce
->
band_type
[
idx
]
!=
ZERO_BT
)
{
if
(
!
cge
)
{
int
t
=
get_vlc2
(
gb
,
vlc_scalefactors
.
table
,
7
,
3
)
-
60
;
...
...
@@ -1010,6 +1010,8 @@ static int decode_cce(AACContext * ac, GetBitContext * gb, ChannelElement * che)
}
coup
->
gain
[
c
][
idx
]
=
gain_cache
;
}
}
}
}
return
0
;
}
...
...
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