shithub: libvpx

Download patch

ref: 9158b8956f540693e0a5d98d5cda2e25f83c52fd
parent: 7bc775d93dd4cfb6a80dc6afeb7fe5f7cd1a241b
parent: 1ee66933c13834985b676f009bd16c1b78c72ff9
author: Yaowu Xu <yaowu@google.com>
date: Thu Sep 5 04:15:03 EDT 2013

Merge "make bsize requirement for SEG_LVL_SKIP explicit"

--- a/vp9/decoder/vp9_decodemv.c
+++ b/vp9/decoder/vp9_decodemv.c
@@ -460,6 +460,7 @@
 
   if (vp9_segfeature_active(&cm->seg, mbmi->segment_id, SEG_LVL_SKIP)) {
     mbmi->mode = ZEROMV;
+    assert(bsize >= BLOCK_8X8);
   } else {
     if (bsize >= BLOCK_8X8)
       mbmi->mode = read_inter_mode(cm, r, inter_mode_ctx);