coding_path_sync.cc: fix missing initializer warning

use the default constructor for aom_codec_dec_cfg, this matches the
other tests

Change-Id: I989007517c0dbd47b3781b812feba905061c0a26
diff --git a/test/coding_path_sync.cc b/test/coding_path_sync.cc
index 46ccd1a..7bf0e4e 100644
--- a/test/coding_path_sync.cc
+++ b/test/coding_path_sync.cc
@@ -112,7 +112,7 @@
   explicit Decoder(int allowLowbitdepth) {
     aom_codec_iface_t *algo = &aom_codec_av1_dx_algo;
 
-    aom_codec_dec_cfg cfg = { 0 };
+    aom_codec_dec_cfg_t cfg = aom_codec_dec_cfg_t();
     cfg.allow_lowbitdepth = allowLowbitdepth;
 
     aom_codec_dec_init(&dec_, algo, &cfg, 0);