summaryrefslogtreecommitdiff
path: root/libswresample/swresample.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-10-16 18:18:40 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-10-16 18:18:40 +0200
commit080c846f5999f71f2e1f46327656f3cc7080f700 (patch)
treec770c2706e5be71903a89bbcd5bd6cf4ae8a586d /libswresample/swresample.c
parent8bcf425d06a278ee7870082777a8e99229c53eed (diff)
swresample: do not put multiple statements in one line
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample.c')
-rw-r--r--libswresample/swresample.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c
index fc58d43664..b4d8f32859 100644
--- a/libswresample/swresample.c
+++ b/libswresample/swresample.c
@@ -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;