From 2bec27cfe9276052ac80ff88dad6a1ec9f773a5c Mon Sep 17 00:00:00 2001 From: vitor Date: Mon, 24 Aug 2009 17:35:47 +0000 Subject: [PATCH] Cosmetics: add some whitespace around operators git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19695 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/twinvq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/twinvq.c b/libavcodec/twinvq.c index 967e9f916..1c05238ef 100644 --- a/libavcodec/twinvq.c +++ b/libavcodec/twinvq.c @@ -234,7 +234,7 @@ static float eval_lpc_spectrum(const float *lsp, float cos_val, int order) float q = 0.5f; float two_cos_w = 2.0f*cos_val; - for (j=0; j+1 < order; j += 2*2) { + for (j=0; j + 1 < order; j += 2*2) { // Unroll the loop once since order is a multiple of four q *= lsp[j ] - two_cos_w; p *= lsp[j+1] - two_cos_w; @@ -458,7 +458,7 @@ static void add_peak(int period, int width, const float *shape, // For the last block, be careful not to go beyond the end of the buffer center = very_broken_op(period, i); - for (j=-width/2; j < (width+1)/2 && shape < shape_end; j++) + for (j=-width/2; j < (width + 1)/2 && shape < shape_end; j++) speech[j+center] += ppc_gain * *shape++; } -- 2.11.4.GIT