[x264-devel] commit: fix some name mangling issues introduced by the merge ( Loren Merritt )

git version control git at videolan.org
Mon Mar 17 00:35:38 CET 2008


x264 | branch: master | Loren Merritt <pengvado at akuvian.org> | Sun Mar 16 16:34:41 2008 -0600| [5862a17e25bc4eab46cb856b56e04f51814051db]

fix some name mangling issues introduced by the merge

> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=5862a17e25bc4eab46cb856b56e04f51814051db
---

 common/x86/dct-a.asm   |    8 ++++----
 common/x86/pixel-a.asm |    6 ++++--
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/common/x86/dct-a.asm b/common/x86/dct-a.asm
index 4d3efcb..a23bf76 100644
--- a/common/x86/dct-a.asm
+++ b/common/x86/dct-a.asm
@@ -258,11 +258,11 @@ cglobal %1, 2,2,1
     jmp  %2
 %endmacro
 
-SUB_NxN_DCT  x264_sub8x8_dct_mmx,    x264_sub4x4_dct_mmx.skip_prologue,  32, 4, 0,  4
-ADD_NxN_IDCT x264_add8x8_idct_mmx,   x264_add4x4_idct_mmx.skip_prologue, 32, 4, 0,  4
+SUB_NxN_DCT  x264_sub8x8_dct_mmx,    x264_sub4x4_dct_mmx  %+ .skip_prologue, 32, 4, 0,  4
+ADD_NxN_IDCT x264_add8x8_idct_mmx,   x264_add4x4_idct_mmx %+ .skip_prologue, 32, 4, 0,  4
 
-SUB_NxN_DCT  x264_sub16x16_dct_mmx,  x264_sub8x8_dct_mmx.skip_prologue,  32, 4, 4, 12
-ADD_NxN_IDCT x264_add16x16_idct_mmx, x264_add8x8_idct_mmx.skip_prologue, 32, 4, 4, 12
+SUB_NxN_DCT  x264_sub16x16_dct_mmx,  x264_sub8x8_dct_mmx  %+ .skip_prologue, 32, 4, 4, 12
+ADD_NxN_IDCT x264_add16x16_idct_mmx, x264_add8x8_idct_mmx %+ .skip_prologue, 32, 4, 4, 12
 
 %ifdef ARCH_X86_64
 cextern x264_sub8x8_dct8_sse2
diff --git a/common/x86/pixel-a.asm b/common/x86/pixel-a.asm
index 93d2b7d..0d2eab3 100644
--- a/common/x86/pixel-a.asm
+++ b/common/x86/pixel-a.asm
@@ -1625,7 +1625,8 @@ ADS_SSE2 ssse3
 ;     return nmv;
 ; }
 %ifdef ARCH_X86_64
-cglobal x264_pixel_ads_mvs
+ALIGN 16
+x264_pixel_ads_mvs:
     ; mvs = r4
     ; masks = rsp
     ; width = r5
@@ -1666,7 +1667,8 @@ cglobal x264_pixel_ads_mvs
     ret
 
 %else
-cglobal x264_pixel_ads_mvs
+ALIGN 16
+x264_pixel_ads_mvs:
     ; no PROLOGUE, inherit from x264_pixel_ads1
     mov     ebx, [ebp+stack_offset+20] ; mvs
     mov     edi, [ebp+stack_offset+24] ; width



More information about the x264-devel mailing list