ref: ebe1be9186b4f20e8d30c4bbad79ba78403de0d2
parent: 34a996ac1e69abd0caf8310a0753a2bebfdbce6c
author: Jingning Han <[email protected]>
date: Tue Mar 31 05:25:21 EDT 2015
Allow block skip coding option in RTC mode When the estimated rate-distortion cost of skip coding mode is lower than that of sending quantized coefficients, allow the encoder to drop these coefficients. This improves the compression performance of speed -6 by 0.268% and makes the encoding speed slightly faster. Change-Id: Idff2d7ba59f27ead33dd5a0e9f68746ed3c2ab68
--- a/vp9/encoder/vp9_pickmode.c
+++ b/vp9/encoder/vp9_pickmode.c
@@ -1082,6 +1082,7 @@
} else {
this_rdc.rate = vp9_cost_bit(vp9_get_skip_prob(cm, xd), 1);
this_rdc.dist = this_sse;
+ x->skip_txfm[0] = 1;
}
}