summaryrefslogtreecommitdiff
path: root/vp8/encoder/encodeframe.c
diff options
context:
space:
mode:
authorPaul Wilkins <paulwilkins@google.com>2011-10-28 15:27:23 +0100
committerPaul Wilkins <paulwilkins@google.com>2011-10-31 10:59:25 +0000
commit795c6dd2c9e3b17923a275bbd593d68112a4dba6 (patch)
treea00a43a0c29725e19e2c88aa53b8f4757821a79b /vp8/encoder/encodeframe.c
parentafb52f65f239a18135989e238f7ef9bc7b906571 (diff)
downloadlibvpx-795c6dd2c9e3b17923a275bbd593d68112a4dba6.tar
libvpx-795c6dd2c9e3b17923a275bbd593d68112a4dba6.tar.gz
libvpx-795c6dd2c9e3b17923a275bbd593d68112a4dba6.tar.bz2
libvpx-795c6dd2c9e3b17923a275bbd593d68112a4dba6.zip
Segmentation Entropy and tweaks.
Some correction for entropy impact of segment signaled (EOB and ref frame) Other slight tweaks. Derf VBR average gain now over 1% (best over 7%) One YT test clip has gains of circa 30% (VBR) There is still an issue with noisy clips where making the background static and coded with 0,0 can have a negative effect, especially at low Q. This is probably because of the loss of smoothing by fractional pixel filters. Change-Id: I7a225613c98067b96f8fc7a7e36f95d465b2b834
Diffstat (limited to 'vp8/encoder/encodeframe.c')
-rw-r--r--vp8/encoder/encodeframe.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/vp8/encoder/encodeframe.c b/vp8/encoder/encodeframe.c
index a6e47f240..ec679846e 100644
--- a/vp8/encoder/encodeframe.c
+++ b/vp8/encoder/encodeframe.c
@@ -716,7 +716,7 @@ void encode_mb_row(VP8_COMP *cpi,
#endif
- // Count of last ref frame 0,0 useage
+ // Count of last ref frame 0,0 usage
if ((xd->mode_info_context->mbmi.mode == ZEROMV) && (xd->mode_info_context->mbmi.ref_frame == LAST_FRAME))
cpi->inter_zz_count ++;
@@ -758,7 +758,7 @@ void encode_mb_row(VP8_COMP *cpi,
cpi->tplist[mb_row].stop = *tp;
- // Increment pointer into gf useage flags structure.
+ // Increment pointer into gf usage flags structure.
x->gf_active_ptr++;
// Increment the activity mask pointers.
@@ -1014,7 +1014,7 @@ void vp8_encode_frame(VP8_COMP *cpi)
&cpi->common.rtcd.subpix, bilinear16x16);
}
- // Reset frame count of inter 0,0 motion vector useage.
+ // Reset frame count of inter 0,0 motion vector usage.
cpi->inter_zz_count = 0;
vpx_memset(segment_counts, 0, sizeof(segment_counts));
@@ -1320,7 +1320,7 @@ void vp8_encode_frame(VP8_COMP *cpi)
}
#endif
- // Adjust the projected reference frame useage probability numbers to reflect
+ // Adjust the projected reference frame usage probability numbers to reflect
// what we have just seen. This may be usefull when we make multiple itterations
// of the recode loop rather than continuing to use values from the previous frame.
if ((cm->frame_type != KEY_FRAME) && !cm->refresh_alt_ref_frame && !cm->refresh_golden_frame)
@@ -1710,11 +1710,10 @@ int vp8cx_encode_inter_macroblock
vp8_update_zbin_extra(cpi, x);
}
-#if 0
-//#if CONFIG_SEGFEATURES
- // Test code using segment 1 only.
- // Dont increment count if ref frame coded at segment level
- if ( (xd->mode_info_context->mbmi.segment_id != 1) )
+#if CONFIG_SEGFEATURES
+ // Dont increment usage count if ref frame coded at segment level
+ if ( !segfeature_active( xd, xd->mode_info_context->mbmi.segment_id,
+ SEG_LVL_REF_FRAME ) )
cpi->count_mb_ref_frame_usage[xd->mode_info_context->mbmi.ref_frame]++;
#else
cpi->count_mb_ref_frame_usage[xd->mode_info_context->mbmi.ref_frame] ++;