summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2002-02-03 02:45:33 +0000
committerWim Taymans <wim.taymans@gmail.com>2002-02-03 02:45:33 +0000
commit8c47de1c656f6603edd0e50ca0a2a1c8e3867aa1 (patch)
tree0a29016e84f7b18c8a478aba3c7e31703f276a8e /gst
parent2da71acdf5256024081bcccfcdf952b9b8badd63 (diff)
Added fps control to goom
Original commit message from CVS: Added fps control to goom
Diffstat (limited to 'gst')
-rw-r--r--gst/goom/gstgoom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/goom/gstgoom.c b/gst/goom/gstgoom.c
index f2f8ad72..d03aacba 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 += 40000LL;
+ goom->next_time += 1000000LL / goom->fps;
gst_pad_push (goom->srcpad, bufout);