swresample: fix broken indent.

pull/2/head
Clément Bœsch 14 years ago committed by Clément Bœsch
parent 0a23067ab4
commit 9719f25e7b
  1. 4
      libswresample/rematrix.c

@ -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]){

Loading…
Cancel
Save