comparison roqav.h @ 4450:3da8c5706371

added skeleton decoders for RoQ audio and video format decoders
author melanson
date Fri, 01 Feb 2002 05:33:46 +0000
parents
children e69bed07cb27
comparison
equal deleted inserted replaced
4449:501473faf365 4450:3da8c5706371
1 #ifndef ROQAV_H
2 #define ROQAV_H
3
4 void *roq_decode_video_init(void);
5 void roq_decode_video(unsigned char *encoded, int encoded_size,
6 unsigned char *decoded, int width, int height, void *context);
7
8 void *roq_decode_audio_init(void);
9 int roq_decode_audio(unsigned short *output, unsigned char *input,
10 int channels, void *context);
11
12 #endif // ROQAV_H