summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2017-02-01 13:27:30 +0100
committerDiego Biurrun <diego@biurrun.de>2017-02-03 11:37:53 +0100
commit7abdd026df6a9a52d07d8174505b33cc89db7bf6 (patch)
treef2d0a0a5076ad7757f1e9ef95e24caf339372950
parent740b0bf03b4bb8b0a0e964750817ac0363a33c55 (diff)
asm: Consistently uppercase SECTION markers
-rw-r--r--libavcodec/x86/dnxhdenc.asm2
-rw-r--r--libavcodec/x86/hevc_idct.asm2
-rw-r--r--libavcodec/x86/vc1dsp.asm2
-rw-r--r--libavutil/x86/x86inc.asm2
4 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/x86/dnxhdenc.asm b/libavcodec/x86/dnxhdenc.asm
index d39b07b9f4..091f322358 100644
--- a/libavcodec/x86/dnxhdenc.asm
+++ b/libavcodec/x86/dnxhdenc.asm
@@ -22,7 +22,7 @@
%include "libavutil/x86/x86util.asm"
-section .text
+SECTION .text
; void get_pixels_8x4_sym_sse2(int16_t *block, const uint8_t *pixels,
; ptrdiff_t line_size)
diff --git a/libavcodec/x86/hevc_idct.asm b/libavcodec/x86/hevc_idct.asm
index f397cc1097..a36fa53c2d 100644
--- a/libavcodec/x86/hevc_idct.asm
+++ b/libavcodec/x86/hevc_idct.asm
@@ -234,7 +234,7 @@ times 4 dw 78, -82
times 4 dw 85, -88
times 4 dw 90, -90
-section .text
+SECTION .text
; void ff_hevc_idctHxW_dc_{8,10}_<opt>(int16_t *coeffs)
; %1 = HxW
diff --git a/libavcodec/x86/vc1dsp.asm b/libavcodec/x86/vc1dsp.asm
index adf08d7d84..b9a770ee08 100644
--- a/libavcodec/x86/vc1dsp.asm
+++ b/libavcodec/x86/vc1dsp.asm
@@ -24,7 +24,7 @@
cextern pw_4
cextern pw_5
-section .text
+SECTION .text
; dst_low, dst_high (src), zero
; zero-extends one vector from 8 to 16 bits
diff --git a/libavutil/x86/x86inc.asm b/libavutil/x86/x86inc.asm
index 7941af304a..e04dbfedf3 100644
--- a/libavutil/x86/x86inc.asm
+++ b/libavutil/x86/x86inc.asm
@@ -87,7 +87,7 @@
; keep supporting OS/2.
%macro SECTION_RODATA 0-1 16
%ifidn __OUTPUT_FORMAT__,aout
- section .text
+ SECTION .text
%else
SECTION .rodata align=%1
%endif