diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-19 19:10:41 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-19 19:10:41 +0000 |
commit | da2bdc9c2824ecdbcb0bae82e762c44871bc1074 (patch) | |
tree | f0bbd1b0e5eec2cf6665c44fc718421cd20e1cb8 | |
parent | 55f0ca12897a4f68073f1da54f9a2400893029e0 (diff) | |
download | xine-lib-da2bdc9c2824ecdbcb0bae82e762c44871bc1074.tar.gz xine-lib-da2bdc9c2824ecdbcb0bae82e762c44871bc1074.tar.bz2 |
reverting a change i did yesterday (discarding buffers on close might not
be a good idea...)
CVS patchset: 1080
CVS date: 2001/11/19 19:10:41
-rw-r--r-- | src/xine-engine/audio_out.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/xine-engine/audio_out.c b/src/xine-engine/audio_out.c index daebeace1..2e648107f 100644 --- a/src/xine-engine/audio_out.c +++ b/src/xine-engine/audio_out.c @@ -17,7 +17,7 @@ * along with self program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_out.c,v 1.33 2001/11/19 18:58:04 miguelfreitas Exp $ + * $Id: audio_out.c,v 1.34 2001/11/19 19:10:41 miguelfreitas Exp $ * * 22-8-2001 James imported some useful AC3 sections from the previous alsa driver. * (c) 2001 Andy Lo A Foe <andy@alsaplayer.org> @@ -342,8 +342,7 @@ static void *ao_loop (void *this_gen) { * output audio data synced to master clock */ - if (gap < (-1 * this->gap_tolerance) || !this->audio_loop_running - || !buf->num_frames) { + if (gap < (-1 * this->gap_tolerance) || !buf->num_frames) { /* drop package */ |