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

Change-Id: I7291a9e06035d1533202d7a75ab40abfc1131342
diff --git a/vpxenc.c b/vpxenc.c
index 396e43d..f19300a 100644
--- 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],