shithub: libvpx

Download patch

ref: 3671e629ad58990547c026b89971df21ee32fd49
parent: a1d8918fd13e61753f7f420351cd7b9a2d6cc175
author: hkuang <hkuang@google.com>
date: Wed Jan 22 09:58:59 EST 2014

Fix the vpxenc mismatch problem due to seperate
the boarder size for encoder and decoder.

Change-Id: I7291a9e06035d1533202d7a75ab40abfc1131342

--- a/vpxenc.c
+++ b/vpxenc.c
@@ -833,8 +833,8 @@
   unsigned int i;
 
   match &= (img1->fmt == img2->fmt);
-  match &= (img1->w == img2->w);
-  match &= (img1->h == img2->h);
+  match &= (img1->d_w == img2->d_w);
+  match &= (img1->d_h == img2->d_h);
 
   for (i = 0; i < img1->d_h; i++)
     match &= (memcmp(img1->planes[VPX_PLANE_Y]+i*img1->stride[VPX_PLANE_Y],