Browse Source

x86: yasm: Use complete source path for macro helper %includes

This is more consistent with the way we handle C #includes and
it simplifies the build system.
tags/n1.1
Diego Biurrun 13 years ago
parent
commit
04581c8c77
34 changed files with 34 additions and 34 deletions
  1. +1
    -1
      Makefile
  2. +1
    -1
      libavcodec/x86/ac3dsp.asm
  3. +1
    -1
      libavcodec/x86/dct32.asm
  4. +1
    -1
      libavcodec/x86/deinterlace.asm
  5. +1
    -1
      libavcodec/x86/dsputil.asm
  6. +1
    -1
      libavcodec/x86/dsputilenc.asm
  7. +1
    -1
      libavcodec/x86/fft.asm
  8. +1
    -1
      libavcodec/x86/fmtconvert.asm
  9. +1
    -1
      libavcodec/x86/h264_chromamc.asm
  10. +1
    -1
      libavcodec/x86/h264_chromamc_10bit.asm
  11. +1
    -1
      libavcodec/x86/h264_deblock.asm
  12. +1
    -1
      libavcodec/x86/h264_deblock_10bit.asm
  13. +1
    -1
      libavcodec/x86/h264_idct.asm
  14. +1
    -1
      libavcodec/x86/h264_idct_10bit.asm
  15. +1
    -1
      libavcodec/x86/h264_intrapred.asm
  16. +1
    -1
      libavcodec/x86/h264_intrapred_10bit.asm
  17. +1
    -1
      libavcodec/x86/h264_qpel_10bit.asm
  18. +1
    -1
      libavcodec/x86/h264_weight.asm
  19. +1
    -1
      libavcodec/x86/h264_weight_10bit.asm
  20. +1
    -1
      libavcodec/x86/pngdsp.asm
  21. +1
    -1
      libavcodec/x86/proresdsp.asm
  22. +1
    -1
      libavcodec/x86/rv34dsp.asm
  23. +1
    -1
      libavcodec/x86/rv40dsp.asm
  24. +1
    -1
      libavcodec/x86/sbrdsp.asm
  25. +1
    -1
      libavcodec/x86/vc1dsp.asm
  26. +1
    -1
      libavcodec/x86/vp3dsp.asm
  27. +1
    -1
      libavcodec/x86/vp56dsp.asm
  28. +1
    -1
      libavcodec/x86/vp8dsp.asm
  29. +1
    -1
      libavfilter/x86/hqdn3d.asm
  30. +1
    -1
      libavresample/x86/audio_convert.asm
  31. +1
    -1
      libavresample/x86/audio_mix.asm
  32. +1
    -1
      libswscale/x86/input.asm
  33. +1
    -1
      libswscale/x86/output.asm
  34. +1
    -1
      libswscale/x86/scale.asm

+ 1
- 1
Makefile View File

@@ -27,7 +27,7 @@ CPPFLAGS := $(IFLAGS) $(CPPFLAGS)
CFLAGS += $(ECFLAGS)
CCFLAGS = $(CPPFLAGS) $(CFLAGS)
ASFLAGS := $(CPPFLAGS) $(ASFLAGS)
YASMFLAGS += $(IFLAGS:%=%/) -I$(SRC_PATH)/libavutil/x86/ -Pconfig.asm
YASMFLAGS += $(IFLAGS:%=%/) -Pconfig.asm
HOSTCCFLAGS = $(IFLAGS) $(HOSTCFLAGS)
LDFLAGS := $(ALLFFLIBS:%=$(LD_PATH)lib%) $(LDFLAGS)



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

@@ -19,7 +19,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



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

@@ -19,7 +19,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA 32



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

@@ -20,7 +20,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



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

@@ -19,7 +19,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA
pb_f: times 16 db 15


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

@@ -21,7 +21,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;*****************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION .text



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

@@ -28,7 +28,7 @@
; in blocks as conventient to the vector size.
; i.e. {4x real, 4x imaginary, 4x real, ...} (or 2x respectively)

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

%if ARCH_X86_64
%define pointer resq


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

@@ -19,7 +19,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_TEXT



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

@@ -20,7 +20,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



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

@@ -22,7 +22,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



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

@@ -24,7 +24,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



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

@@ -24,7 +24,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



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

@@ -26,7 +26,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;*****************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



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

@@ -22,7 +22,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



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

@@ -22,7 +22,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



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

@@ -22,7 +22,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



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

@@ -22,7 +22,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA 32



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

@@ -21,7 +21,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION .text



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

@@ -22,7 +22,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA 32



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

@@ -21,7 +21,7 @@
;* 51, Inc., Foundation Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



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

@@ -21,7 +21,7 @@
;* 51, Inc., Foundation Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

%define W1sh2 22725 ; W1 = 90901 = 22725<<2 + 1
%define W2sh2 21407 ; W2 = 85627 = 21407<<2 - 1


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

@@ -19,7 +19,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA
pw_row_coeffs: times 4 dw 13


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

@@ -21,7 +21,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



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

@@ -19,7 +19,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

;SECTION_RODATA
SECTION .text


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

@@ -19,7 +19,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

cextern pw_4
cextern pw_5


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

@@ -19,7 +19,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

; MMX-optimized functions cribbed from the original VP3 source code.



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

@@ -20,7 +20,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

cextern pw_64



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

@@ -20,7 +20,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



+ 1
- 1
libavfilter/x86/hqdn3d.asm View File

@@ -18,7 +18,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION .text



+ 1
- 1
libavresample/x86/audio_convert.asm View File

@@ -20,7 +20,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"
%include "util.asm"

SECTION_RODATA 32


+ 1
- 1
libavresample/x86/audio_mix.asm View File

@@ -19,7 +19,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"
%include "util.asm"

SECTION_TEXT


+ 1
- 1
libswscale/x86/input.asm View File

@@ -21,7 +21,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



+ 1
- 1
libswscale/x86/output.asm View File

@@ -20,7 +20,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



+ 1
- 1
libswscale/x86/scale.asm View File

@@ -19,7 +19,7 @@
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
;******************************************************************************

%include "x86util.asm"
%include "libavutil/x86/x86util.asm"

SECTION_RODATA



Loading…
Cancel
Save