

#ifndef IDCT_H
#define IDCT_H

#ifdef __cplusplus
extern "C" {
#endif

void idct(short *);

void init_idct();

#ifdef __cplusplus
}
#endif

#endif // IDCT_H


