view roqav.h @ 4917:6002d8a3b080

reinstated YUY2, BGR32 and BGR24 decoders, all reworked to operate with the mp_image structure; PPC decoding works with YV12 output!
author melanson
date Sun, 03 Mar 2002 03:28:17 +0000
parents e69bed07cb27
children 026329111b09
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 encoded_size, int channels, void *context);

#endif // ROQAV_H