summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--tests/examples/level/level-example.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 14bbd81c..5123a4ce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-26 Stefan Kost <ensonic@users.sf.net>
+
+ * tests/examples/level/level-example.c:
+ Set fakesink to sync. Otherwise people might question the message
+ interval. Nevertheless the timestamp in the message is what matters.
+
2008-11-25 Wim Taymans <wim.taymans@collabora.co.uk>
* tests/icles/.cvsignore:
diff --git a/tests/examples/level/level-example.c b/tests/examples/level/level-example.c
index bab167fc..9bce5b4f 100644
--- a/tests/examples/level/level-example.c
+++ b/tests/examples/level/level-example.c
@@ -108,6 +108,8 @@ main (int argc, char *argv[])
/* make sure we'll get messages */
g_object_set (G_OBJECT (level), "message", TRUE, NULL);
+ /* run synced and not as fast as we can */
+ g_object_set (G_OBJECT (fakesink), "sync", TRUE, NULL);
bus = gst_element_get_bus (pipeline);
watch_id = gst_bus_add_watch (bus, message_handler, NULL);