Browse Source

swresample: do not put multiple statements in one line

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.5
Michael Niedermayer 11 years ago
parent
commit
080c846f59
1 changed files with 9 additions and 3 deletions
  1. +9
    -3
      libswresample/swresample.c

+ 9
- 3
libswresample/swresample.c View File

@@ -435,9 +435,15 @@ static int resample(SwrContext *s, AudioData *out_param, int out_count,

border = s->resampler->invert_initial_buffer(s->resample, &s->in_buffer,
&in, in_count, &s->in_buffer_index, &s->in_buffer_count);
if (border == INT_MAX) return 0;
else if (border < 0) return border;
else if (border) { buf_set(&in, &in, border); in_count -= border; s->resample_in_constraint = 0; }
if (border == INT_MAX) {
return 0;
} else if (border < 0) {
return border;
} else if (border) {
buf_set(&in, &in, border);
in_count -= border;
s->resample_in_constraint = 0;
}

do{
int ret, size, consumed;


Loading…
Cancel
Save