From: Stefan Kost Date: Wed, 26 Nov 2008 21:19:47 +0000 (+0000) Subject: tests/examples/level/level-example.c: Set fakesink to sync. Otherwise people might... X-Git-Tag: 1.19.3~509^2~10880 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6f13524166392a35c8577bba55da987e287e6991;p=platform%2Fupstream%2Fgstreamer.git 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. --- diff --git a/ChangeLog b/ChangeLog index 14bbd81..5123a4c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-11-26 Stefan Kost + + * 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 * tests/icles/.cvsignore: diff --git a/tests/examples/level/level-example.c b/tests/examples/level/level-example.c index bab167f..9bce5b4 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);