From e28d92be9783d5ff6ecdf8989d1fc4340a759ef4 Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 20 Sep 2016 12:07:11 +0100 Subject: [PATCH] Fix Visual Studio build. Change-Id: I01608dfd597cc1d2bd4e73918aa29cf9251edb08 --- aomenc.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aomenc.c b/aomenc.c index 373b69d1e..b46f341ba 100644 --- a/aomenc.c +++ b/aomenc.c @@ -392,12 +392,15 @@ static const arg_def_t frame_parallel_decoding = ARG_DEF(NULL, "frame-parallel", 1, "Enable frame parallel decodability features " "(0: false (default), 1: true)"); +#if CONFIG_DELTA_Q static const arg_def_t aq_mode = ARG_DEF( NULL, "aq-mode", 1, "Adaptive quantization mode (0: off (default), 1: variance 2: complexity, " -#if CONFIG_DELTA_Q "3: cyclic refresh, 4: delta quant)"); #else +static const arg_def_t aq_mode = ARG_DEF( + NULL, "aq-mode", 1, + "Adaptive quantization mode (0: off (default), 1: variance 2: complexity, " "3: cyclic refresh)"); #endif static const arg_def_t frame_periodic_boost = -- 2.50.0