From 6bb455cdc9da41aa72ecf8c8b207ec29a3f933c5 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sun, 2 Jun 2002 13:25:40 +0000 Subject: Make elements nanoseconds aware Original commit message from CVS: Make elements nanoseconds aware --- gst/goom/gstgoom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/goom') diff --git a/gst/goom/gstgoom.c b/gst/goom/gstgoom.c index 5b9f404f..506ec82c 100644 --- a/gst/goom/gstgoom.c +++ b/gst/goom/gstgoom.c @@ -281,7 +281,7 @@ gst_goom_chain (GstPad *pad, GstBuffer *bufin) GST_BUFFER_TIMESTAMP (bufout) = goom->next_time; GST_BUFFER_FLAG_SET (bufout, GST_BUFFER_DONTFREE); - goom->next_time += 1000000LL / goom->fps; + goom->next_time += GST_SECOND / goom->fps; gst_pad_push (goom->srcpad, bufout); -- cgit