From b4d46e8c06b685da0fdce50d445c0bdc720ff406 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Wed, 6 Aug 2008 05:08:48 +0000 Subject: [PATCH] Cosmetical simplification in t_sqrt() Originally committed as revision 14638 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ra144.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ra144.c b/libavcodec/ra144.c index 649dfac33e..dab7b1f807 100644 --- a/libavcodec/ra144.c +++ b/libavcodec/ra144.c @@ -71,7 +71,7 @@ static int t_sqrt(unsigned int x) int s = 2; while (x > 0xfff) { s++; - x = x >> 2; + x >>= 2; } return ff_sqrt(x << 20) << s;