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
383fd4d4
Commit
383fd4d4
authored
Apr 20, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
arm: Drop unnecessary ff_ name prefixes from static functions
parent
088f38a4
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
h264dsp_init_arm.c
libavcodec/arm/h264dsp_init_arm.c
+3
-3
h264pred_init_arm.c
libavcodec/arm/h264pred_init_arm.c
+4
-4
rv40dsp_init_arm.c
libavcodec/arm/rv40dsp_init_arm.c
+2
-2
No files found.
libavcodec/arm/h264dsp_init_arm.c
View file @
383fd4d4
...
...
@@ -68,7 +68,7 @@ void ff_h264_idct8_add4_neon(uint8_t *dst, const int *block_offset,
int16_t
*
block
,
int
stride
,
const
uint8_t
nnzc
[
6
*
8
]);
static
av_cold
void
ff_
h264dsp_init_neon
(
H264DSPContext
*
c
,
const
int
bit_depth
,
static
av_cold
void
h264dsp_init_neon
(
H264DSPContext
*
c
,
const
int
bit_depth
,
const
int
chroma_format_idc
)
{
if
(
bit_depth
==
8
)
{
...
...
@@ -103,5 +103,5 @@ av_cold void ff_h264dsp_init_arm(H264DSPContext *c, const int bit_depth,
int
cpu_flags
=
av_get_cpu_flags
();
if
(
have_neon
(
cpu_flags
))
ff_
h264dsp_init_neon
(
c
,
bit_depth
,
chroma_format_idc
);
h264dsp_init_neon
(
c
,
bit_depth
,
chroma_format_idc
);
}
libavcodec/arm/h264pred_init_arm.c
View file @
383fd4d4
...
...
@@ -45,7 +45,7 @@ void ff_pred8x8_0lt_dc_neon(uint8_t *src, ptrdiff_t stride);
void
ff_pred8x8_l00_dc_neon
(
uint8_t
*
src
,
ptrdiff_t
stride
);
void
ff_pred8x8_0l0_dc_neon
(
uint8_t
*
src
,
ptrdiff_t
stride
);
static
av_cold
void
ff_
h264_pred_init_neon
(
H264PredContext
*
h
,
int
codec_id
,
static
av_cold
void
h264_pred_init_neon
(
H264PredContext
*
h
,
int
codec_id
,
const
int
bit_depth
,
const
int
chroma_format_idc
)
{
...
...
@@ -85,5 +85,5 @@ av_cold void ff_h264_pred_init_arm(H264PredContext *h, int codec_id,
int
cpu_flags
=
av_get_cpu_flags
();
if
(
have_neon
(
cpu_flags
))
ff_
h264_pred_init_neon
(
h
,
codec_id
,
bit_depth
,
chroma_format_idc
);
h264_pred_init_neon
(
h
,
codec_id
,
bit_depth
,
chroma_format_idc
);
}
libavcodec/arm/rv40dsp_init_arm.c
View file @
383fd4d4
...
...
@@ -70,7 +70,7 @@ void ff_rv40_v_weak_loop_filter_neon(uint8_t *src, ptrdiff_t stride, int filter_
int
filter_q1
,
int
alpha
,
int
beta
,
int
lim_p0q0
,
int
lim_q1
,
int
lim_p1
);
static
av_cold
void
ff_
rv40dsp_init_neon
(
RV34DSPContext
*
c
)
static
av_cold
void
rv40dsp_init_neon
(
RV34DSPContext
*
c
)
{
c
->
put_pixels_tab
[
0
][
1
]
=
ff_put_rv40_qpel16_mc10_neon
;
c
->
put_pixels_tab
[
0
][
3
]
=
ff_put_rv40_qpel16_mc30_neon
;
...
...
@@ -144,5 +144,5 @@ av_cold void ff_rv40dsp_init_arm(RV34DSPContext *c)
int
cpu_flags
=
av_get_cpu_flags
();
if
(
have_neon
(
cpu_flags
))
ff_
rv40dsp_init_neon
(
c
);
rv40dsp_init_neon
(
c
);
}
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