0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00
mpv/roqav.h
melanson 68e3f72892 first pass at RoQ video decoder...not exactly qualified as 'working' at
this point


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4937 b3059339-0415-0410-9bf9-f77b7e298cf2
2002-03-04 05:57:57 +00:00

13 lines
340 B
C

#ifndef ROQAV_H
#define ROQAV_H
void *roq_decode_video_init(void);
void roq_decode_video(void *context, unsigned char *encoded,
int encoded_size, mp_image_t *mpi);
void *roq_decode_audio_init(void);
int roq_decode_audio(unsigned short *output, unsigned char *input,
int encoded_size, int channels, void *context);
#endif // ROQAV_H