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 /libavcodec/x86/hpeldsp.asm | |
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 'libavcodec/x86/hpeldsp.asm')
-rw-r--r-- | libavcodec/x86/hpeldsp.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/hpeldsp.asm b/libavcodec/x86/hpeldsp.asm index 2cef8e698c..82fb8934af 100644 --- a/libavcodec/x86/hpeldsp.asm +++ b/libavcodec/x86/hpeldsp.asm @@ -35,7 +35,7 @@ pb_interleave8: db 0, 4, 1, 5, 2, 6, 3, 7 cextern pw_8192 -SECTION_TEXT +SECTION .text ; void ff_put_pixels8_x2(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h) %macro PUT_PIXELS8_X2 0 |