Commit 355cc1a0 authored by Michael Niedermayer's avatar Michael Niedermayer

swresample/rematrix: show matrix with debug log level

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 86602d1c
......@@ -217,9 +217,9 @@ int swr_rematrix_init(SwrContext *s){
}
for(i=0; i<av_get_channel_layout_nb_channels(s->out_ch_layout); i++){
for(j=0; j<av_get_channel_layout_nb_channels(s->in_ch_layout); j++){
av_log(NULL, AV_LOG_ERROR, "%f ", s->matrix[i][j]);
av_log(NULL, AV_LOG_DEBUG, "%f ", s->matrix[i][j]);
}
av_log(NULL, AV_LOG_ERROR, "\n");
av_log(NULL, AV_LOG_DEBUG, "\n");
}
return 0;
}
......
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