mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-16 21:00:00 +01:00
20 lines
310 B
C
20 lines
310 B
C
#ifndef CTMF_H
|
|
#define CTMF_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void ctmf(
|
|
const unsigned char* src, unsigned char* dst,
|
|
int width, int height,
|
|
int src_step_row, int dst_step_row,
|
|
int r, int channels, unsigned long memsize
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|