commit | adbe7b13c628ed24fc787653d5ca127b22ead774 | [log] [tgz] |
---|---|---|
author | Yaowu Xu <yaowu@google.com> | Tue Mar 27 10:34:46 2018 -0700 |
committer | Yaowu Xu <yaowu@google.com> | Tue Mar 27 21:09:12 2018 +0000 |
tree | 46113a4570b6a8dda186bd36c05f8dd785b41325 | |
parent | 3798dbdbd56054f7f52e098b5c0a277e3a08bc2f [diff] |
Correct initialization to avoid compiler warning Change-Id: Ibdcc7ad9ecbcf205883e74da950c1e9cbcdfdedd
diff --git a/examples/noise_model.c b/examples/noise_model.c index 36e6bc4..9c304d9 100644 --- a/examples/noise_model.c +++ b/examples/noise_model.c
@@ -182,7 +182,7 @@ } else { die("--input-denoised file must be specified"); } - aom_film_grain_table_t grain_table = { 0 }; + aom_film_grain_table_t grain_table = { 0, 0 }; int64_t prev_timestamp = 0; int frame_count = 0;