mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
audiolatency: Fix cerbero build failure
Average latency is a 64-bit integer. https://ci.gstreamer.net/job/GStreamer-master/9962/
This commit is contained in:
parent
4d1b6882be
commit
307865ec7a
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ gst_audiolatency_get_average_latency (GstAudioLatency * self)
|
||||||
static void
|
static void
|
||||||
gst_audiolatency_set_latency (GstAudioLatency * self, gint64 latency)
|
gst_audiolatency_set_latency (GstAudioLatency * self, gint64 latency)
|
||||||
{
|
{
|
||||||
gint avg_latency;
|
gint64 avg_latency;
|
||||||
|
|
||||||
GST_OBJECT_LOCK (self);
|
GST_OBJECT_LOCK (self);
|
||||||
self->latencies[self->next_latency_idx] = latency;
|
self->latencies[self->next_latency_idx] = latency;
|
||||||
|
|
Loading…
Reference in a new issue