Skip to content
This repository has been archived by the owner on Apr 9, 2018. It is now read-only.

Commit

Permalink
swresample/rematrix: show matrix with debug log level
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
  • Loading branch information
michaelni committed Oct 7, 2011
1 parent 86602d1 commit 355cc1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libswresample/rematrix.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -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;
} }
Expand Down

0 comments on commit 355cc1a

Please sign in to comment.