From 5e4d5e1877ae4e2a4bc1abc8f3433dc7de6d1026 Mon Sep 17 00:00:00 2001 From: Adrian Grange <agrange@google.com> Date: Mon, 17 Sep 2012 15:37:56 -0700 Subject: [PATCH] Added default return value to transform selector The non-void function didn't return a value in the default case. Change-Id: Ie4c965315bedc189d2080dd65cf29d3347661946 --- vp8/common/blockd.h | 1 + 1 file changed, 1 insertion(+) diff --git a/vp8/common/blockd.h b/vp8/common/blockd.h index a93232dc77..57dacf841f 100644 --- a/vp8/common/blockd.h +++ b/vp8/common/blockd.h @@ -505,6 +505,7 @@ static TX_TYPE get_tx_type(MACROBLOCKD *xd, BLOCKD *b) { return tx_type; } #endif + return tx_type; } #endif -- GitLab