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
8a547c25
Commit
8a547c25
authored
Sep 27, 2009
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some unneeded variables.
Originally committed as revision 20045 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
403b1543
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
ac3.c
libavcodec/ac3.c
+5
-6
No files found.
libavcodec/ac3.c
View file @
8a547c25
...
@@ -268,17 +268,16 @@ void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
...
@@ -268,17 +268,16 @@ void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
av_cold
void
ac3_common_init
(
void
)
av_cold
void
ac3_common_init
(
void
)
{
{
#if !CONFIG_HARDCODED_TABLES
#if !CONFIG_HARDCODED_TABLES
int
i
,
j
,
k
,
l
,
v
;
int
i
,
k
,
l
;
/* compute bndtab and masktab from bandsz */
/* compute bndtab and masktab from bandsz */
k
=
0
;
k
=
0
;
l
=
0
;
l
=
0
;
for
(
i
=
0
;
i
<
50
;
i
++
)
{
for
(
i
=
0
;
i
<
50
;
i
++
)
{
band_start_tab
[
i
]
=
l
;
band_start_tab
[
i
]
=
k
;
v
=
ff_ac3_critical_band_size_tab
[
i
];
l
=
k
+
ff_ac3_critical_band_size_tab
[
i
];
for
(
j
=
0
;
j
<
v
;
j
++
)
while
(
k
<
l
)
bin_to_band_tab
[
k
++
]
=
i
;
bin_to_band_tab
[
k
++
]
=
i
;
l
+=
v
;
}
}
band_start_tab
[
50
]
=
l
;
band_start_tab
[
50
]
=
k
;
#endif
/* !CONFIG_HARDCODED_TABLES */
#endif
/* !CONFIG_HARDCODED_TABLES */
}
}
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