diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-11-04 22:49:38 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-11-04 22:49:38 +0000 |
commit | acf66c220c64579207eeb031c7e0878a6ed28dfa (patch) | |
tree | 99cab4efb9f35223e6ae9a289a50d3a9a891b3b4 /src/audio_out | |
parent | 0bccaad39334eb5e5a22d4a32ff114c42129be55 (diff) | |
download | xine-lib-0.9.4.tar.gz xine-lib-0.9.4.tar.bz2 |
Bill's force audio rate patches, preparing for 0.9.40.9.4
CVS patchset: 953
CVS date: 2001/11/04 22:49:38
Diffstat (limited to 'src/audio_out')
-rw-r--r-- | src/audio_out/audio_oss_out.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/audio_out/audio_oss_out.c b/src/audio_out/audio_oss_out.c index 8c169df46..b1598005d 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.47 2001/10/21 23:14:08 miguelfreitas Exp $ + * $Id: audio_oss_out.c,v 1.48 2001/11/04 22:49:38 guenter Exp $ * * 20-8-2001 First implementation of Audio sync and Audio driver separation. * Copyright (C) 2001 James Courtier-Dutton James@superbug.demon.co.uk @@ -189,10 +189,6 @@ static int ao_oss_open(ao_driver_t *this_gen, ioctl(this->audio_fd,SNDCTL_DSP_SAMPLESIZE,&tmp); tmp = this->input_sample_rate; -#ifdef FORCE_44K_MAX - if(tmp > 44100) - tmp = 44100; -#endif if (ioctl(this->audio_fd,SNDCTL_DSP_SPEED, &tmp) == -1) { printf ("audio_oss_out: warning: sampling rate %d Hz not supported, trying 44100 Hz\n", this->input_sample_rate); |