summaryrefslogtreecommitdiffstats
path: root/roqav.h
blob: be8891631111755fee2649acb91e66603e66be47 (plain)
1
2
3
4
5
6
7
8
9
10
11
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 encoded_size, int channels, void *context);

#endif // ROQAV_H