Commit 01e41a53 authored by John Koleszar's avatar John Koleszar
Browse files

Remove vp9_recon_intra_mbuv

Use common vp9_recon_sbuv instead.

Change-Id: I146f79adfdfda2b52257a52fa783727f12afa246
Showing with 1 addition and 12 deletions
...@@ -269,15 +269,6 @@ static void corner_predictor(uint8_t *ypred_ptr, int y_stride, int n, ...@@ -269,15 +269,6 @@ static void corner_predictor(uint8_t *ypred_ptr, int y_stride, int n,
} }
} }
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) { static INLINE int log2_minus_1(int n) {
switch (n) { switch (n) {
case 4: return 1; case 4: return 1;
......
...@@ -14,8 +14,6 @@ ...@@ -14,8 +14,6 @@
#include "vpx/vpx_integer.h" #include "vpx/vpx_integer.h"
#include "vp9/common/vp9_blockd.h" #include "vp9/common/vp9_blockd.h"
void vp9_recon_intra_mbuv(MACROBLOCKD *xd);
B_PREDICTION_MODE vp9_find_dominant_direction(uint8_t *ptr, B_PREDICTION_MODE vp9_find_dominant_direction(uint8_t *ptr,
int stride, int n, int stride, int n,
int tx, int ty); int tx, int ty);
......
...@@ -146,7 +146,7 @@ void vp9_encode_intra16x16mbuv(VP9_COMMON *const cm, MACROBLOCK *x) { ...@@ -146,7 +146,7 @@ void vp9_encode_intra16x16mbuv(VP9_COMMON *const cm, MACROBLOCK *x) {
break; break;
} }
vp9_recon_intra_mbuv(xd); vp9_recon_sbuv(xd, BLOCK_SIZE_MB16X16);
} }
void vp9_encode_intra8x8(MACROBLOCK *x, int ib) { void vp9_encode_intra8x8(MACROBLOCK *x, int ib) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment