view roqav.h @ 4477:dc9d7686ea4a

using MTRR
author nick
date Sat, 02 Feb 2002 12:15:51 +0000
parents 3da8c5706371
children e69bed07cb27
line wrap: on
line source

#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