Files
veejay/veejay-current/veejay-server/libvje/ctmf/ctmf.h
Niels Elburg 64a9e6b615 constant time median filter, should move this into convience library
git-svn-id: svn://code.dyne.org/veejay/trunk@1358 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
2010-01-24 21:16:50 +00:00

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