Mercurial > mplayer.hg
view libao2/audio_out_internal.h @ 27136:25c8d906abb1
r24808: Add a space behind openal to get minimum length of 7
r24809: Replace Polyp- by PulseAudio output.
r24820: Clarify that -vo gl bicubic filtering is B-spline, not polynomial
r24837: Spelling, vf_ow parameters are optional.
r24875: program switching in demux_lavf
r24897+r24909 (already applied by Diego in r24955, at least in parts - did not check)
r24924: Add audio filter scaletempo
r24950: Explain new ao_pulse option syntax
r24952, r24953, r24954: (appears to be in current version already, probably due to r24955)
r25134: Fix a wrong cmdline example of using -menu-chroot.
author | kraymer |
---|---|
date | Mon, 30 Jun 2008 12:40:11 +0000 |
parents | 4129c8cfa742 |
children | e45b08f2f5d3 |
line wrap: on
line source
#ifndef MPLAYER_AUDIO_OUT_INTERNAL_H #define MPLAYER_AUDIO_OUT_INTERNAL_H // 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\ }; #endif /* MPLAYER_AUDIO_OUT_INTERNAL_H */