diff options
author | Philipp Hahn <pmhahn@users.sourceforge.net> | 2002-07-01 11:28:29 +0000 |
---|---|---|
committer | Philipp Hahn <pmhahn@users.sourceforge.net> | 2002-07-01 11:28:29 +0000 |
commit | 72d793fee9b3825c7f59778e4e67301066ba6024 (patch) | |
tree | b1dc493c16c6058c83e8cadc8c578834e2bd515b /src | |
parent | 02be4cdc85db509fb7103484104aa5bd7d792dc2 (diff) | |
download | xine-lib-72d793fee9b3825c7f59778e4e67301066ba6024.tar.gz xine-lib-72d793fee9b3825c7f59778e4e67301066ba6024.tar.bz2 |
Remove unused variable
CVS patchset: 2179
CVS date: 2002/07/01 11:28:29
Diffstat (limited to 'src')
-rw-r--r-- | src/audio_out/audio_alsa_out.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/audio_out/audio_alsa_out.c b/src/audio_out/audio_alsa_out.c index 716fcb7a2..b375184ea 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.60 2002/07/01 11:27:04 pmhahn Exp $ + * $Id: audio_alsa_out.c,v 1.61 2002/07/01 11:28:29 pmhahn Exp $ */ #ifdef HAVE_CONFIG_H @@ -155,7 +155,7 @@ static int ao_alsa_open(ao_driver_t *this_gen, uint32_t bits, uint32_t rate, int snd_pcm_sw_params_t *swparams; snd_pcm_sframes_t buffer_size; snd_pcm_sframes_t period_size,tmp; - int err, step; + int err; // int open_mode=1; //NONBLOCK int open_mode=0; //BLOCK @@ -291,7 +291,6 @@ static int ao_alsa_open(ao_driver_t *this_gen, uint32_t bits, uint32_t rate, int printf ("audio_alsa_out: buffer time not available\n"); goto __close; } - step = 2; period_size = 128; do { period_size *= 2; |