CuPBoP/examples/huffman/cpuencode.h

9 lines
319 B
C
Raw Normal View History

2022-05-04 20:59:38 +08:00
#ifndef _CE_H_
#define _CE_H_
extern "C" void cpu_vlc_encode(unsigned int *indata, unsigned int num_elements,
unsigned int *outdata, unsigned int *outsize,
unsigned int *codewords,
unsigned int *codewordlens);
#endif