Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
x264
Commits
3f9f6554
Commit
3f9f6554
authored
Aug 17, 2017
by
Henrik Gramner
Committed by
Anton Mitrofanov
Dec 24, 2017
Browse files
x86: AVX-512 pixel_satd_x3 and pixel_satd_x4
parent
dd399ab8
Changes
1
Hide whitespace changes
Inline
Side-by-side
common/pixel.c
View file @
3f9f6554
...
...
@@ -503,6 +503,7 @@ SATD_X_DECL6( _ssse3_atom )
SATD_X_DECL7
(
_sse4
)
SATD_X_DECL7
(
_avx
)
SATD_X_DECL7
(
_xop
)
SATD_X_DECL7
(
_avx512
)
#endif // !HIGH_BIT_DEPTH
#endif
...
...
@@ -1363,6 +1364,8 @@ void x264_pixel_init( int cpu, x264_pixel_function_t *pixf )
INIT7
(
sad_x3
,
_avx512
);
INIT7
(
sad_x4
,
_avx512
);
INIT8
(
satd
,
_avx512
);
INIT7
(
satd_x3
,
_avx512
);
INIT7
(
satd_x4
,
_avx512
);
pixf
->
sa8d
[
PIXEL_8x8
]
=
x264_pixel_sa8d_8x8_avx512
;
pixf
->
var
[
PIXEL_8x8
]
=
x264_pixel_var_8x8_avx512
;
pixf
->
var
[
PIXEL_8x16
]
=
x264_pixel_var_8x16_avx512
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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