ref: 03dd2818e41bbbbbbe0b39b40d801e40dd788e46
parent: d975804e9abcff9c6c2c3c3384ceb3dc04f5c087
author: Paul Wilkins <[email protected]>
date: Fri Oct 4 07:52:18 EDT 2013
Missing threshold case for disable split. In relation to change: Refactor inter mode rate-distortion search Ie6bdfa0a370148dd60bd800961077f7e97e67dd4 sf->thresh_mult_sub8x8[THR_INTRA] = INT_MAX missing; Change-Id: Ia86b68a5073368a3e2ca124a27b632243b525c8b
--- a/vp9/encoder/vp9_onyx_if.c
+++ b/vp9/encoder/vp9_onyx_if.c
@@ -701,6 +701,7 @@
sf->thresh_mult_sub8x8[THR_ALTR] = INT_MAX;
sf->thresh_mult_sub8x8[THR_COMP_LA] = INT_MAX;
sf->thresh_mult_sub8x8[THR_COMP_GA] = INT_MAX;
+ sf->thresh_mult_sub8x8[THR_INTRA] = INT_MAX;
}
}