From a2ee90a8529677770f8bf8c39ae2cfdb6ce7b7dc Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Sun, 1 Jun 2014 16:51:08 +0300 Subject: audio_sndio_out: re-enable multichannel support --- src/audio_out/audio_sndio_out.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src') diff --git a/src/audio_out/audio_sndio_out.c b/src/audio_out/audio_sndio_out.c index 55d479963..d1b6cf2e0 100644 --- a/src/audio_out/audio_sndio_out.c +++ b/src/audio_out/audio_sndio_out.c @@ -105,7 +105,6 @@ static int ao_sndio_open(ao_driver_t *this_gen, case AO_CAP_MODE_STEREO: par.pchan = 2; break; -#if 0 case AO_CAP_MODE_4CHANNEL: par.pchan = 4; break; @@ -114,7 +113,6 @@ static int ao_sndio_open(ao_driver_t *this_gen, case AO_CAP_MODE_5_1CHANNEL: par.pchan = 6; break; -#endif default: xprintf (this->xine, XINE_VERBOSITY_DEBUG, "audio_sndio_out: ao_sndio_open does not support the requested mode: 0x%X\n", @@ -335,10 +333,8 @@ static ao_driver_t *open_plugin (audio_driver_class_t *class_gen, const void *da * Set capabilities */ this->capabilities = AO_CAP_MODE_MONO | AO_CAP_MODE_STEREO | -#if 0 AO_CAP_MODE_4CHANNEL | AO_CAP_MODE_4_1CHANNEL | AO_CAP_MODE_5CHANNEL | AO_CAP_MODE_5_1CHANNEL | -#endif AO_CAP_MIXER_VOL | AO_CAP_MUTE_VOL | AO_CAP_8BITS | AO_CAP_16BITS; -- cgit v1.2.3