]> granicus.if.org Git - libvpx/commitdiff
Added default return value to transform selector
authorAdrian Grange <agrange@google.com>
Mon, 17 Sep 2012 22:37:56 +0000 (15:37 -0700)
committerAdrian Grange <agrange@google.com>
Mon, 17 Sep 2012 22:44:32 +0000 (15:44 -0700)
The non-void function didn't return a value in the default case.

Change-Id: Ie4c965315bedc189d2080dd65cf29d3347661946

vp8/common/blockd.h

index a93232dc77668f577ae58b2a32c0481516c96a38..57dacf841f32a837fea43d8c39e3908641209efc 100644 (file)
@@ -505,6 +505,7 @@ static TX_TYPE get_tx_type(MACROBLOCKD *xd, BLOCKD *b) {
     return tx_type;
   }
 #endif
+  return tx_type;
 }
 #endif