view roqav.h @ 5193:abea2deab4d6

MPlayer now has a Microsoft RLE decoder to call its own...only supports 8-bit right now, but 4-bit is forthcoming
author melanson
date Tue, 19 Mar 2002 07:07:06 +0000
parents 026329111b09
children
line wrap: on
line source

#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