Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
ee4cc806
Commit
ee4cc806
authored
Aug 22, 2015
by
Timothy Gu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vp9dsp: Add missing ff_ prefixes
parent
e10ef328
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
vp9dsp_template.c
libavcodec/vp9dsp_template.c
+12
-12
No files found.
libavcodec/vp9dsp_template.c
View file @
ee4cc806
...
...
@@ -1078,12 +1078,12 @@ def_hor_up(32)
#endif
/* BIT_DEPTH != 12 */
#if BIT_DEPTH != 8
void
vp9dsp_intrapred_init_10
(
VP9DSPContext
*
dsp
);
void
ff_
vp9dsp_intrapred_init_10
(
VP9DSPContext
*
dsp
);
#endif
#if BIT_DEPTH != 10
static
#endif
av_cold
void
FUNC
(
vp9dsp_intrapred_init
)(
VP9DSPContext
*
dsp
)
av_cold
void
FUNC
(
ff_
vp9dsp_intrapred_init
)(
VP9DSPContext
*
dsp
)
{
#define init_intra_pred_bd_aware(tx, sz) \
dsp->intra_pred[tx][TM_VP8_PRED] = tm_##sz##_c; \
...
...
@@ -1092,7 +1092,7 @@ av_cold void FUNC(vp9dsp_intrapred_init)(VP9DSPContext *dsp)
dsp->intra_pred[tx][DC_129_PRED] = dc_129_##sz##_c
#if BIT_DEPTH == 12
vp9dsp_intrapred_init_10
(
dsp
);
ff_
vp9dsp_intrapred_init_10
(
dsp
);
#define init_intra_pred(tx, sz) \
init_intra_pred_bd_aware(tx, sz)
#else
...
...
@@ -2317,15 +2317,15 @@ filter_fn_set(avg)
#undef bilinf_fn_2d
#if BIT_DEPTH != 8
void
vp9dsp_mc_init_10
(
VP9DSPContext
*
dsp
);
void
ff_
vp9dsp_mc_init_10
(
VP9DSPContext
*
dsp
);
#endif
#if BIT_DEPTH != 10
static
#endif
av_cold
void
FUNC
(
vp9dsp_mc_init
)(
VP9DSPContext
*
dsp
)
av_cold
void
FUNC
(
ff_
vp9dsp_mc_init
)(
VP9DSPContext
*
dsp
)
{
#if BIT_DEPTH == 12
vp9dsp_mc_init_10
(
dsp
);
ff_
vp9dsp_mc_init_10
(
dsp
);
#else
/* BIT_DEPTH == 12 */
#define init_fpel(idx1, idx2, sz, type) \
...
...
@@ -2555,12 +2555,12 @@ scaled_filter_fn_set(avg)
#undef scaled_bilinf_fn
#if BIT_DEPTH != 8
void
vp9dsp_scaled_mc_init_10
(
VP9DSPContext
*
dsp
);
void
ff_
vp9dsp_scaled_mc_init_10
(
VP9DSPContext
*
dsp
);
#endif
#if BIT_DEPTH != 10
static
#endif
av_cold
void
FUNC
(
vp9dsp_scaled_mc_init
)(
VP9DSPContext
*
dsp
)
av_cold
void
FUNC
(
ff_
vp9dsp_scaled_mc_init
)(
VP9DSPContext
*
dsp
)
{
#define init_scaled_bd_aware(idx1, idx2, sz, type) \
dsp->smc[idx1][FILTER_8TAP_SMOOTH ][idx2] = type##_scaled_smooth_##sz##_c; \
...
...
@@ -2568,7 +2568,7 @@ av_cold void FUNC(vp9dsp_scaled_mc_init)(VP9DSPContext *dsp)
dsp->smc[idx1][FILTER_8TAP_SHARP ][idx2] = type##_scaled_sharp_##sz##_c
#if BIT_DEPTH == 12
vp9dsp_scaled_mc_init_10
(
dsp
);
ff_
vp9dsp_scaled_mc_init_10
(
dsp
);
#define init_scaled(a,b,c,d) init_scaled_bd_aware(a,b,c,d)
#else
#define init_scaled(idx1, idx2, sz, type) \
...
...
@@ -2593,9 +2593,9 @@ av_cold void FUNC(vp9dsp_scaled_mc_init)(VP9DSPContext *dsp)
av_cold
void
FUNC
(
ff_vp9dsp_init
)(
VP9DSPContext
*
dsp
)
{
FUNC
(
vp9dsp_intrapred_init
)(
dsp
);
FUNC
(
ff_
vp9dsp_intrapred_init
)(
dsp
);
vp9dsp_itxfm_init
(
dsp
);
vp9dsp_loopfilter_init
(
dsp
);
FUNC
(
vp9dsp_mc_init
)(
dsp
);
FUNC
(
vp9dsp_scaled_mc_init
)(
dsp
);
FUNC
(
ff_
vp9dsp_mc_init
)(
dsp
);
FUNC
(
ff_
vp9dsp_scaled_mc_init
)(
dsp
);
}
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