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
4c57cde9
Commit
4c57cde9
authored
Jan 25, 2011
by
Justin Ruggles
Committed by
Mans Rullgard
Jan 26, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add ff_ prefix to ac3_common_init().
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
24e3ad30
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
ac3.c
libavcodec/ac3.c
+1
-1
ac3.h
libavcodec/ac3.h
+1
-1
ac3dec.c
libavcodec/ac3dec.c
+1
-1
ac3enc.c
libavcodec/ac3enc.c
+1
-1
No files found.
libavcodec/ac3.c
View file @
4c57cde9
...
...
@@ -241,7 +241,7 @@ void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end,
* note: This function must remain thread safe because it is called by the
* AVParser init code.
*/
av_cold
void
ac3_common_init
(
void
)
av_cold
void
ff_
ac3_common_init
(
void
)
{
#if !CONFIG_HARDCODED_TABLES
/* compute bin_to_band_tab from band_start_tab */
...
...
libavcodec/ac3.h
View file @
4c57cde9
...
...
@@ -115,7 +115,7 @@ typedef enum {
EAC3_FRAME_TYPE_RESERVED
}
EAC3FrameType
;
void
ac3_common_init
(
void
);
void
ff_
ac3_common_init
(
void
);
/**
* Calculate the log power-spectral density of the input signal.
...
...
libavcodec/ac3dec.c
View file @
4c57cde9
...
...
@@ -187,7 +187,7 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx)
AC3DecodeContext
*
s
=
avctx
->
priv_data
;
s
->
avctx
=
avctx
;
ac3_common_init
();
ff_
ac3_common_init
();
ac3_tables_init
();
ff_mdct_init
(
&
s
->
imdct_256
,
8
,
1
,
1
.
0
);
ff_mdct_init
(
&
s
->
imdct_512
,
9
,
1
,
1
.
0
);
...
...
libavcodec/ac3enc.c
View file @
4c57cde9
...
...
@@ -1815,7 +1815,7 @@ static av_cold int ac3_encode_init(AVCodecContext *avctx)
avctx
->
frame_size
=
AC3_FRAME_SIZE
;
ac3_common_init
();
ff_
ac3_common_init
();
ret
=
validate_options
(
avctx
,
s
);
if
(
ret
)
...
...
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