Commit a282102d authored by Michael Niedermayer's avatar Michael Niedermayer

optimization tips for the wavelet

Originally committed as revision 10178 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2cc45470
......@@ -323,6 +323,10 @@ snows 9/7 Integer filter:
/ | \|/ | \|/ | \|/ | \|/
| + | + | + | + +3/2
optimization tips:
following are exactly identical
(3a)>>1 == a + (a>>1)
(a + 4b + 8)>>4 == ((a>>2) + b + 2)>>2
TODO:
=====
......
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