From b204d3b95e185c44f57d311366756b9bf0c94ec7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 12 Oct 2015 09:36:29 +0100 Subject: [PATCH] liveadder: latency property is an uint64 in audiomixer --- gst/audiomixer/gstaudiomixer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/audiomixer/gstaudiomixer.c b/gst/audiomixer/gstaudiomixer.c index d3ddcdf4f9..2ae06335aa 100644 --- a/gst/audiomixer/gstaudiomixer.c +++ b/gst/audiomixer/gstaudiomixer.c @@ -794,7 +794,8 @@ G_DEFINE_TYPE (GstLiveAdder, gst_live_adder, GST_TYPE_AUDIO_MIXER); static void gst_live_adder_init (GstLiveAdder * self) { - g_object_set (self, "latency", 30 * GST_MSECOND, NULL); + /* FIXME: old live adder had latency as uint property */ + g_object_set (self, "latency", (guint64) 30 * GST_MSECOND, NULL); } static void