diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-09-01 18:00:16 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2001-09-01 18:00:16 +0000 |
commit | 7c30aa30dd0a14a1314498f11d3a5342ce8d1f45 (patch) | |
tree | 85bccf047a76e4118b8b3f91282e5e5b858a9238 /src/audio_out/audio_oss_out.c | |
parent | 7e0cc0f49a0df188ebac9bb0554dbd6486801c7d (diff) | |
download | xine-lib-7c30aa30dd0a14a1314498f11d3a5342ce8d1f45.tar.gz xine-lib-7c30aa30dd0a14a1314498f11d3a5342ce8d1f45.tar.bz2 |
README updates.
The README.xinerc now contains all config items which might appear.
Some are left for developers to add meanings.
Some typo changes.
CVS patchset: 543
CVS date: 2001/09/01 18:00:16
Diffstat (limited to 'src/audio_out/audio_oss_out.c')
-rw-r--r-- | src/audio_out/audio_oss_out.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/audio_out/audio_oss_out.c b/src/audio_out/audio_oss_out.c index a205be43f..2ff22cc6d 100644 --- a/src/audio_out/audio_oss_out.c +++ b/src/audio_out/audio_oss_out.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_oss_out.c,v 1.35 2001/08/29 00:51:57 guenter Exp $ + * $Id: audio_oss_out.c,v 1.36 2001/09/01 18:00:16 jcdutton Exp $ * * 20-8-2001 First implementation of Audio sync and Audio driver separation. * Copyright (C) 2001 James Courtier-Dutton James@superbug.demon.co.uk @@ -196,7 +196,7 @@ static int ao_oss_open(ao_driver_t *this_gen, this->input_sample_rate, this->output_sample_rate); } /* - * set number of channels / ac3 throughput + * set number of channels / a52 passthrough */ switch (mode) { @@ -547,11 +547,11 @@ ao_driver_t *init_audio_out_plugin (config_values_t *config) { ioctl(audio_fd,SNDCTL_DSP_GETFMTS,&caps); if (caps & AFMT_AC3) { - if (config->lookup_int (config, "ac3_pass_through", 0)) { + if (config->lookup_int (config, "a52_pass_through", 0)) { this->capabilities |= AO_CAP_MODE_A52; - printf ("ac3-pass-through "); + printf ("a/52-pass-through "); } else - printf ("(ac3-pass-through not enabled in .xinerc)"); + printf ("(a/52-pass-through not enabled in .xinerc)"); } printf ("\n"); |