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

Unified Diff: source/libvpx/vp8/common/x86/vp8_variance_sse2.c

Issue 1169543007: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 6 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: source/libvpx/vp8/common/x86/vp8_variance_sse2.c
diff --git a/source/libvpx/vp8/common/x86/vp8_variance_sse2.c b/source/libvpx/vp8/common/x86/vp8_variance_sse2.c
index f6dfb27871db78bbe7b845e5a193b6de755c0f85..1c15ed8809766fcbfd2526ce499e600dce5a675d 100644
--- a/source/libvpx/vp8/common/x86/vp8_variance_sse2.c
+++ b/source/libvpx/vp8/common/x86/vp8_variance_sse2.c
@@ -238,20 +238,6 @@ unsigned int vp8_sub_pixel_variance16x16_wmt
return (xxsum0 - (((unsigned int)xsum0 * xsum0) >> 8));
}
-unsigned int vp8_sub_pixel_mse16x16_wmt(
- const unsigned char *src_ptr,
- int src_pixels_per_line,
- int xoffset,
- int yoffset,
- const unsigned char *dst_ptr,
- int dst_pixels_per_line,
- unsigned int *sse
-)
-{
- vp8_sub_pixel_variance16x16_wmt(src_ptr, src_pixels_per_line, xoffset, yoffset, dst_ptr, dst_pixels_per_line, sse);
- return *sse;
-}
-
unsigned int vp8_sub_pixel_variance16x8_wmt
(
const unsigned char *src_ptr,
« no previous file with comments | « source/libvpx/vp8/common/x86/vp8_variance_mmx.c ('k') | source/libvpx/vp9/common/arm/neon/vp9_reconintra_neon_asm.asm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698