Index: libvpx/source/libvpx/vp8/common/recon.h |
diff --git a/libvpx/source/libvpx/vp8/common/recon.h b/libvpx/source/libvpx/vp8/common/recon.h |
index 7cfc779cdf7230e8f2d82c9d7aed3402a9616f88..e608f218cc5c21ac5aac2bbc1d07cb0c40839b16 100644 |
--- a/libvpx/source/libvpx/vp8/common/recon.h |
+++ b/libvpx/source/libvpx/vp8/common/recon.h |
@@ -26,9 +26,6 @@ |
#define prototype_build_intra_predictors(sym) \ |
void sym(MACROBLOCKD *x) |
-#define prototype_intra4x4_predict(sym) \ |
- void sym(BLOCKD *x, int b_mode, unsigned char *predictor) |
- |
struct vp8_recon_rtcd_vtable; |
#if ARCH_X86 || ARCH_X86_64 |
@@ -91,30 +88,11 @@ extern prototype_build_intra_predictors\ |
extern prototype_build_intra_predictors\ |
(vp8_recon_build_intra_predictors_mby_s); |
-#ifndef vp8_recon_build_intra_predictors_mbuv |
-#define vp8_recon_build_intra_predictors_mbuv vp8_build_intra_predictors_mbuv |
-#endif |
-extern prototype_build_intra_predictors\ |
- (vp8_recon_build_intra_predictors_mbuv); |
- |
-#ifndef vp8_recon_build_intra_predictors_mbuv_s |
-#define vp8_recon_build_intra_predictors_mbuv_s vp8_build_intra_predictors_mbuv_s |
-#endif |
-extern prototype_build_intra_predictors\ |
- (vp8_recon_build_intra_predictors_mbuv_s); |
- |
-#ifndef vp8_recon_intra4x4_predict |
-#define vp8_recon_intra4x4_predict vp8_intra4x4_predict |
-#endif |
-extern prototype_intra4x4_predict\ |
- (vp8_recon_intra4x4_predict); |
- |
typedef prototype_copy_block((*vp8_copy_block_fn_t)); |
typedef prototype_recon_block((*vp8_recon_fn_t)); |
typedef prototype_recon_macroblock((*vp8_recon_mb_fn_t)); |
typedef prototype_build_intra_predictors((*vp8_build_intra_pred_fn_t)); |
-typedef prototype_intra4x4_predict((*vp8_intra4x4_pred_fn_t)); |
typedef struct vp8_recon_rtcd_vtable |
{ |
vp8_copy_block_fn_t copy16x16; |
@@ -127,9 +105,6 @@ typedef struct vp8_recon_rtcd_vtable |
vp8_recon_mb_fn_t recon_mby; |
vp8_build_intra_pred_fn_t build_intra_predictors_mby_s; |
vp8_build_intra_pred_fn_t build_intra_predictors_mby; |
- vp8_build_intra_pred_fn_t build_intra_predictors_mbuv_s; |
- vp8_build_intra_pred_fn_t build_intra_predictors_mbuv; |
- vp8_intra4x4_pred_fn_t intra4x4_predict; |
} vp8_recon_rtcd_vtable_t; |
#if CONFIG_RUNTIME_CPU_DETECT |