Mercurial > mplayer.hg
view roqav.h @ 4747:0dec9673d686
Fix this stupid math mistake in calcultating audio buffer duration
for audio only
author | albeu |
---|---|
date | Sun, 17 Feb 2002 17:35:34 +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