Mercurial > mplayer.hg
view libao2/audio_plugin_internal.h @ 13662:efa186bd32a9
Sync with 1.782: Only use S/PDIF output when no other alsa device is set,
allows to use external ac3 decoders.
and 1.781: OSD variant for vo_gl.c that behaves more like the one of other vos.
author | gpoirier |
---|---|
date | Sun, 17 Oct 2004 21:01:57 +0000 |
parents | 12b1790038b0 |
children |
line wrap: on
line source
// prototypes: static int control(int cmd, void *arg); static int init(); static void uninit(); static void reset(); static int play(); #define LIBAO_PLUGIN_EXTERN(x) ao_plugin_functions_t audio_plugin_##x =\ {\ &info,\ control,\ init,\ uninit,\ reset,\ play,\ };