Skip to content
Snippets Groups Projects
Commit a282102d authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

optimization tips for the wavelet

Originally committed as revision 10178 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2cc45470
No related branches found
No related tags found
No related merge requests found
...@@ -323,6 +323,10 @@ snows 9/7 Integer filter: ...@@ -323,6 +323,10 @@ snows 9/7 Integer filter:
/ | \|/ | \|/ | \|/ | \|/ / | \|/ | \|/ | \|/ | \|/
| + | + | + | + +3/2 | + | + | + | + +3/2
optimization tips:
following are exactly identical
(3a)>>1 == a + (a>>1)
(a + 4b + 8)>>4 == ((a>>2) + b + 2)>>2
TODO: TODO:
===== =====
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment