#ifndef _CODECINTF_H_7e1e894f_ #define _CODECINTF_H_7e1e894f_ /* This file is in the public domain. */ typedef struct codec CODEC; extern CODEC *codec_init_video(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