diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-10-07 13:51:40 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-07 13:51:40 +0200 |
commit | 355cc1a05263c6d3422ffbd4fbf027001f2807de (patch) | |
tree | a300bcdeeecf9d76cdf351f4c445a4308d5f9370 /libswresample/rematrix.c | |
parent | 86602d1c79929caa1b88b942f0074b1481b52235 (diff) | |
download | ffmpeg-355cc1a05263c6d3422ffbd4fbf027001f2807de.tar.gz |
swresample/rematrix: show matrix with debug log level
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/rematrix.c')
-rw-r--r-- | libswresample/rematrix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c index 87fd35a477..5c34e11c18 100644 --- a/libswresample/rematrix.c +++ b/libswresample/rematrix.c @@ -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; } |