diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-06-30 11:18:05 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-06-30 11:18:05 +0200 |
commit | 3491c2a909bd07696fab7eae957cb8da5841bb4c (patch) | |
tree | 0898b533d9e60375d9410f0da4c048bc996be9e9 | |
parent | 8a85660d3b9b610549b65cba09b4b7a1acb880bd (diff) | |
download | ffmpeg-3491c2a909bd07696fab7eae957cb8da5841bb4c.tar.gz |
swr: use __asm__ instead of __asm.
For consistency only.
-rw-r--r-- | libswresample/x86/resample_mmx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswresample/x86/resample_mmx.h b/libswresample/x86/resample_mmx.h index bbf23adf6f..678fc03916 100644 --- a/libswresample/x86/resample_mmx.h +++ b/libswresample/x86/resample_mmx.h @@ -28,7 +28,7 @@ DECLARE_ALIGNED(16, const uint64_t, ff_resample_int16_rounder)[2] = { 0x00000 #define COMMON_CORE_INT16_MMX2 \ x86_reg len= -2*c->filter_length;\ -__asm volatile(\ +__asm__ volatile(\ "movq "MANGLE(ff_resample_int16_rounder)", %%mm0 \n\t"\ "1: \n\t"\ "movq (%1, %0), %%mm1 \n\t"\ @@ -49,7 +49,7 @@ __asm volatile(\ #define COMMON_CORE_INT16_SSSE3 \ x86_reg len= -2*c->filter_length;\ -__asm volatile(\ +__asm__ volatile(\ "movdqa "MANGLE(ff_resample_int16_rounder)", %%xmm0 \n\t"\ "1: \n\t"\ "movdqu (%1, %0), %%xmm1 \n\t"\ |