2002-02-01 05:33:46 +00:00
|
|
|
#ifndef ROQAV_H
|
|
|
|
#define ROQAV_H
|
|
|
|
|
|
|
|
void *roq_decode_video_init(void);
|
2002-03-04 05:57:57 +00:00
|
|
|
void roq_decode_video(void *context, unsigned char *encoded,
|
|
|
|
int encoded_size, mp_image_t *mpi);
|
2002-02-01 05:33:46 +00:00
|
|
|
|
|
|
|
void *roq_decode_audio_init(void);
|
|
|
|
int roq_decode_audio(unsigned short *output, unsigned char *input,
|
2002-02-02 22:45:39 +00:00
|
|
|
int encoded_size, int channels, void *context);
|
2002-02-01 05:33:46 +00:00
|
|
|
|
|
|
|
#endif // ROQAV_H
|