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/hevc_mc.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/hevc_mc.asm')
-rw-r--r-- | libavcodec/x86/hevc_mc.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/x86/hevc_mc.asm b/libavcodec/x86/hevc_mc.asm index 98a803883e..ff6ed0711a 100644 --- a/libavcodec/x86/hevc_mc.asm +++ b/libavcodec/x86/hevc_mc.asm @@ -40,7 +40,6 @@ max_pixels_12: times 16 dw ((1 << 12)-1) cextern pd_1 cextern pb_0 -SECTION_TEXT 32 %macro EPEL_TABLE 4 hevc_epel_filters_%4_%1 times %2 d%3 -2, 58 times %2 d%3 10, -2 @@ -88,6 +87,8 @@ QPEL_TABLE 12, 4, w, sse4 QPEL_TABLE 8,16, b, avx2 QPEL_TABLE 10, 8, w, avx2 +SECTION .text + %define MAX_PB_SIZE 64 %define hevc_qpel_filters_sse4_14 hevc_qpel_filters_sse4_10 |