ref: 62e5245c53b56bb4942cda142e674aef36bd39cc
parent: 473c5fdea074e35a3135a0ca991070b877b374cd
author: lieff <[email protected]>
date: Thu Jan 11 12:09:26 EST 2018
fix gcc warning
--- a/minimp3_test.c
+++ b/minimp3_test.c
@@ -22,7 +22,7 @@
static void decode_file(FILE *file_mp3, FILE *file_ref, FILE *file_out)
{
- static mp3dec_t mp3d = { 0, };
+ static mp3dec_t mp3d;
mp3dec_frame_info_t info;
int i, /*data_bytes, */samples, total_samples = 0, nbuf = 0, maxdiff = 0;
double MSE = 0.0, psnr;