mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-04-25 12:26:55 +02:00
4647310322
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
28 lines
551 B
C
28 lines
551 B
C
#ifndef DCT_COMMON_H
|
|
#define DCT_COMMON_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef short DCTELEM;
|
|
|
|
typedef short JCOEF;
|
|
typedef JCOEF *JCOEFPTR;
|
|
|
|
typedef unsigned char JSAMPLE;
|
|
typedef JSAMPLE *JSAMPROW;
|
|
|
|
struct DctAuxiliaryData;
|
|
struct DctAuxiliaryData *createDctAuxiliaryData();
|
|
void freeDctAuxiliaryData(struct DctAuxiliaryData *data);
|
|
|
|
void dct_jpeg_idct_ifast(struct DctAuxiliaryData *auxiliaryData, void *dct_table, JCOEFPTR coef_block, JSAMPROW output_buf);
|
|
void dct_jpeg_fdct_ifast(DCTELEM *data);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|