diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-20 00:04:50 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-20 00:04:50 +0000 |
commit | 71bd3ff4ab60d4ae510b1d7fb8d0ffe80f8c227d (patch) | |
tree | 0d0026c92fcd96fd3c73a826e8efc07d128df796 | |
parent | 2802ec520af5d4ef87d2030789f7df7a2a0da0c6 (diff) | |
download | xine-lib-71bd3ff4ab60d4ae510b1d7fb8d0ffe80f8c227d.tar.gz xine-lib-71bd3ff4ab60d4ae510b1d7fb8d0ffe80f8c227d.tar.bz2 |
Mark speaker arrangement array constant.
CVS patchset: 8607
CVS date: 2007/02/20 00:04:50
-rw-r--r-- | src/audio_out/audio_alsa_out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_out/audio_alsa_out.c b/src/audio_out/audio_alsa_out.c index da8b87fc5..24d597d50 100644 --- a/src/audio_out/audio_alsa_out.c +++ b/src/audio_out/audio_alsa_out.c @@ -26,7 +26,7 @@ * (c) 2001 James Courtier-Dutton <James@superbug.demon.co.uk> * * - * $Id: audio_alsa_out.c,v 1.165 2006/09/08 20:40:34 miguelfreitas Exp $ + * $Id: audio_alsa_out.c,v 1.166 2007/02/20 00:04:50 dgp85 Exp $ */ #ifdef HAVE_CONFIG_H @@ -1321,7 +1321,7 @@ static ao_driver_t *open_plugin (audio_driver_class_t *class_gen, const void *da char *pcm_device; snd_pcm_hw_params_t *params; /* for usability reasons, keep this in sync with audio_oss_out.c */ - static char *speaker_arrangement[] = {"Mono 1.0", "Stereo 2.0", "Headphones 2.0", "Stereo 2.1", + static const char *speaker_arrangement[] = {"Mono 1.0", "Stereo 2.0", "Headphones 2.0", "Stereo 2.1", "Surround 3.0", "Surround 4.0", "Surround 4.1", "Surround 5.0", "Surround 5.1", "Surround 6.0", "Surround 6.1", "Surround 7.1", "Pass Through", NULL}; #define MONO 0 |