diff options
author | Henrik Gramner <henrik@gramner.com> | 2015-05-27 21:38:14 +0200 |
---|---|---|
committer | Henrik Gramner <henrik@gramner.com> | 2015-08-04 20:13:09 +0200 |
commit | f0b7882ceb791ff32267ad97bd21a09e9cbf83d5 (patch) | |
tree | 2b87810dcdc75245000e7fa7c5f5359cda63b2ac /libavresample | |
parent | 826790f59640a84813e8dd81c2bba559516f8e4d (diff) | |
download | ffmpeg-f0b7882ceb791ff32267ad97bd21a09e9cbf83d5.tar.gz |
x86inc: Drop SECTION_TEXT macro
The .text section is already 16-byte aligned by default on all supported
platforms so `SECTION_TEXT` isn't any different from `SECTION .text`.
Diffstat (limited to 'libavresample')
-rw-r--r-- | libavresample/x86/audio_convert.asm | 2 | ||||
-rw-r--r-- | libavresample/x86/audio_mix.asm | 2 | ||||
-rw-r--r-- | libavresample/x86/dither.asm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavresample/x86/audio_convert.asm b/libavresample/x86/audio_convert.asm index 3e21f268a7..c6a5015282 100644 --- a/libavresample/x86/audio_convert.asm +++ b/libavresample/x86/audio_convert.asm @@ -36,7 +36,7 @@ pb_interleave_words: SHUFFLE_MASK_W 0, 4, 1, 5, 2, 6, 3, 7 pb_deinterleave_words: SHUFFLE_MASK_W 0, 2, 4, 6, 1, 3, 5, 7 pw_zero_even: times 4 dw 0x0000, 0xffff -SECTION_TEXT +SECTION .text ;------------------------------------------------------------------------------ ; void ff_conv_s16_to_s32(int32_t *dst, const int16_t *src, int len); diff --git a/libavresample/x86/audio_mix.asm b/libavresample/x86/audio_mix.asm index 64ab0399f8..fe27d6a6c9 100644 --- a/libavresample/x86/audio_mix.asm +++ b/libavresample/x86/audio_mix.asm @@ -22,7 +22,7 @@ %include "libavutil/x86/x86util.asm" %include "util.asm" -SECTION_TEXT +SECTION .text ;----------------------------------------------------------------------------- ; void ff_mix_2_to_1_fltp_flt(float **src, float **matrix, int len, diff --git a/libavresample/x86/dither.asm b/libavresample/x86/dither.asm index 757f2800bc..d677c7179a 100644 --- a/libavresample/x86/dither.asm +++ b/libavresample/x86/dither.asm @@ -28,7 +28,7 @@ pf_dither_scale: times 8 dd 2.32830643762e-10 pf_s16_scale: times 4 dd 32753.0 -SECTION_TEXT +SECTION .text ;------------------------------------------------------------------------------ ; void ff_quantize(int16_t *dst, float *src, float *dither, int len); |