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/xine.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/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 75416701a..3b5b47347 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.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: xine.c,v 1.162 2002/10/03 17:46:29 jkeil Exp $ + * $Id: xine.c,v 1.163 2002/10/12 10:36:52 jcdutton Exp $ * * top-level xine functions * @@ -231,7 +231,7 @@ static void xine_set_speed_internal (xine_t *this, int speed) { void xine_stop_internal (xine_t *this) { - printf ("xine_stop\n"); + printf ("xine_stop. status before = %d\n", this->status); if (this->status == XINE_STATUS_STOP) { printf ("xine_stop ignored\n"); |