diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-05-11 16:34:57 +0200 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2016-05-11 16:34:57 +0200 |
commit | 27506aceda8115f82f89691a4441d62a8cf24a6e (patch) | |
tree | 64bbdcb980a0435f6052f4eb32b5ff724095327a /libavcodec/dca_lbr.c | |
parent | ce3037ac8ee7c7fb3e5d2c6e46d51dfecc549cff (diff) | |
download | ffmpeg-27506aceda8115f82f89691a4441d62a8cf24a6e.tar.gz |
avcodec/dca_lbr: explicitly initialize structs with zero
This fixes build on MSVC and conforms to the usual init style used.
Diffstat (limited to 'libavcodec/dca_lbr.c')
-rw-r--r-- | libavcodec/dca_lbr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dca_lbr.c b/libavcodec/dca_lbr.c index 595187c258..81c40e930d 100644 --- a/libavcodec/dca_lbr.c +++ b/libavcodec/dca_lbr.c @@ -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; |