Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2014-08-18 16:52:38 +0400
committerStefano Sabatini <stefasab@gmail.com>2014-08-20 14:35:16 +0400
commitcb0524f7a02f910ae2df163e655cb495ea9f2493 (patch)
treeac4ae56ba39afc52d316bb410b35d059d7861c80 /libavfilter/af_apad.c
parent9f498f4e6fa00fac149aedc5b5156c72a548ec0a (diff)
lavfi/apad: fix if_( style
Diffstat (limited to 'libavfilter/af_apad.c')
-rw-r--r--libavfilter/af_apad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_apad.c b/libavfilter/af_apad.c
index 15ba8c4834..6b2c8b13de 100644
--- a/libavfilter/af_apad.c
+++ b/libavfilter/af_apad.c
@@ -101,7 +101,7 @@ static int request_frame(AVFilterLink *outlink)
apad->pad_len -= n_out;
}
- if(!n_out)
+ if (!n_out)
return AVERROR_EOF;
outsamplesref = ff_get_audio_buffer(outlink, n_out);