Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Unified Diff: libvpx/source/libvpx/vp8/common/x86/recon_sse2.asm

Issue 7655050: Define PRIVATE and add it to all global symbols so we don't export assembly functions. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party
Patch Set: added patch Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: libvpx/source/libvpx/vp8/common/x86/recon_sse2.asm
diff --git a/libvpx/source/libvpx/vp8/common/x86/recon_sse2.asm b/libvpx/source/libvpx/vp8/common/x86/recon_sse2.asm
index 4ad3973ecb73505a4956d9ec3eed3232bc9e13b3..05b54803ed051fed0a374f3fa3be9e4f4c7d5e24 100644
--- a/libvpx/source/libvpx/vp8/common/x86/recon_sse2.asm
+++ b/libvpx/source/libvpx/vp8/common/x86/recon_sse2.asm
@@ -11,7 +11,7 @@
%include "vpx_ports/x86_abi_support.asm"
;void vp8_recon2b_sse2(unsigned char *s, short *q, unsigned char *d, int stride)
-global sym(vp8_recon2b_sse2)
+global sym(vp8_recon2b_sse2) PRIVATE
sym(vp8_recon2b_sse2):
push rbp
mov rbp, rsp
@@ -62,7 +62,7 @@ sym(vp8_recon2b_sse2):
;void vp8_recon4b_sse2(unsigned char *s, short *q, unsigned char *d, int stride)
-global sym(vp8_recon4b_sse2)
+global sym(vp8_recon4b_sse2) PRIVATE
sym(vp8_recon4b_sse2):
push rbp
mov rbp, rsp
@@ -132,7 +132,7 @@ sym(vp8_recon4b_sse2):
; unsigned char *dst,
; int dst_stride
; )
-global sym(vp8_copy_mem16x16_sse2)
+global sym(vp8_copy_mem16x16_sse2) PRIVATE
sym(vp8_copy_mem16x16_sse2):
push rbp
mov rbp, rsp
« no previous file with comments | « libvpx/source/libvpx/vp8/common/x86/recon_mmx.asm ('k') | libvpx/source/libvpx/vp8/common/x86/subpixel_mmx.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698