1
0
Fork 0
forked from len0rd/rockbox
foxbox/apps/plugins/imageviewer/jpegp/idct.h
Roman Artiukhin 64ad7354b6 imageviewer: Initial support for JPEG progressive images. Add lib sources
Added unmodified files from RAINBOW library by Attila Tarpai
Full sources:
https://github.com/Halicery/vc_rainbow

Change-Id: I356486b6a332aa3f610ddcae57f8a2044653b051
2024-10-14 09:19:34 -04:00

6 lines
234 B
C

extern void idct_sq(short *coef, int *q); // <-- scaled integer idct WITH de-quantization
extern void idct_s(int *t, short *y); // <-- scaled integer idct
extern int zigzag[64];
extern int SCALEM[64];
extern unsigned char *CLIP;