Mercurial > mplayer.hg
view libao2/audio_out_internal.h @ 19105:4c979c32f5cc
clarify "extradata"
comments welcome!
if anyone disagrees ill reverse this and we can disscuss it, i just thought there wont be any disagreement and was too lazy to send a patch ...
author | michael |
---|---|
date | Sat, 15 Jul 2006 21:49:47 +0000 |
parents | f580a7755ac5 |
children | 6ac1ece1f9fe |
line wrap: on
line source
// prototypes: //static ao_info_t info; static int control(int cmd, void *arg); static int init(int rate,int channels,int format,int flags); static void uninit(int immed); static void reset(void); static int get_space(void); static int play(void* data,int len,int flags); static float get_delay(void); static void audio_pause(void); static void audio_resume(void); #define LIBAO_EXTERN(x) ao_functions_t audio_out_##x =\ {\ &info,\ control,\ init,\ uninit,\ reset,\ get_space,\ play,\ get_delay,\ audio_pause,\ audio_resume\ };