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

Unified Diff: source/config/win/ia32/vp9_rtcd.h

Issue 996503002: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 9 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 | « source/config/nacl/vp9_rtcd.h ('k') | source/config/win/x64/vp9_rtcd.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/config/win/ia32/vp9_rtcd.h
diff --git a/source/config/win/ia32/vp9_rtcd.h b/source/config/win/ia32/vp9_rtcd.h
index fcf7f52ae02b629889e8ef48bd5c20738867701d..b20d23bc10dba25b436f5f87c468e80b7984be92 100644
--- a/source/config/win/ia32/vp9_rtcd.h
+++ b/source/config/win/ia32/vp9_rtcd.h
@@ -926,9 +926,9 @@ unsigned int vp9_variance8x8_c(const uint8_t *src_ptr, int source_stride, const
unsigned int vp9_variance8x8_sse2(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
RTCD_EXTERN unsigned int (*vp9_variance8x8)(const uint8_t *src_ptr, int source_stride, const uint8_t *ref_ptr, int ref_stride, unsigned int *sse);
-int vp9_vector_sad_c(int16_t const *ref, int16_t const *src, const int width);
-int vp9_vector_sad_sse2(int16_t const *ref, int16_t const *src, const int width);
-RTCD_EXTERN int (*vp9_vector_sad)(int16_t const *ref, int16_t const *src, const int width);
+int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl);
+int vp9_vector_var_sse2(int16_t const *ref, int16_t const *src, const int bwl);
+RTCD_EXTERN int (*vp9_vector_var)(int16_t const *ref, int16_t const *src, const int bwl);
void vp9_rtcd(void);
@@ -1364,8 +1364,8 @@ static void setup_rtcd_internal(void)
if (flags & HAS_SSE2) vp9_variance8x4 = vp9_variance8x4_sse2;
vp9_variance8x8 = vp9_variance8x8_c;
if (flags & HAS_SSE2) vp9_variance8x8 = vp9_variance8x8_sse2;
- vp9_vector_sad = vp9_vector_sad_c;
- if (flags & HAS_SSE2) vp9_vector_sad = vp9_vector_sad_sse2;
+ vp9_vector_var = vp9_vector_var_c;
+ if (flags & HAS_SSE2) vp9_vector_var = vp9_vector_var_sse2;
}
#endif
« no previous file with comments | « source/config/nacl/vp9_rtcd.h ('k') | source/config/win/x64/vp9_rtcd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698