summaryrefslogtreecommitdiffstats
path: root/roqav.h
blob: 9286f24fe4e25996822ed3f0f399c28022cad5b3 (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(void *context, unsigned char *encoded, 
  int encoded_size, mp_image_t *mpi);

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