else
cpi->zbin_mode_boost = LF_ZEROMV_ZBIN_BOOST;
} else if (mbmi->mode == SPLITMV)
- cpi->zbin_mode_boost = 0;
+ cpi->zbin_mode_boost = SPLIT_MV_ZBIN_BOOST;
else
cpi->zbin_mode_boost = MV_ZBIN_BOOST;
+ } else {
+ cpi->zbin_mode_boost = INTRA_ZBIN_BOOST;
}
}
else
cpi->zbin_mode_boost = LF_ZEROMV_ZBIN_BOOST;
} else if (xd->mode_info_context->mbmi.mode == SPLITMV)
- cpi->zbin_mode_boost = 0;
+ cpi->zbin_mode_boost = SPLIT_MV_ZBIN_BOOST;
else
cpi->zbin_mode_boost = MV_ZBIN_BOOST;
+ } else {
+ cpi->zbin_mode_boost = INTRA_ZBIN_BOOST;
}
}
else
cpi->zbin_mode_boost = LF_ZEROMV_ZBIN_BOOST;
} else if (xd->mode_info_context->mbmi.mode == SPLITMV) {
- cpi->zbin_mode_boost = 0;
+ cpi->zbin_mode_boost = SPLIT_MV_ZBIN_BOOST;
} else {
cpi->zbin_mode_boost = MV_ZBIN_BOOST;
}
+ } else {
+ cpi->zbin_mode_boost = INTRA_ZBIN_BOOST;
}
}
vp8_yv12_de_alloc_frame_buffer(&cpi->last_frame_uf);
vp8_yv12_de_alloc_frame_buffer(&cpi->scaled_source);
-#if VP9_TEMPORAL_ALT_REF
vp8_yv12_de_alloc_frame_buffer(&cpi->alt_ref_buffer);
-#endif
vp9_lookahead_destroy(cpi->lookahead);
vpx_free(cpi->tok);
vpx_internal_error(&cpi->common.error, VPX_CODEC_MEM_ERROR,
"Failed to allocate lag buffers");
-#if VP9_TEMPORAL_ALT_REF
-
if (vp8_yv12_alloc_frame_buffer(&cpi->alt_ref_buffer,
cpi->oxcf.Width, cpi->oxcf.Height,
VP9BORDERINPIXELS))
vpx_internal_error(&cpi->common.error, VPX_CODEC_MEM_ERROR,
"Failed to allocate altref buffer");
-
-#endif
}
static int alloc_partition_data(VP9_COMP *cpi) {
set_tile_limits(cpi);
-#if VP9_TEMPORAL_ALT_REF
{
int i;
-
cpi->fixed_divide[0] = 0;
-
for (i = 1; i < 512; i++)
cpi->fixed_divide[i] = 0x80000 / i;
}
-#endif
}
#define MAX_LAG_BUFFERS 25
-#define AF_THRESH 25
-#define AF_THRESH2 100
-#define ARF_DECAY_THRESH 12
-
#if CONFIG_COMP_INTERINTRA_PRED
#define MAX_MODES 54
#else
#define GF_ZEROMV_ZBIN_BOOST 12
#define LF_ZEROMV_ZBIN_BOOST 6
#define MV_ZBIN_BOOST 4
-
-#define VP9_TEMPORAL_ALT_REF 1
+#define SPLIT_MV_ZBIN_BOOST 0
+#define INTRA_ZBIN_BOOST 0
typedef struct {
nmv_context nmvc;
double est_max_qcorrection_factor;
} twopass;
-#if VP9_TEMPORAL_ALT_REF
YV12_BUFFER_CONFIG alt_ref_buffer;
YV12_BUFFER_CONFIG *frames[MAX_LAG_BUFFERS];
int fixed_divide[512];
-#endif
#if CONFIG_INTERNAL_STATS
int count;
#define ALT_REF_MC_ENABLED 1 // dis/enable MC in AltRef filtering
#define ALT_REF_SUBPEL_ENABLED 1 // dis/enable subpel in MC AltRef filtering
-#if VP9_TEMPORAL_ALT_REF
-
-
static void temporal_filter_predictors_mb_c(MACROBLOCKD *xd,
uint8_t *y_mb_ptr,
uint8_t *u_mb_ptr,
frames_to_blur_backward,
strength);
}
-#endif