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
6f9ba0cb
Commit
6f9ba0cb
authored
Sep 19, 2015
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86/vp9dsp: add missing preprocessor guards
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
0cfdaf45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
vp9dsp_init_16bpp_template.c
libavcodec/x86/vp9dsp_init_16bpp_template.c
+8
-0
No files found.
libavcodec/x86/vp9dsp_init_16bpp_template.c
View file @
6f9ba0cb
...
...
@@ -38,26 +38,32 @@ decl_mc_funcs(16, avx2, int16_t, 16, BPC);
mc_rep_funcs
(
16
,
8
,
16
,
sse2
,
int16_t
,
16
,
BPC
);
mc_rep_funcs
(
32
,
16
,
32
,
sse2
,
int16_t
,
16
,
BPC
);
mc_rep_funcs
(
64
,
32
,
64
,
sse2
,
int16_t
,
16
,
BPC
);
#if HAVE_AVX2_EXTERNAL
mc_rep_funcs
(
32
,
16
,
32
,
avx2
,
int16_t
,
16
,
BPC
);
mc_rep_funcs
(
64
,
32
,
64
,
avx2
,
int16_t
,
16
,
BPC
);
#endif
filters_8tap_2d_fn2
(
put
,
16
,
BPC
,
2
,
sse2
,
sse2
,
16
bpp
)
filters_8tap_2d_fn2
(
avg
,
16
,
BPC
,
2
,
sse2
,
sse2
,
16
bpp
)
#if HAVE_AVX2_EXTERNAL
filters_8tap_2d_fn
(
put
,
64
,
32
,
BPC
,
2
,
avx2
,
16
bpp
)
filters_8tap_2d_fn
(
avg
,
64
,
32
,
BPC
,
2
,
avx2
,
16
bpp
)
filters_8tap_2d_fn
(
put
,
32
,
32
,
BPC
,
2
,
avx2
,
16
bpp
)
filters_8tap_2d_fn
(
avg
,
32
,
32
,
BPC
,
2
,
avx2
,
16
bpp
)
filters_8tap_2d_fn
(
put
,
16
,
32
,
BPC
,
2
,
avx2
,
16
bpp
)
filters_8tap_2d_fn
(
avg
,
16
,
32
,
BPC
,
2
,
avx2
,
16
bpp
)
#endif
filters_8tap_1d_fn3
(
put
,
BPC
,
sse2
,
sse2
,
16
bpp
)
filters_8tap_1d_fn3
(
avg
,
BPC
,
sse2
,
sse2
,
16
bpp
)
#if HAVE_AVX2_EXTERNAL
filters_8tap_1d_fn2
(
put
,
64
,
BPC
,
avx2
,
16
bpp
)
filters_8tap_1d_fn2
(
avg
,
64
,
BPC
,
avx2
,
16
bpp
)
filters_8tap_1d_fn2
(
put
,
32
,
BPC
,
avx2
,
16
bpp
)
filters_8tap_1d_fn2
(
avg
,
32
,
BPC
,
avx2
,
16
bpp
)
filters_8tap_1d_fn2
(
put
,
16
,
BPC
,
avx2
,
16
bpp
)
filters_8tap_1d_fn2
(
avg
,
16
,
BPC
,
avx2
,
16
bpp
)
#endif
#endif
/* HAVE_YASM */
...
...
@@ -72,10 +78,12 @@ av_cold void INIT_FUNC(VP9DSPContext *dsp)
}
if
(
EXTERNAL_AVX2
(
cpu_flags
))
{
#if HAVE_AVX2_EXTERNAL
init_subpel3_32_64
(
0
,
put
,
BPC
,
avx2
);
init_subpel3_32_64
(
1
,
avg
,
BPC
,
avx2
);
init_subpel2
(
2
,
0
,
16
,
put
,
BPC
,
avx2
);
init_subpel2
(
2
,
1
,
16
,
avg
,
BPC
,
avx2
);
#endif
}
#endif
/* HAVE_YASM */
...
...
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