Browse Source

swresample/rematrix: show matrix with debug log level

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.9
Michael Niedermayer 14 years ago
parent
commit
355cc1a052
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libswresample/rematrix.c

+ 2
- 2
libswresample/rematrix.c 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(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;
}


Loading…
Cancel
Save