diff options
author | Dave Yeo <dave.r.yeo@gmail.com> | 2011-05-22 10:44:17 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-23 12:47:53 +0200 |
commit | a10fb79070c017be613700b946f51baed4f69df0 (patch) | |
tree | c8b98fc10e01daf40950c4a75bc5a87a2b994487 /libavcodec/x86 | |
parent | 6465c820da7b104150366a8cdd837c00cf364235 (diff) | |
download | ffmpeg-a10fb79070c017be613700b946f51baed4f69df0.tar.gz |
x86 asm: Add SECTION_TEXT to dct32_sse.asm.
This fixes the following error on OS/2:
error: segment name `.text align=16' not recognized
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/dct32_sse.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/dct32_sse.asm b/libavcodec/x86/dct32_sse.asm index bafe00289d..46daa43d8c 100644 --- a/libavcodec/x86/dct32_sse.asm +++ b/libavcodec/x86/dct32_sse.asm @@ -203,7 +203,7 @@ ps_p1p1m1m1: dd 0, 0, 0x80000000, 0x80000000, 0, 0, 0x80000000, 0x80000000 %define BUTTERFLY0 BUTTERFLY0_AVX INIT_YMM -section .text align=16 +SECTION_TEXT %ifdef HAVE_AVX ; void ff_dct32_float_avx(FFTSample *out, const FFTSample *in) cglobal dct32_float_avx, 2,3,8, out, in, tmp |