From 03dd2818e41bbbbbbe0b39b40d801e40dd788e46 Mon Sep 17 00:00:00 2001 From: Paul Wilkins Date: Fri, 4 Oct 2013 11:52:18 +0100 Subject: [PATCH] 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 --- vp9/encoder/vp9_onyx_if.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vp9/encoder/vp9_onyx_if.c b/vp9/encoder/vp9_onyx_if.c index 03a90ffae..d2e46ef06 100644 --- a/vp9/encoder/vp9_onyx_if.c +++ b/vp9/encoder/vp9_onyx_if.c @@ -701,6 +701,7 @@ static void set_rd_speed_thresholds_sub8x8(VP9_COMP *cpi, int mode) { 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; } } -- 2.50.0