mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
liveadder: latency property is an uint64 in audiomixer
This commit is contained in:
parent
3ffdb8a6e4
commit
b204d3b95e
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
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue