Commit 3b3ed39b authored by vitor's avatar vitor

Update comment

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13434 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f31759ed
......@@ -56,7 +56,10 @@ static int ra144_decode_init(AVCodecContext * avctx)
return 0;
}
/* lookup square roots in table */
/**
* Evaluate sqrt(x << 24). x must fit in 20 bits. This value is evaluated in a
* odd way to make the output identical to the binary decoder.
*/
static int t_sqrt(unsigned int x)
{
int s = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment