#ifndef _CODECINTF_H_d9a28646_ #define _CODECINTF_H_d9a28646_ /* This file is in the public domain. */ typedef struct codec CODEC; extern CODEC *codec_init_audio(const unsigned char type[4], void (*)(void *, const unsigned char *, int), void *); 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