mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 07:31:22 +01:00
audio_mix: print (SKIP) instead of 0.0 for matrix columns removed along with output zeroing
This commit is contained in:
parent
fc6a3ef40d
commit
cc976a75df
1 changed files with 1 additions and 1 deletions
|
|
@ -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 ",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue