GNOME Bugzilla – Bug 741495
tests/aggregator: Use correct type when setting property
Last modified: 2014-12-14 10:29:06 UTC
According to gst_aggregator_class_init() the property "timeout" is declared as an int64, yet the unittest still tries to set it as an int: g_object_set (agg, "timeout", 1000 /* 1 us */ , NULL); Instead the literal 1000 ought to be cast to a 64-bit type. The attached patch fixes this, and the unittests still run successfully.
Created attachment 292680 [details] [review] Proposed patch.
this was meant to be raised for gst-plugins-bad, not -base. can you change that or at least apply the patch in the right place? :)
commit 01dc7edd8bbaa1fb807202a59256390c3b786da5 Author: Sebastian Rasmussen <sebras@hotmail.com> Date: Sun Dec 14 01:29:26 2014 +0100 tests/aggregator: Use correct type when setting property Fixes https://bugzilla.gnome.org/show_bug.cgi?id=741495