view libao2/audio_out_internal.h @ 19118:89c3cff711f3

r19087: Remove support for obsolete and non-free divx4/odivx libraries. r18916: Modifies behavior of -edlout r18818: kill unused message string MSGTR_LIBVO_MGA_MgaInvalidOutputFormat r18816: [directly applied by attila] r18815: fail with an error if the source resolution is larger than 1023x1023 when using -vo (x)mga r18716: Remove misleading Encrypted VOB message
author kraymer
date Sun, 16 Jul 2006 15:46:19 +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\
};