[FFmpeg-cvslog] r14638 - trunk/libavcodec/ra144.c
vitor
subversion
Wed Aug 6 07:08:48 CEST 2008
Author: vitor
Date: Wed Aug 6 07:08:48 2008
New Revision: 14638
Log:
Cosmetical simplification in t_sqrt()
Modified:
trunk/libavcodec/ra144.c
Modified: trunk/libavcodec/ra144.c
==============================================================================
--- trunk/libavcodec/ra144.c (original)
+++ trunk/libavcodec/ra144.c Wed Aug 6 07:08:48 2008
@@ -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;
More information about the ffmpeg-cvslog
mailing list