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
6fb96afd
Commit
6fb96afd
authored
Jun 20, 2015
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avutil/fixed_dsp: remove ff_ prefix from static function
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
5358953c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
fixed_dsp.c
libavutil/fixed_dsp.c
+2
-2
No files found.
libavutil/fixed_dsp.c
View file @
6fb96afd
...
...
@@ -121,7 +121,7 @@ static void vector_fmul_c(int *dst, const int *src0, const int *src1, int len)
}
}
static
int
ff_
scalarproduct_fixed_c
(
const
int
*
v1
,
const
int
*
v2
,
int
len
)
static
int
scalarproduct_fixed_c
(
const
int
*
v1
,
const
int
*
v2
,
int
len
)
{
/** p is initialized with 0x40000000 so that the proper rounding will occur
* at the end */
...
...
@@ -158,7 +158,7 @@ AVFixedDSPContext * avpriv_alloc_fixed_dsp(int bit_exact)
fdsp
->
vector_fmul_add
=
vector_fmul_add_c
;
fdsp
->
vector_fmul_reverse
=
vector_fmul_reverse_c
;
fdsp
->
butterflies_fixed
=
butterflies_fixed_c
;
fdsp
->
scalarproduct_fixed
=
ff_
scalarproduct_fixed_c
;
fdsp
->
scalarproduct_fixed
=
scalarproduct_fixed_c
;
return
fdsp
;
}
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