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

Unified Diff: libvpx/source/libvpx/vp8/common/x86/idctllm_mmx.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
« no previous file with comments | « libvpx/patches/ugly/02_private_symbols.patch ('k') | libvpx/source/libvpx/vp8/common/x86/idctllm_sse2.asm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libvpx/source/libvpx/vp8/common/x86/idctllm_mmx.asm
diff --git a/libvpx/source/libvpx/vp8/common/x86/idctllm_mmx.asm b/libvpx/source/libvpx/vp8/common/x86/idctllm_mmx.asm
index 43735bc4b6f41521acdc42b0b75a9a91329c9e3a..b3b8a35b70b19ce3f8551d5096fe6b05e412bf8c 100644
--- a/libvpx/source/libvpx/vp8/common/x86/idctllm_mmx.asm
+++ b/libvpx/source/libvpx/vp8/common/x86/idctllm_mmx.asm
@@ -33,7 +33,7 @@
;void short_idct4x4llm_mmx(short *input, short *output, int pitch)
-global sym(vp8_short_idct4x4llm_mmx)
+global sym(vp8_short_idct4x4llm_mmx) PRIVATE
sym(vp8_short_idct4x4llm_mmx):
push rbp
mov rbp, rsp
@@ -185,7 +185,7 @@ sym(vp8_short_idct4x4llm_mmx):
;void short_idct4x4llm_1_mmx(short *input, short *output, int pitch)
-global sym(vp8_short_idct4x4llm_1_mmx)
+global sym(vp8_short_idct4x4llm_1_mmx) PRIVATE
sym(vp8_short_idct4x4llm_1_mmx):
push rbp
mov rbp, rsp
@@ -221,7 +221,7 @@ sym(vp8_short_idct4x4llm_1_mmx):
ret
;void vp8_dc_only_idct_add_mmx(short input_dc, unsigned char *pred_ptr, unsigned char *dst_ptr, int pitch, int stride)
-global sym(vp8_dc_only_idct_add_mmx)
+global sym(vp8_dc_only_idct_add_mmx) PRIVATE
sym(vp8_dc_only_idct_add_mmx):
push rbp
mov rbp, rsp
« no previous file with comments | « libvpx/patches/ugly/02_private_symbols.patch ('k') | libvpx/source/libvpx/vp8/common/x86/idctllm_sse2.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698