]> granicus.if.org Git - libx264/commitdiff
omit delta_quant in i16x16 blocks with no residual
authorFiona Glaser <fiona@x264.com>
Fri, 16 May 2008 04:44:12 +0000 (22:44 -0600)
committerLoren Merritt <pengvado@akuvian.org>
Sat, 17 May 2008 06:54:26 +0000 (00:54 -0600)
(all other block types were already covered, but i16x16 cbp is special)

encoder/cabac.c
encoder/cavlc.c

index d482c0666b0b2e18cdf06a0440aac5f2128aa3d2..7e70a25648e984544fa9ea5f4af58fdd293da62e 100644 (file)
@@ -304,6 +304,15 @@ static void x264_cabac_mb_qp_delta( x264_t *h, x264_cabac_t *cb )
     int i_dqp = h->mb.i_qp - h->mb.i_last_qp;
     int ctx;
 
+    /* Avoid writing a delta quant if we have an empty i16x16 block, e.g. in a completely flat background area */
+    if( h->mb.i_type == I_16x16 && !h->mb.cbp[h->mb.i_mb_xy] )
+    {
+#ifndef RD_SKIP_BS
+        h->mb.i_qp = h->mb.i_last_qp;
+#endif
+        i_dqp = 0;
+    }
+
     /* No need to test for PCM / SKIP */
     if( h->mb.i_last_dqp &&
         ( h->mb.type[i_mbn_xy] == I_16x16 || (h->mb.cbp[i_mbn_xy]&0x3f) ) )
index 726d024fc532cce99a35d93271fc142f6082554f..b0d951dffb6bd924ed4f015187d430f57393430e 100644 (file)
@@ -220,6 +220,17 @@ static void block_residual_write_cavlc( x264_t *h, bs_t *s, int i_idx, int16_t *
 static void cavlc_qp_delta( x264_t *h, bs_t *s )
 {
     int i_dqp = h->mb.i_qp - h->mb.i_last_qp;
+
+    /* Avoid writing a delta quant if we have an empty i16x16 block, e.g. in a completely flat background area */
+    if( h->mb.i_type == I_16x16 && !(h->mb.i_cbp_luma | h->mb.i_cbp_chroma)
+        && !array_non_zero(h->dct.luma16x16_dc) )
+    {
+#ifndef RD_SKIP_BS
+        h->mb.i_qp = h->mb.i_last_qp;
+#endif
+        i_dqp = 0;
+    }
+
     if( i_dqp )
     {
         if( i_dqp < -26 )