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
eb135516
Commit
eb135516
authored
Jan 04, 2016
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ac3enc: Avoid unnecessary macro indirections
parent
f0d3e43b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ac3enc_fixed.c
libavcodec/ac3enc_fixed.c
+2
-2
No files found.
libavcodec/ac3enc_fixed.c
View file @
eb135516
...
...
@@ -104,7 +104,7 @@ static CoefType calc_cpl_coord(CoefSumType energy_ch, CoefSumType energy_cpl)
*
* @param s AC-3 encoder private context
*/
av_cold
void
AC3_NAME
(
mdct_end
)
(
AC3EncodeContext
*
s
)
av_cold
void
ff_ac3_fixed_mdct_end
(
AC3EncodeContext
*
s
)
{
ff_mdct_end
(
&
s
->
mdct
);
}
...
...
@@ -116,7 +116,7 @@ av_cold void AC3_NAME(mdct_end)(AC3EncodeContext *s)
* @param s AC-3 encoder private context
* @return 0 on success, negative error code on failure
*/
av_cold
int
AC3_NAME
(
mdct_init
)
(
AC3EncodeContext
*
s
)
av_cold
int
ff_ac3_fixed_mdct_init
(
AC3EncodeContext
*
s
)
{
int
ret
=
ff_mdct_init
(
&
s
->
mdct
,
9
,
0
,
-
1
.
0
);
s
->
mdct_window
=
ff_ac3_window
;
...
...
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