Skip to content

Commit

Permalink
audio_mix: print (SKIP) instead of 0.0 for matrix columns removed alo…
Browse files Browse the repository at this point in the history
…ng with output zeroing
  • Loading branch information
elenril committed Jan 3, 2014
1 parent fc6a3ef commit cc976a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavresample/audio_mix.c
Expand Up @@ -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 ",
Expand Down

0 comments on commit cc976a7

Please sign in to comment.