1
Fork 0
gdevcon25/Presentation LabVIEW/Decoder Source/decoderlib.h
2025-07-24 08:54:23 -05:00

15 lines
300 B
C

#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
__int64 add( __int64 a, __int64 b);
/**
* decode jpeg image of given length
*
* image format is 0RGB
*/
__int64 decode(__int32 *image, const __int8 *packet, __int32 length);
__int64 blit_pattern(__int32 *arr);