Mercurial > mplayer.hg
view libmpcodecs/native/roqav.h @ 6130:e9a309486f18
openbsd a.out needs underscore for dlsym - patch by Bj«Órn Sandell <biorn@dce.chalmers.se>
author | arpi |
---|---|
date | Mon, 20 May 2002 00:04:47 +0000 |
parents | 628c85c15c7b |
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