mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
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:
parent
102a703367
commit
6f13524166
2 changed files with 8 additions and 0 deletions
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue