mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
[MOVED FROM GST-P-FARSIGHT] Add missing semicolon (did anyone test this?!)
20080429140802-53eee-41fdb4391eddb125b7e34019427cfa5dc8afd6c0.gz
This commit is contained in:
parent
1c57d2d70c
commit
c6df5201b0
1 changed files with 1 additions and 1 deletions
|
@ -656,7 +656,7 @@ gst_live_adder_query (GstPad * pad, GstQuery * query)
|
||||||
if (max_latency < G_MAXUINT64 - my_latency)
|
if (max_latency < G_MAXUINT64 - my_latency)
|
||||||
max_latency += my_latency;
|
max_latency += my_latency;
|
||||||
else
|
else
|
||||||
max_latency = G_MAXUINT64
|
max_latency = G_MAXUINT64;
|
||||||
gst_query_set_latency (query, TRUE, min_latency, max_latency);
|
gst_query_set_latency (query, TRUE, min_latency, max_latency);
|
||||||
GST_DEBUG_OBJECT (adder, "Calculated total latency : min %"
|
GST_DEBUG_OBJECT (adder, "Calculated total latency : min %"
|
||||||
GST_TIME_FORMAT " max %" GST_TIME_FORMAT,
|
GST_TIME_FORMAT " max %" GST_TIME_FORMAT,
|
||||||
|
|
Loading…
Reference in a new issue