mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
392 B
Objective-C
18 lines
392 B
Objective-C
#ifndef DctHuffman_h
|
|
#define DctHuffman_h
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
NSData * _Nullable writeDCTBlocks(int width, int height, float const * _Nonnull coefficients);
|
|
void readDCTBlocks(int width, int height, NSData * _Nonnull blockData, float * _Nonnull coefficients, int elementsPerRow);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* DctHuffman_h */
|