diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/roqav.h	Fri Feb 01 05:33:46 2002 +0000
@@ -0,0 +1,12 @@
+#ifndef ROQAV_H
+#define ROQAV_H
+
+void *roq_decode_video_init(void);
+void roq_decode_video(unsigned char *encoded, int encoded_size,
+  unsigned char *decoded, int width, int height, void *context);
+
+void *roq_decode_audio_init(void);
+int roq_decode_audio(unsigned short *output, unsigned char *input,
+  int channels, void *context);
+
+#endif // ROQAV_H