diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-12-16 19:05:45 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-01-03 16:43:25 +0100 |
commit | cc976a75dffa148d655b52604331679ff669e8a2 (patch) | |
tree | 06542c5e7456d7c00141fb246d5b9b636129647a /libavresample | |
parent | fc6a3ef40d34ce8443ae57c2452f3f273d7d4891 (diff) | |
download | ffmpeg-cc976a75dffa148d655b52604331679ff669e8a2.tar.gz |
audio_mix: print (SKIP) instead of 0.0 for matrix columns removed along with output zeroing
Diffstat (limited to 'libavresample')
-rw-r--r-- | libavresample/audio_mix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavresample/audio_mix.c b/libavresample/audio_mix.c index 211e3c93a9..8619c1a1cd 100644 --- a/libavresample/audio_mix.c +++ b/libavresample/audio_mix.c @@ -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 ", |