]> git.sesse.net Git - fjl/blob - idct_reference.h
Make a shiny new lookup table for looking up complete AC coefficients. No tests yet.
[fjl] / idct_reference.h
1 #ifndef _IDCT_REFERENCE_H
2 #define _IDCT_REFERENCE_H
3
4 #include "idct.h"
5
6 // Non-factorized reference version (section A.3.3 of the JPEG standard).
7 void* idct_reference_alloc(const uint32_t* quant_table);
8 void idct_reference_free(void* userdata);
9 void idct_reference(const int16_t* input, const void* userdata, uint8_t* output);
10
11 #endif /* !defined(_IDCT_REFERENCE_H) */