From: Adrian Grange Date: Mon, 17 Sep 2012 22:37:56 +0000 (-0700) Subject: Added default return value to transform selector X-Git-Tag: v1.3.0~1217^2~263 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e4d5e1877ae4e2a4bc1abc8f3433dc7de6d1026;p=libvpx Added default return value to transform selector The non-void function didn't return a value in the default case. Change-Id: Ie4c965315bedc189d2080dd65cf29d3347661946 --- diff --git a/vp8/common/blockd.h b/vp8/common/blockd.h index a93232dc7..57dacf841 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