swresample: fix broken indent.

This commit is contained in:
Clément Bœsch 2011-10-10 09:56:03 +02:00 committed by Clément Bœsch
parent 0a23067ab4
commit 9719f25e7b
2 changed files with 43 additions and 43 deletions

View File

@ -227,8 +227,8 @@ int swr_rematrix_init(SwrContext *s){
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_i<out->ch_count; out_i++){
switch(s->matrix_ch[out_i][0]){