From 6eae42d06c8d20900e60f352cc1d6b4b1b4f4c44 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 27 Dec 2002 23:00:34 +0000 Subject: Update to new element sync API Original commit message from CVS: Update to new element sync API --- ext/sdl/sdlvideosink.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ext') diff --git a/ext/sdl/sdlvideosink.c b/ext/sdl/sdlvideosink.c index 24646775..5c7fdee4 100644 --- a/ext/sdl/sdlvideosink.c +++ b/ext/sdl/sdlvideosink.c @@ -447,8 +447,10 @@ gst_sdlvideosink_chain (GstPad *pad, GstBuffer *buf) GST_DEBUG (0,"videosink: clock wait: %llu", GST_BUFFER_TIMESTAMP(buf)); if (sdlvideosink->clock) { - gst_element_clock_wait (GST_ELEMENT (sdlvideosink), - sdlvideosink->clock, GST_BUFFER_TIMESTAMP (buf), NULL); + GstClockID id = gst_clock_new_single_shot_id (sdlvideosink->clock, GST_BUFFER_TIMESTAMP (buf)); + + gst_element_clock_wait (GST_ELEMENT (sdlvideosink), id, NULL); + gst_clock_id_free (id); } if (!gst_sdlvideosink_lock(sdlvideosink)) { -- cgit v1.2.1