shithub: libvpx

Download patch

ref: 01e41a531b1ccd18eff2c6c490bd9104936e94ff
parent: c2c15e8eb3e62d26a0f592d0d23313108ad161e9
author: John Koleszar <jkoleszar@google.com>
date: Sat Apr 20 10:17:57 EDT 2013

Remove vp9_recon_intra_mbuv

Use common vp9_recon_sbuv instead.

Change-Id: I146f79adfdfda2b52257a52fa783727f12afa246

--- a/vp9/common/vp9_reconintra.c
+++ b/vp9/common/vp9_reconintra.c
@@ -269,15 +269,6 @@
   }
 }
 
-void vp9_recon_intra_mbuv(MACROBLOCKD *xd) {
-  int i;
-  for (i = 16; i < 24; i += 2) {
-    BLOCKD *b = &xd->block[i];
-    vp9_recon2b(*(b->base_dst) + b->dst, b->diff,
-                *(b->base_dst) + b->dst, b->dst_stride);
-  }
-}
-
 static INLINE int log2_minus_1(int n) {
   switch (n) {
     case 4: return 1;
--- a/vp9/common/vp9_reconintra.h
+++ b/vp9/common/vp9_reconintra.h
@@ -14,8 +14,6 @@
 #include "vpx/vpx_integer.h"
 #include "vp9/common/vp9_blockd.h"
 
-void vp9_recon_intra_mbuv(MACROBLOCKD *xd);
-
 B_PREDICTION_MODE vp9_find_dominant_direction(uint8_t *ptr,
                                               int stride, int n,
                                               int tx, int ty);
--- a/vp9/encoder/vp9_encodeintra.c
+++ b/vp9/encoder/vp9_encodeintra.c
@@ -146,7 +146,7 @@
       break;
     }
 
-  vp9_recon_intra_mbuv(xd);
+  vp9_recon_sbuv(xd, BLOCK_SIZE_MB16X16);
 }
 
 void vp9_encode_intra8x8(MACROBLOCK *x, int ib) {
--