comparison roqav.h @ 4936:026329111b09

first pass at RoQ video decoder...not exactly qualified as 'working' at this point
author melanson
date Mon, 04 Mar 2002 05:57:57 +0000
parents e69bed07cb27
children
comparison
equal deleted inserted replaced
4935:958bcb3b5725 4936:026329111b09
1 #ifndef ROQAV_H 1 #ifndef ROQAV_H
2 #define ROQAV_H 2 #define ROQAV_H
3 3
4 void *roq_decode_video_init(void); 4 void *roq_decode_video_init(void);
5 void roq_decode_video(unsigned char *encoded, int encoded_size, 5 void roq_decode_video(void *context, unsigned char *encoded,
6 unsigned char *decoded, int width, int height, void *context); 6 int encoded_size, mp_image_t *mpi);
7 7
8 void *roq_decode_audio_init(void); 8 void *roq_decode_audio_init(void);
9 int roq_decode_audio(unsigned short *output, unsigned char *input, 9 int roq_decode_audio(unsigned short *output, unsigned char *input,
10 int encoded_size, int channels, void *context); 10 int encoded_size, int channels, void *context);
11 11