0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00
mpv/roqav.h
melanson 80168a072d further work on the RoQ audio decoder
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4487 b3059339-0415-0410-9bf9-f77b7e298cf2
2002-02-02 22:45:39 +00:00

13 lines
369 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 encoded_size, int channels, void *context);
#endif // ROQAV_H