Fix unit tests with --disable-lowbitdepth
This moves up to the main the decision of which coding path to use,
aligning the decoder's logic on the encoder's logic.
Change-Id: I61c709ca1160aefb156d0be25cab8bb1c20ff92a
diff --git a/aomdec.c b/aomdec.c
index 2897761..035572c 100644
--- a/aomdec.c
+++ b/aomdec.c
@@ -519,7 +519,7 @@
int use_y4m = 1;
int opt_yv12 = 0;
int opt_i420 = 0;
- aom_codec_dec_cfg_t cfg = { 0, 0, 0 };
+ aom_codec_dec_cfg_t cfg = { 0, 0, 0, CONFIG_LOWBITDEPTH };
#if CONFIG_HIGHBITDEPTH
unsigned int output_bit_depth = 0;
#endif