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

Unified Diff: source/libvpx/vp9/common/vp9_findnearmv.c

Issue 12077056: libvpx: Pull from upstream (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 7 years, 11 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/libvpx/vp8/vp8_dx_iface.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/libvpx/vp9/common/vp9_findnearmv.c
===================================================================
--- source/libvpx/vp9/common/vp9_findnearmv.c (revision 179463)
+++ source/libvpx/vp9/common/vp9_findnearmv.c (working copy)
@@ -57,9 +57,9 @@
unsigned int vp9_variance2x16_c(const uint8_t *src_ptr,
- const int source_stride,
+ int source_stride,
const uint8_t *ref_ptr,
- const int recon_stride,
+ int recon_stride,
unsigned int *sse) {
int sum;
variance(src_ptr, source_stride, ref_ptr, recon_stride, 2, 16, sse, &sum);
@@ -67,9 +67,9 @@
}
unsigned int vp9_variance16x2_c(const uint8_t *src_ptr,
- const int source_stride,
+ int source_stride,
const uint8_t *ref_ptr,
- const int recon_stride,
+ int recon_stride,
unsigned int *sse) {
int sum;
variance(src_ptr, source_stride, ref_ptr, recon_stride, 16, 2, sse, &sum);
@@ -77,11 +77,11 @@
}
unsigned int vp9_sub_pixel_variance16x2_c(const uint8_t *src_ptr,
- const int src_pixels_per_line,
- const int xoffset,
- const int yoffset,
+ int src_pixels_per_line,
+ int xoffset,
+ int yoffset,
const uint8_t *dst_ptr,
- const int dst_pixels_per_line,
+ int dst_pixels_per_line,
unsigned int *sse) {
uint16_t FData3[16 * 3]; // Temp data buffer used in filtering
uint8_t temp2[2 * 16];
@@ -98,11 +98,11 @@
}
unsigned int vp9_sub_pixel_variance2x16_c(const uint8_t *src_ptr,
- const int src_pixels_per_line,
- const int xoffset,
- const int yoffset,
+ int src_pixels_per_line,
+ int xoffset,
+ int yoffset,
const uint8_t *dst_ptr,
- const int dst_pixels_per_line,
+ int dst_pixels_per_line,
unsigned int *sse) {
uint16_t FData3[2 * 17]; // Temp data buffer used in filtering
uint8_t temp2[2 * 16];
« no previous file with comments | « source/libvpx/vp8/vp8_dx_iface.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698