# HG changeset patch # User atmos4 # Date 1022550760 0 # Node ID 0398cb49fe5e6b42845a2e6fedf87571266352a3 # Parent 7accc81d6f04965844d85aba77cb76d0ff64cf8b aRts audio out support by Michele Balistreri diff -r 7accc81d6f04 -r 0398cb49fe5e Makefile --- a/Makefile Mon May 27 18:05:26 2002 +0000 +++ b/Makefile Tue May 28 01:52:40 2002 +0000 @@ -42,7 +42,7 @@ V_LIBS = $(X_LIB) $(MP1E_LIB) $(GGI_LIB) $(MLIB_LIB) $(SDL_LIB) $(SVGA_LIB) $(AA_LIB) $(DIRECTFB_LIB) AO_LIBS = -Llibao2 -lao2 -A_LIBS = $(ALSA_LIB) $(NAS_LIB) $(MAD_LIB) $(VORBIS_LIB) $(FAAD_LIB) $(SGIAUDIO_LIB) +A_LIBS = $(ALSA_LIB) $(ARTS_LIB) $(NAS_LIB) $(MAD_LIB) $(VORBIS_LIB) $(FAAD_LIB) $(SGIAUDIO_LIB) CODEC_LIBS = -Llibmpcodecs -lmpcodecs -Lmp3lib -lMP3 -Lliba52 -la52 -Llibmpeg2 -lmpeg2 $(AV_LIB) $(FAME_LIB) COMMON_LIBS = $(CODEC_LIBS) -Llibmpdemux -lmpdemux $(NEW_INPUT_LIB) $(LIB_LOADER) $(A_LIBS) $(CSS_LIB) $(ARCH_LIB) -Lpostproc -lpostproc $(DECORE_LIB) -Llinux -losdep $(TERMCAP_LIB) $(STREAMING_LIB) $(Z_LIB) $(GTK_LIBS) $(PNG_LIB) $(JPEG_LIB) $(GIF_LIB) -lm diff -r 7accc81d6f04 -r 0398cb49fe5e configure --- a/configure Mon May 27 18:05:26 2002 +0000 +++ b/configure Tue May 28 01:52:40 2002 +0000 @@ -185,6 +185,7 @@ Audio: --disable-ossaudio disable OSS sound support [autodetect] + --disable-arts disable aRts sound support [autodetect] --disable-alsa disable alsa sound support [autodetect] --disable-sunaudio disable Sun sound support [autodetect] --disable-mad disable mad audio support [autodetect] @@ -838,6 +839,7 @@ _iconv=auto _rtc=auto _ossaudio=auto +_arts=auto _mad=auto _vorbis=auto _faad=auto @@ -948,6 +950,8 @@ --disable-libdv) _libdv=no ;; --enable-ossaudio) _ossaudio=yes ;; --disable-ossaudio) _ossaudio=no ;; + --enable-arts) _arts=yes ;; + --disable-arts) _arts=no ;; --enable-mad) _mad=yes ;; --disable-mad) _mad=no ;; --enable-vorbis) _vorbis=yes ;; @@ -2672,6 +2676,24 @@ echores "$_ossaudio" +echocheck "aRts" +if test "$_arts" = auto ; then + _arts=no + if ( artsc-config --version >> /dev/null ) ; then + _arts=yes + fi +fi + +if test "$_arts" = yes ; then + _def_arts='#define USE_ARTS 1' + _aosrc="$_aosrc ao_arts.c" + _aomodules="arts $_aomodules" + _ld_arts=`artsc-config --libs` + _inc_arts=`artsc-config --cflags` +fi +echores "$_arts" + + echocheck "ALSA audio" if test "$_alsa" != no ; then _alsa=no @@ -3808,6 +3830,8 @@ ALSA_LIB = $_ld_alsa NAS_LIB = $_ld_nas MAD_LIB = $_ld_mad +ARTS_LIB = $_ld_arts +ARTS_INC = $_inc_arts VORBIS_LIB = $_ld_vorbis FAAD_LIB = $_ld_faad SGIAUDIO_LIB = $_ld_sgiaudio @@ -4066,6 +4090,7 @@ $_def_ossaudio_devmixer $_def_alsa5 $_def_alsa9 +$_def_arts $_def_sys_asoundlib_h $_def_alsa_asoundlib_h $_def_sunaudio diff -r 7accc81d6f04 -r 0398cb49fe5e libao2/Makefile --- a/libao2/Makefile Mon May 27 18:05:26 2002 +0000 +++ b/libao2/Makefile Tue May 28 01:52:40 2002 +0000 @@ -8,7 +8,7 @@ OBJS=$(SRCS:.c=.o) -CFLAGS = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DXR2_INC) $(DVB_INC) +CFLAGS = $(OPTFLAGS) -I. -I.. $(ARTS_INC) $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DXR2_INC) $(DVB_INC) .SUFFIXES: .c .o diff -r 7accc81d6f04 -r 0398cb49fe5e libao2/ao_arts.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libao2/ao_arts.c Tue May 28 01:52:40 2002 +0000 @@ -0,0 +1,117 @@ +/* + * ao_arts - aRts audio output driver for MPlayer + * + * Michele Balistreri + * + * This driver is distribuited under terms of GPL + * + */ + +#include +#include + +#include "audio_out.h" +#include "audio_out_internal.h" +#include "afmt.h" +#include "../config.h" +#include "../mp_msg.h" + +#define OBTAIN_BITRATE(a) (((a != AFMT_U8) || (a != AFMT_S8)) ? 16 : 8) + +static arts_stream_t stream; + +static ao_info_t info = +{ + "aRts audio output", + "arts", + "Michele Balistreri ", + "" +}; + +LIBAO_EXTERN(arts) + +static int control(int cmd, int arg) +{ + return(CONTROL_UNKNOWN); +} + +static int init(int rate_hz, int channels, int format, int flags) +{ + int err; + int frag_spec; + + if(err=arts_init()) { + mp_msg(MSGT_AO, MSGL_ERR, "AO: [arts] %s\n", arts_error_text(err)); + return 0; + } + + else + mp_msg(MSGT_AO, MSGL_INFO, "AO: [arts] Connected to sound server\n"); + + ao_data.format = format; + ao_data.channels = channels; + ao_data.samplerate = rate_hz; + ao_data.bps = (rate_hz*channels); + ao_data.buffersize = 4096; + + if(format != AFMT_U8 && format != AFMT_S8) + ao_data.bps*=2; + + for (frag_spec = 0; (0x01<