Mercurial > mplayer.hg
view libao2/audio_out_internal.h @ 7739:5b8df1d63b6d
MSGL_DBG2 -> MSGL_INFO
'cause we need to see this msg
pointed out by Kim Minh Kaplan
author | attila |
---|---|
date | Mon, 14 Oct 2002 20:51:18 +0000 |
parents | 981a9e5118ce |
children | 12b1790038b0 |
line wrap: on
line source
// prototypes: //static ao_info_t info; static int control(int cmd,int arg); static int init(int rate,int channels,int format,int flags); static void uninit(); static void reset(); static int get_space(); static int play(void* data,int len,int flags); static float get_delay(); static void audio_pause(); static void audio_resume(); #define LIBAO_EXTERN(x) ao_functions_t audio_out_##x =\ {\ &info,\ control,\ init,\ uninit,\ reset,\ get_space,\ play,\ get_delay,\ audio_pause,\ audio_resume\ };