diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-08-28 22:52:57 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-08-28 22:52:57 +0000 |
commit | e9cae6267fe66a03633426b6283de867e6eb0b65 (patch) | |
tree | 07d32c7b2e3c36150d5fc2746fe9bf20b6ee5dab /src/xine-engine/metronom.c | |
parent | 07bc3636a8a0a1906624d7886c244e83f14b5236 (diff) | |
download | xine-lib-e9cae6267fe66a03633426b6283de867e6eb0b65.tar.gz xine-lib-e9cae6267fe66a03633426b6283de867e6eb0b65.tar.bz2 |
Fixed sed pattern. Reintroduce XINE_PAUSE status. Fixed deadlock in xine_pause. Fixed
many pause/unpause case. Syncing xine.h.tmpl.in with xine_internal.h about
status (Please, don't forget to update the public API header, that made
troubles).
CVS patchset: 513
CVS date: 2001/08/28 22:52:57
Diffstat (limited to 'src/xine-engine/metronom.c')
-rw-r--r-- | src/xine-engine/metronom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/metronom.c b/src/xine-engine/metronom.c index 6a872e5aa..bfe3d5393 100644 --- a/src/xine-engine/metronom.c +++ b/src/xine-engine/metronom.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: metronom.c,v 1.22 2001/08/26 09:38:23 jcdutton Exp $ + * $Id: metronom.c,v 1.23 2001/08/28 22:52:57 f1rmb Exp $ */ #ifdef HAVE_CONFIG_H @@ -340,8 +340,8 @@ static void metronom_audio_stream_end (metronom_t *this) { } this->audio_stream_running = 0; + while (this->video_stream_running) { - printf ("waiting for video to end...\n"); pthread_cond_wait (&this->video_ended, &this->lock); } |