summaryrefslogtreecommitdiffstats
path: root/roqav.h
diff options
context:
space:
mode:
Diffstat (limited to 'roqav.h')
-rw-r--r--roqav.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/roqav.h b/roqav.h
new file mode 100644
index 0000000000..a049713e9a
--- /dev/null
+++ b/roqav.h
@@ -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