Browse Source

Merge commit '7abdd026df6a9a52d07d8174505b33cc89db7bf6'

* commit '7abdd026df6a9a52d07d8174505b33cc89db7bf6':
  asm: Consistently uppercase SECTION markers

Merged-by: James Almer <jamrial@gmail.com>
tags/n3.4
James Almer 7 years ago
parent
commit
0c005fa86f
8 changed files with 9 additions and 9 deletions
  1. +1
    -1
      libavcodec/x86/dirac_dwt.asm
  2. +1
    -1
      libavcodec/x86/diracdsp.asm
  3. +1
    -1
      libavcodec/x86/dnxhdenc.asm
  4. +1
    -1
      libavcodec/x86/huffyuvencdsp.asm
  5. +1
    -1
      libavcodec/x86/lossless_videoencdsp.asm
  6. +1
    -1
      libavcodec/x86/vc1dsp_loopfilter.asm
  7. +1
    -1
      libavcodec/x86/vc1dsp_mc.asm
  8. +2
    -2
      libavutil/x86/x86inc.asm

+ 1
- 1
libavcodec/x86/dirac_dwt.asm View File

@@ -29,7 +29,7 @@ cextern pw_2
cextern pw_8
cextern pw_16

section .text
SECTION .text

; %1 -= (%2 + %3 + 2)>>2 %4 is pw_2
%macro COMPOSE_53iL0 4


+ 1
- 1
libavcodec/x86/diracdsp.asm View File

@@ -30,7 +30,7 @@ cextern pw_16
cextern pw_32
cextern pb_80

section .text
SECTION .text

%macro UNPACK_ADD 6
mov%5 %1, %3


+ 1
- 1
libavcodec/x86/dnxhdenc.asm View File

@@ -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)


+ 1
- 1
libavcodec/x86/huffyuvencdsp.asm View File

@@ -25,7 +25,7 @@

%include "libavutil/x86/x86util.asm"

section .text
SECTION .text

; void ff_diff_int16(uint8_t *dst, const uint8_t *src1, const uint8_t *src2,
; unsigned mask, int w);


+ 1
- 1
libavcodec/x86/lossless_videoencdsp.asm View File

@@ -25,7 +25,7 @@

%include "libavutil/x86/x86util.asm"

section .text
SECTION .text

; void ff_diff_bytes(uint8_t *dst, const uint8_t *src1, const uint8_t *src2,
; intptr_t w);


+ 1
- 1
libavcodec/x86/vc1dsp_loopfilter.asm View File

@@ -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


+ 1
- 1
libavcodec/x86/vc1dsp_mc.asm View File

@@ -24,7 +24,7 @@
cextern pw_9
cextern pw_128

section .text
SECTION .text

%if HAVE_MMX_INLINE



+ 2
- 2
libavutil/x86/x86inc.asm View File

@@ -87,9 +87,9 @@
; keep supporting OS/2.
%macro SECTION_RODATA 0-1 16
%ifidn __OUTPUT_FORMAT__,aout
section .text
SECTION .text
%elifidn __OUTPUT_FORMAT__,coff
section .text
SECTION .text
%else
SECTION .rodata align=%1
%endif


Loading…
Cancel
Save