diff options
author | Henrik Gramner <henrik@gramner.com> | 2015-08-01 17:27:36 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-08-11 11:12:01 +0200 |
commit | ab43beefab9147673e09679e04be08431684a5db (patch) | |
tree | 0eae121944d96431e43ecc9d184f668cad9e043c /libavfilter/x86 | |
parent | 1c6bb813284732d9a1acacfe99522d9f66ebf73e (diff) | |
download | ffmpeg-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 'libavfilter/x86')
-rw-r--r-- | libavfilter/x86/af_volume.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/x86/af_volume.asm b/libavfilter/x86/af_volume.asm index 4e5ad2258c..25ba9234e5 100644 --- a/libavfilter/x86/af_volume.asm +++ b/libavfilter/x86/af_volume.asm @@ -29,7 +29,7 @@ pw_1: times 8 dw 1 pw_128: times 8 dw 128 pq_128: times 2 dq 128 -SECTION_TEXT +SECTION .text ;------------------------------------------------------------------------------ ; void ff_scale_samples_s16(uint8_t *dst, const uint8_t *src, int len, |