avcodec/dca_lbr: explicitly initialize structs with zero

This fixes build on MSVC and conforms to the usual init style used.
This commit is contained in:
Hendrik Leppkes 2016-05-11 16:34:57 +02:00
parent ce3037ac8e
commit 27506aceda
2 changed files with 2 additions and 2 deletions

View File

@ -1161,7 +1161,7 @@ int ff_dca_lbr_parse(DCALbrDecoder *s, uint8_t *data, DCAExssAsset *asset)
LBRChunk hr_grid[DCA_LBR_CHANNELS / 2];
LBRChunk ts1[DCA_LBR_CHANNELS / 2];
LBRChunk ts2[DCA_LBR_CHANNELS / 2];
} chunk = { };
} chunk = { 0 };
GetByteContext gb;

View File

@ -8830,7 +8830,7 @@ const uint8_t ff_dca_grid_1_weights[12][32] = {
0, 0, 0, 0, 0, 0, 0, 0,
0, 18, 37, 55, 73, 91, 110, 128,
}, {
/* empty */
0 /* empty */
}
};