diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-08-31 15:39:03 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-08-31 15:39:03 +0200 |
commit | 52be5428c0fb0942dfdb5628f26bb73574564d24 (patch) | |
tree | 810f38eb452e31e0b45775f378122084101087cd /libavcodec/x86/h264_deblock_10bit.asm | |
parent | 9cb919997064662344101d9df598d8b5cbb9361f (diff) | |
download | ffmpeg-52be5428c0fb0942dfdb5628f26bb73574564d24.tar.gz |
Add some missing _EXTERNAL suffixes to yasm source files.
Diffstat (limited to 'libavcodec/x86/h264_deblock_10bit.asm')
-rw-r--r-- | libavcodec/x86/h264_deblock_10bit.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/x86/h264_deblock_10bit.asm b/libavcodec/x86/h264_deblock_10bit.asm index 8a6bbb9d9e..0517605866 100644 --- a/libavcodec/x86/h264_deblock_10bit.asm +++ b/libavcodec/x86/h264_deblock_10bit.asm @@ -418,7 +418,7 @@ cglobal deblock_h_luma_10, 5,7,15 INIT_XMM sse2 DEBLOCK_LUMA_64 -%if HAVE_AVX +%if HAVE_AVX_EXTERNAL INIT_XMM avx DEBLOCK_LUMA_64 %endif @@ -715,7 +715,7 @@ cglobal deblock_h_luma_intra_10, 4,7,16 INIT_XMM sse2 DEBLOCK_LUMA_INTRA_64 -%if HAVE_AVX +%if HAVE_AVX_EXTERNAL INIT_XMM avx DEBLOCK_LUMA_INTRA_64 %endif @@ -802,7 +802,7 @@ DEBLOCK_LUMA_INTRA INIT_XMM sse2 DEBLOCK_LUMA DEBLOCK_LUMA_INTRA -%if HAVE_AVX +%if HAVE_AVX_EXTERNAL INIT_XMM avx DEBLOCK_LUMA DEBLOCK_LUMA_INTRA @@ -918,7 +918,7 @@ DEBLOCK_CHROMA %endif INIT_XMM sse2 DEBLOCK_CHROMA -%if HAVE_AVX +%if HAVE_AVX_EXTERNAL INIT_XMM avx DEBLOCK_CHROMA %endif |