cleanup experiments in configure

this commit removes a number of experiment options from configure
script. the associated experiments are already fully merged, the
options in configure script have no effect at all.

Change-Id: I8054ccaee0a04610162ed76ac9e59c4538217113
This commit is contained in:
Yaowu Xu 2012-07-17 22:34:07 -07:00
parent c6b9039fd9
commit 11e23e673d
4 changed files with 0 additions and 20 deletions

4
configure vendored
View File

@ -214,11 +214,7 @@ HAVE_LIST="
unistd_h
"
EXPERIMENT_LIST="
t8x8
csm
qimode
uvintra
compred
enhanced_interp
featureupdates
high_precision_mv

View File

@ -854,13 +854,6 @@ static void encode_sb(VP8_COMP *cpi,
check_segref(xd, *segment_id, LAST_FRAME) +
check_segref(xd, *segment_id, GOLDEN_FRAME) +
check_segref(xd, *segment_id, ALTREF_FRAME)) > 1)) {
// TODO this may not be a good idea as it makes sample size small and means
// the predictor functions cannot use data about most likely value only most
// likely unpredicted value.
// #if CONFIG_COMPRED
// // Only update count for incorrectly predicted cases
// if ( !ref_pred_flag )
// #endif
{
cpi->count_mb_ref_frame_usage
[xd->mode_info_context->mbmi.ref_frame]++;

View File

@ -3013,12 +3013,6 @@ static void encode_frame_to_data_rate
}
}
// #if !CONFIG_COMPRED
// This function has been deprecated for now but we may want to do
// something here at a late date
// update_rd_ref_frame_probs(cpi);
// #endif
// Test code for new segment features
init_seg_features(cpi);

View File

@ -3748,9 +3748,6 @@ int vp8cx_pick_mode_inter_macroblock
int distortion;
int intra_error = 0;
unsigned char *segment_id = &xd->mode_info_context->mbmi.segment_id;
#if CONFIG_COMPRED
unsigned char ref_pred_flag;
#endif
if (xd->segmentation_enabled)
x->encode_breakout = cpi->segment_encode_breakout[*segment_id];