Commit 8f8381bf authored by Derek Buitenhuis's avatar Derek Buitenhuis

Merge commit 'eafb05fc'

* commit 'eafb05fc':
  v210: x86: Add the correct guards around the asm code
Merged-by: 's avatarDerek Buitenhuis <derek.buitenhuis@gmail.com>
parents 4401f07f eafb05fc
......@@ -93,8 +93,10 @@ cglobal v210_planar_pack_10, 5, 5, 4+cpuflag(avx2), y, u, v, dst, width
RET
%endmacro
%if HAVE_SSSE3_EXTERNAL
INIT_XMM ssse3
v210_planar_pack_10
%endif
%if HAVE_AVX2_EXTERNAL
INIT_YMM avx2
......@@ -167,10 +169,14 @@ cglobal v210_planar_pack_8, 5, 5, 7, y, u, v, dst, width
RET
%endmacro
%if HAVE_SSSE3_EXTERNAL
INIT_XMM ssse3
v210_planar_pack_8
%endif
%if HAVE_AVX_EXTERNAL
INIT_XMM avx
v210_planar_pack_8
%endif
%if HAVE_AVX2_EXTERNAL
INIT_YMM avx2
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment