]> git.sesse.net Git - fjl/blob - choice.c
read_huffman_tables() takes in unstuffed data, not raw data.
[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 }