diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-10-12 10:36:50 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-10-12 10:36:50 +0000 |
commit | bc0605c9bf7dd1a7245ea64c5ff3e4919522635f (patch) | |
tree | bb9368298abf9610d2c05fbaef42d2a586860c2b /src/xine-engine/audio_out.c | |
parent | 6b8cf29fa2eab3ea64d5fc048f9ec3a281fecf03 (diff) | |
download | xine-lib-bc0605c9bf7dd1a7245ea64c5ff3e4919522635f.tar.gz xine-lib-bc0605c9bf7dd1a7245ea64c5ff3e4919522635f.tar.bz2 |
Make flush of audio work properly.
CVS patchset: 2813
CVS date: 2002/10/12 10:36:50
Diffstat (limited to 'src/xine-engine/audio_out.c')
-rw-r--r-- | src/xine-engine/audio_out.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/xine-engine/audio_out.c b/src/xine-engine/audio_out.c index b82072d60..564ed71ab 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.67 2002/10/10 13:12:18 jcdutton Exp $ + * $Id: audio_out.c,v 1.68 2002/10/12 10:36:52 jcdutton Exp $ * * 22-8-2001 James imported some useful AC3 sections from the previous alsa driver. * (c) 2001 Andy Lo A Foe <andy@alsaplayer.org> @@ -459,9 +459,13 @@ static void *ao_loop (void *this_gen) { case 2: { this->metronom->allow_full_ao_fill_gap = 1; +#ifdef LOG printf ("audio_out:loop:pause: I feel sleepy.\n"); +#endif xine_usec_sleep (10000); +#ifdef LOG printf ("audio_out:loop:pause: I wake up.\n"); +#endif break; } } |