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
341cacb9
Commit
341cacb9
authored
May 09, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/x86/hevcdsp_init: fix build failure with --disable-mmx
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
e54c052b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
hevcdsp_init.c
libavcodec/x86/hevcdsp_init.c
+3
-2
No files found.
libavcodec/x86/hevcdsp_init.c
View file @
341cacb9
...
...
@@ -28,7 +28,6 @@
#include "libavcodec/hevcdsp.h"
#include "libavcodec/x86/hevcdsp.h"
#if ARCH_X86_64
#define mc_rep_func(name, bitd, step, W, opt) \
void ff_hevc_put_hevc_##name##W##_##bitd##_##opt(int16_t *_dst, ptrdiff_t dststride, \
...
...
@@ -83,6 +82,8 @@ void ff_hevc_put_hevc_bi_##name##W##_##bitd##_##opt(uint8_t *_dst, ptrdiff_t dst
mc_rep_bi_func(name, bitd, step, W, opt)
#if ARCH_X86_64 && HAVE_SSE4_EXTERNAL
mc_rep_funcs
(
pel_pixels
,
8
,
16
,
64
,
sse4
);
mc_rep_funcs
(
pel_pixels
,
8
,
16
,
48
,
sse4
);
mc_rep_funcs
(
pel_pixels
,
8
,
16
,
32
,
sse4
);
...
...
@@ -317,7 +318,7 @@ mc_bi_w_funcs(qpel_h, 10, sse4);
mc_bi_w_funcs
(
qpel_v
,
10
,
sse4
);
mc_bi_w_funcs
(
qpel_hv
,
10
,
sse4
);
#endif //ARCH_X86_64
#endif //ARCH_X86_64
&& HAVE_SSE4_EXTERNAL
#define EPEL_LINKS(pointer, my, mx, fname, bitd, opt ) \
...
...
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