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

Unified Diff: libvpx/source/libvpx/vp8/encoder/x86/dct_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/encoder/x86/dct_sse2.asm
diff --git a/libvpx/source/libvpx/vp8/encoder/x86/dct_sse2.asm b/libvpx/source/libvpx/vp8/encoder/x86/dct_sse2.asm
index 652dd98040665dc5a87e681dcb46db816c9c96c5..e92b9b0fdbcf8c6ec4142a94a39919d13943c926 100644
--- a/libvpx/source/libvpx/vp8/encoder/x86/dct_sse2.asm
+++ b/libvpx/source/libvpx/vp8/encoder/x86/dct_sse2.asm
@@ -59,7 +59,7 @@
%endmacro
;void vp8_short_fdct4x4_sse2(short *input, short *output, int pitch)
-global sym(vp8_short_fdct4x4_sse2)
+global sym(vp8_short_fdct4x4_sse2) PRIVATE
sym(vp8_short_fdct4x4_sse2):
STACK_FRAME_CREATE
@@ -164,7 +164,7 @@ sym(vp8_short_fdct4x4_sse2):
STACK_FRAME_DESTROY
;void vp8_short_fdct8x4_sse2(short *input, short *output, int pitch)
-global sym(vp8_short_fdct8x4_sse2)
+global sym(vp8_short_fdct8x4_sse2) PRIVATE
sym(vp8_short_fdct8x4_sse2):
STACK_FRAME_CREATE
« no previous file with comments | « libvpx/source/libvpx/vp8/encoder/x86/dct_mmx.asm ('k') | libvpx/source/libvpx/vp8/encoder/x86/encodeopt.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698