mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-28 11:55:39 +00:00
query: fix compiler warning
C4146: unary minus operator applied to unsigned type, result still unsigned
This commit is contained in:
parent
391f767098
commit
c7bb52934e
1 changed files with 1 additions and 1 deletions
|
@ -390,7 +390,7 @@ gst_query_new_latency (void)
|
|||
structure = gst_structure_new_id (GST_QUARK (QUERY_LATENCY),
|
||||
GST_QUARK (LIVE), G_TYPE_BOOLEAN, FALSE,
|
||||
GST_QUARK (MIN_LATENCY), G_TYPE_UINT64, G_GUINT64_CONSTANT (0),
|
||||
GST_QUARK (MAX_LATENCY), G_TYPE_UINT64, G_GUINT64_CONSTANT (-1), NULL);
|
||||
GST_QUARK (MAX_LATENCY), G_TYPE_UINT64, GST_CLOCK_TIME_NONE, NULL);
|
||||
|
||||
query = gst_query_new_custom (GST_QUERY_LATENCY, structure);
|
||||
|
||||
|
|
Loading…
Reference in a new issue