Change the initializaton of test parameters

BUG=aomedia:533

Change-Id: Iffd43f859f958ce2ccae80e3616c368ffebfc8db
diff --git a/test/av1_quantize_test.cc b/test/av1_quantize_test.cc
index b5d1531..239b041 100644
--- a/test/av1_quantize_test.cc
+++ b/test/av1_quantize_test.cc
@@ -196,16 +196,18 @@
 
 #if HAVE_SSE4_1
 #if !CONFIG_AOM_QM
-INSTANTIATE_TEST_CASE_P(
-    SSE4_1, AV1QuantizeTest,
-    ::testing::Values(QuantizeFuncParams(&av1_highbd_quantize_fp_sse4_1,
-                                         &av1_highbd_quantize_fp_c, 16),
-                      QuantizeFuncParams(&av1_highbd_quantize_fp_sse4_1,
-                                         &av1_highbd_quantize_fp_c, 64),
-                      QuantizeFuncParams(&av1_highbd_quantize_fp_sse4_1,
-                                         &av1_highbd_quantize_fp_c, 256),
-                      QuantizeFuncParams(&av1_highbd_quantize_fp_sse4_1,
-                                         &av1_highbd_quantize_fp_c, 1024)));
+const QuantizeFuncParams qfps[4] = {
+  QuantizeFuncParams(av1_highbd_quantize_fp_sse4_1, &av1_highbd_quantize_fp_c,
+                     16),
+  QuantizeFuncParams(&av1_highbd_quantize_fp_sse4_1, &av1_highbd_quantize_fp_c,
+                     64),
+  QuantizeFuncParams(&av1_highbd_quantize_fp_sse4_1, &av1_highbd_quantize_fp_c,
+                     256),
+  QuantizeFuncParams(&av1_highbd_quantize_fp_sse4_1, &av1_highbd_quantize_fp_c,
+                     1024),
+};
+
+INSTANTIATE_TEST_CASE_P(SSE4_1, AV1QuantizeTest, ::testing::ValuesIn(qfps));
 #endif  // !CONFIG_AOM_QM
 #endif  // HAVE_SSE4_1
 }  // namespace