]> git.sesse.net Git - fjl/blob - choice.c
Add a stupid integerization of the AA&N IDCT -- 30% faster or so, mostly
[fjl] / choice.c
1 #include "choice.h"
2
3 unstuff_func_t* unstuff_choice = NULL;
4
5 void init_choices()
6 {
7         // TODO: Pick the SSE4.1 version if applicable.
8         unstuff_choice = unstuff_fast;
9 }