ref: c8ec59d8582f07ef759dd6e380bdfeef2433b29e
parent: e1050bd3dc351096dd3a7b69d75bbb79b1241ed4
author: Ronald S. Bultje <rbultje@google.com>
date: Tue Feb 7 12:48:47 EST 2012
Fix dual prediction recode loop. Some conditions were conditional under a threshold, whereas they should always execute. Also, some conditions were testing an array instead of the values within it. Change-Id: Ia6892945cfbbe07322e6af6be42cd864bf9479c1
--- a/vp8/encoder/encodeframe.c
+++ b/vp8/encoder/encodeframe.c
@@ -1511,18 +1511,21 @@
cpi->common.dual_pred_mode = cpi->rd_single_diff > cpi->rd_hybrid_diff ?
SINGLE_PREDICTION_ONLY : HYBRID_PREDICTION;
}
- else if (cpi->common.dual_pred_mode == HYBRID_PREDICTION &&
- (cpi->rd_single_diff >= 100 || cpi->rd_dual_diff >= 100))
+ else if (cpi->common.dual_pred_mode == HYBRID_PREDICTION)
{
- if (cpi->dual_pred_count == 0)
+ if (cpi->dual_pred_count[0] == 0 &&
+ cpi->dual_pred_count[1] == 0 &&
+ cpi->dual_pred_count[2] == 0)
{
cpi->common.dual_pred_mode = SINGLE_PREDICTION_ONLY;
}
- else if (cpi->single_pred_count == 0)
+ else if (cpi->single_pred_count[0] == 0 &&
+ cpi->single_pred_count[1] == 0 &&
+ cpi->single_pred_count[2] == 0)
{
cpi->common.dual_pred_mode = DUAL_PREDICTION_ONLY;
}
- else
+ else if (cpi->rd_single_diff >= 100 || cpi->rd_dual_diff >= 100)
{
redo = 1;
cpi->common.dual_pred_mode = cpi->rd_single_diff > cpi->rd_dual_diff ?
@@ -1538,11 +1541,15 @@
if (cpi->common.dual_pred_mode == HYBRID_PREDICTION)
{
- if (cpi->dual_pred_count == 0)
+ if (cpi->dual_pred_count[0] == 0 &&
+ cpi->dual_pred_count[1] == 0 &&
+ cpi->dual_pred_count[2] == 0)
{
cpi->common.dual_pred_mode = SINGLE_PREDICTION_ONLY;
}
- else if (cpi->single_pred_count == 0)
+ else if (cpi->single_pred_count[0] == 0 &&
+ cpi->single_pred_count[1] == 0 &&
+ cpi->single_pred_count[2] == 0)
{
cpi->common.dual_pred_mode = DUAL_PREDICTION_ONLY;
}
--
⑨