#ifndef _CODECINTF_H_270475d4_ #define _CODECINTF_H_270475d4_ /* This file is in the public domain. */ typedef struct codec CODEC; extern CODEC *codec_init_video(const unsigned char type[4], void (*)(void *, int, int, const unsigned char *), void *); extern void codec_prefix(CODEC *, const void *, int); extern void codec_data(CODEC *, const void *, int); extern void codec_done(CODEC *); #endif