Commit fadec4f6 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '3d95d273'

* commit '3d95d273':
  audio_mix: initialize the data pointers to NULL
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 8e6af036 3d95d273
......@@ -447,7 +447,7 @@ int ff_audio_mix(AudioMix *am, AudioData *src)
if (am->in_matrix_channels && am->out_matrix_channels) {
uint8_t **data;
uint8_t *data0[AVRESAMPLE_MAX_CHANNELS];
uint8_t *data0[AVRESAMPLE_MAX_CHANNELS] = { NULL };
if (am->out_matrix_channels < am->out_channels ||
am->in_matrix_channels < am->in_channels) {
......
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