mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 21:45:10 +00:00
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:
parent
ce3037ac8e
commit
27506aceda
@ -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;
|
||||
|
||||
|
@ -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 */
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user