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
ce7c9548
Commit
ce7c9548
authored
Sep 24, 2011
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
g729dec: Make 2 functions static that are not used outside g729dec.c
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
c458bff9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
g729dec.c
libavcodec/g729dec.c
+2
-2
No files found.
libavcodec/g729dec.c
View file @
ce7c9548
...
@@ -252,7 +252,7 @@ static void lsf_restore_from_previous(int16_t* lsfq,
...
@@ -252,7 +252,7 @@ static void lsf_restore_from_previous(int16_t* lsfq,
* @param gain_code (14.1) gain code
* @param gain_code (14.1) gain code
* @param subframe_size length of the subframe
* @param subframe_size length of the subframe
*/
*/
void
g729d_get_new_exc
(
static
void
g729d_get_new_exc
(
int16_t
*
out
,
int16_t
*
out
,
const
int16_t
*
in
,
const
int16_t
*
in
,
const
int16_t
*
fc_cur
,
const
int16_t
*
fc_cur
,
...
@@ -280,7 +280,7 @@ void g729d_get_new_exc(
...
@@ -280,7 +280,7 @@ void g729d_get_new_exc(
*
*
* @return onset decision result for current subframe
* @return onset decision result for current subframe
*/
*/
int
g729d_onset_decision
(
int
past_onset
,
const
int16_t
*
past_gain_code
)
static
int
g729d_onset_decision
(
int
past_onset
,
const
int16_t
*
past_gain_code
)
{
{
if
((
past_gain_code
[
0
]
>>
1
)
>
past_gain_code
[
1
])
if
((
past_gain_code
[
0
]
>>
1
)
>
past_gain_code
[
1
])
return
2
;
return
2
;
...
...
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