diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-04-17 21:22:52 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-04-17 22:39:44 +0200 |
commit | 3933963d7ba040cec89ec4a89fa4d6fa77a4e5c5 (patch) | |
tree | adc7dd557bad307fb8711a8ebf943aa4f4ef7680 /libavfilter/vsrc_testsrc.c | |
parent | 7ab631261033a71a52563c3b23b6eef826eb5994 (diff) | |
download | ffmpeg-3933963d7ba040cec89ec4a89fa4d6fa77a4e5c5.tar.gz |
lavfi/testsrc: fix style
Diffstat (limited to 'libavfilter/vsrc_testsrc.c')
-rw-r--r-- | libavfilter/vsrc_testsrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vsrc_testsrc.c b/libavfilter/vsrc_testsrc.c index d83d9964db..1b474a2941 100644 --- a/libavfilter/vsrc_testsrc.c +++ b/libavfilter/vsrc_testsrc.c @@ -475,7 +475,7 @@ static void test_fill_picture(AVFilterContext *ctx, AVFrame *frame) if (time >= INT_MAX) return; - for(x=0; x<test->nb_decimals; x++) + for (x = 0; x < test->nb_decimals; x++) p10decimals *= 10; second = av_rescale_rnd(test->nb_frame * test->time_base.num, p10decimals, test->time_base.den, AV_ROUND_ZERO); |