Commit 781fd588 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'cc976a75'

* commit 'cc976a75':
  audio_mix: print (SKIP) instead of 0.0 for matrix columns removed along with output zeroing
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 4b8bc6d2 cc976a75
......@@ -729,7 +729,7 @@ int ff_audio_mix_set_matrix(AudioMix *am, const double *matrix, int stride)
for (i = 0; i < am->in_channels; i++) {
if (am->output_zero[o])
av_log(am->avr, AV_LOG_DEBUG, " (ZERO)");
else if (am->input_skip[i] || am->output_skip[o])
else if (am->input_skip[i] || am->output_zero[i] || am->output_skip[o])
av_log(am->avr, AV_LOG_DEBUG, " (SKIP)");
else
av_log(am->avr, AV_LOG_DEBUG, " %0.3f ",
......
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