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

Unified Diff: libvpx/source/libvpx/vp8/encoder/x86/ssim_opt.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/ssim_opt.asm
diff --git a/libvpx/source/libvpx/vp8/encoder/x86/ssim_opt.asm b/libvpx/source/libvpx/vp8/encoder/x86/ssim_opt.asm
index c267cdb54bac731318342424e69b8b1f52689838..4a8661b404507c02adc51cfd744e220278c800eb 100644
--- a/libvpx/source/libvpx/vp8/encoder/x86/ssim_opt.asm
+++ b/libvpx/source/libvpx/vp8/encoder/x86/ssim_opt.asm
@@ -61,7 +61,7 @@
; or pavgb At this point this is just meant to be first pass for calculating
; all the parms needed for 16x16 ssim so we can play with dssim as distortion
; in mode selection code.
-global sym(vp8_ssim_parms_16x16_sse3)
+global sym(vp8_ssim_parms_16x16_sse3) PRIVATE
sym(vp8_ssim_parms_16x16_sse3):
push rbp
mov rbp, rsp
@@ -149,7 +149,7 @@ NextRow:
; or pavgb At this point this is just meant to be first pass for calculating
; all the parms needed for 16x16 ssim so we can play with dssim as distortion
; in mode selection code.
-global sym(vp8_ssim_parms_8x8_sse3)
+global sym(vp8_ssim_parms_8x8_sse3) PRIVATE
sym(vp8_ssim_parms_8x8_sse3):
push rbp
mov rbp, rsp
« no previous file with comments | « libvpx/source/libvpx/vp8/encoder/x86/sad_ssse3.asm ('k') | libvpx/source/libvpx/vp8/encoder/x86/subtract_mmx.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698