diff options
author | phintuka <phintuka> | 2007-09-12 13:49:38 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2007-09-12 13:49:38 +0000 |
commit | a48c7e615ee1bfc3ffa0c19ce440f18202baaf6e (patch) | |
tree | 66090125a4ae0a7216a8ceabd00e47ddff494b87 /config.c | |
parent | 3a73fe488595d16a196be4ae0f1dabcd8b91ad94 (diff) | |
download | xineliboutput-a48c7e615ee1bfc3ffa0c19ce440f18202baaf6e.tar.gz xineliboutput-a48c7e615ee1bfc3ffa0c19ce440f18202baaf6e.tar.bz2 |
Remove arts audio output support. From xine-lib ChangeLog:
xine-lib (1.1.90) (Unreleased)
* Remove aRTs output plugin; ALSA's DMix can allow to run both xine and aRTs
at the same time for Linux, and if other operating systems lacks a proper
software mixing facility you can consider alternative daemons. Note: aRTs
will not be present in KDE 4.
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: config.c,v 1.44 2007-09-12 13:39:01 phintuka Exp $ + * $Id: config.c,v 1.45 2007-09-12 13:49:38 phintuka Exp $ * */ @@ -87,7 +87,7 @@ const char *config_t::s_fieldOrder[ FIELD_ORDER_count+1 ] = { }; const char *config_t::s_audioDrivers[ AUDIO_DRIVER_count+1 ] = { - "auto", "alsa", "oss", "none", "arts", "esd", "jack", + "auto", "alsa", "oss", "none", "esd", "jack", NULL }; @@ -96,7 +96,6 @@ const char *config_t::s_audioDriverNames[ AUDIO_DRIVER_count+1 ] = { "Alsa", "OSS", trNOOP("no audio"), - "Arts", "ESD", "Jack", NULL |