tests/examples/level/level-example.c: Set fakesink to sync. Otherwise people might question the message interval. Nev...

Original commit message from CVS:
* 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.
This commit is contained in:
Stefan Kost 2008-11-26 21:19:47 +00:00
parent 102a703367
commit 6f13524166
2 changed files with 8 additions and 0 deletions

View file

@ -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:

View file

@ -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);