Mercurial > mplayer.hg
view libao2/audio_out_internal.h @ 23960:0525bd0aed18
r23897: Experimental negative panscan values
r23898: Set -vo gl slice-height default to 0, the current default of 4 seems
r23913: punctuation, new sentences on new lines
r23917: Document -rawvideo format="format string"
r23924: Teletext support
r23926: update man page with v4l2 a/v outputs
r23944: h/w -> hardware
r23962: added missing ':' for separator
r23978: add possibly incorrect subfont entry
author | voroshil |
---|---|
date | Wed, 01 Aug 2007 01:15:26 +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\ };