mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-14 03:15:47 +00:00
liveadder: latency property is an uint64 in audiomixer
This commit is contained in:
parent
8cce2ccbf2
commit
45081ef6f1
1 changed files with 2 additions and 1 deletions
|
@ -794,7 +794,8 @@ G_DEFINE_TYPE (GstLiveAdder, gst_live_adder, GST_TYPE_AUDIO_MIXER);
|
||||||
static void
|
static void
|
||||||
gst_live_adder_init (GstLiveAdder * self)
|
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
|
static void
|
||||||
|
|
Loading…
Reference in a new issue