From 29d3ed22a23545762a1cf3badb207338a19548bb Mon Sep 17 00:00:00 2001 From: vitor Date: Wed, 6 Aug 2008 05:11:46 +0000 Subject: [PATCH] Simplify rms(): merge a few operations in the same statement git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14639 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- libavcodec/ra144.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index dab7b1f80..dcb852626 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -154,7 +154,7 @@ static unsigned int rms(const int *data) { int i; unsigned int res = 0x10000; - int b = 0; + int b = 10; for (i=0; i < 10; i++) { res = (((0x1000000 - data[i]*data[i]) >> 12) * res) >> 12; @@ -168,10 +168,7 @@ static unsigned int rms(const int *data) } } - res = t_sqrt(res); - - res >>= (b + 10); - return res; + return t_sqrt(res) >> b; } static void do_output_subblock(RA144Context *ractx, const uint16_t *lpc_coefs, -- 2.39.2