aboutsummaryrefslogtreecommitdiffstats
path: root/libavresample/x86/audio_convert.asm
diff options
context:
space:
mode:
authorHenrik Gramner <henrik@gramner.com>2015-08-01 17:27:36 +0200
committerAnton Khirnov <anton@khirnov.net>2015-08-11 11:12:01 +0200
commitab43beefab9147673e09679e04be08431684a5db (patch)
tree0eae121944d96431e43ecc9d184f668cad9e043c /libavresample/x86/audio_convert.asm
parent1c6bb813284732d9a1acacfe99522d9f66ebf73e (diff)
downloadffmpeg-ab43beefab9147673e09679e04be08431684a5db.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`. Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavresample/x86/audio_convert.asm')
-rw-r--r--libavresample/x86/audio_convert.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavresample/x86/audio_convert.asm b/libavresample/x86/audio_convert.asm
index 1af1429bae..28f05a2c6c 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);