mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
6bd8125163
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4451 b3059339-0415-0410-9bf9-f77b7e298cf2
13 lines
351 B
C
13 lines
351 B
C
#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
|