Commit f6fff8e5 authored by Michael Niedermayer's avatar Michael Niedermayer

ac3enc_template: silence may be used uninitialized in this function warnings

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 5bcb379f
...@@ -133,7 +133,7 @@ static void apply_channel_coupling(AC3EncodeContext *s) ...@@ -133,7 +133,7 @@ static void apply_channel_coupling(AC3EncodeContext *s)
#else #else
int32_t (*fixed_cpl_coords)[AC3_MAX_CHANNELS][16] = cpl_coords; int32_t (*fixed_cpl_coords)[AC3_MAX_CHANNELS][16] = cpl_coords;
#endif #endif
int blk, ch, bnd, i, j; int av_uninit(blk), ch, bnd, i, j;
CoefSumType energy[AC3_MAX_BLOCKS][AC3_MAX_CHANNELS][16] = {{{0}}}; CoefSumType energy[AC3_MAX_BLOCKS][AC3_MAX_CHANNELS][16] = {{{0}}};
int cpl_start, num_cpl_coefs; int cpl_start, num_cpl_coefs;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment