swresample/rematrix: show matrix with debug log level

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-10-07 13:51:40 +02:00
parent 86602d1c79
commit 355cc1a052
1 changed files with 2 additions and 2 deletions

View File

@ -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(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++){ 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; return 0;
} }