From 9719f25e7b5a7222ca4a1e0966bb35f363752814 Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Mon, 10 Oct 2011 09:56:03 +0200 Subject: swresample: fix broken indent. --- libswresample/rematrix.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libswresample/rematrix.c') diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c index 5c34e11c18..17d6232a44 100644 --- a/libswresample/rematrix.c +++ b/libswresample/rematrix.c @@ -215,20 +215,20 @@ int swr_rematrix_init(SwrContext *s){ s->matrix16[i][j]= lrintf(s->matrix[i][j] * 32768); } } - for(i=0; iout_ch_layout); i++){ - for(j=0; jin_ch_layout); j++){ - av_log(NULL, AV_LOG_DEBUG, "%f ", s->matrix[i][j]); - } - av_log(NULL, AV_LOG_DEBUG, "\n"); + for(i=0; iout_ch_layout); i++){ + for(j=0; jin_ch_layout); j++){ + av_log(NULL, AV_LOG_DEBUG, "%f ", s->matrix[i][j]); } + av_log(NULL, AV_LOG_DEBUG, "\n"); + } return 0; } int swr_rematrix(SwrContext *s, AudioData *out, AudioData *in, int len, int mustcopy){ int out_i, in_i, i, j; -av_assert0(out->ch_count == av_get_channel_layout_nb_channels(s->out_ch_layout)); -av_assert0(in ->ch_count == av_get_channel_layout_nb_channels(s-> in_ch_layout)); + av_assert0(out->ch_count == av_get_channel_layout_nb_channels(s->out_ch_layout)); + av_assert0(in ->ch_count == av_get_channel_layout_nb_channels(s-> in_ch_layout)); for(out_i=0; out_ich_count; out_i++){ switch(s->matrix_ch[out_i][0]){ -- cgit v1.2.3