mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 23:30:05 +00:00
gst/gstmessage.c: Use G_GINT64_CONSTANT in varargs function.
Original commit message from CVS: * gst/gstmessage.c: Use G_GINT64_CONSTANT in varargs function.
This commit is contained in:
parent
89b0dc88d2
commit
b35809d96f
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-04-16 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/gstmessage.c:
|
||||
Use G_GINT64_CONSTANT in varargs function.
|
||||
|
||||
2008-04-16 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* gst/gstregistrybinary.c: (gst_registry_binary_initialize_magic):
|
||||
|
|
|
@ -473,8 +473,8 @@ gst_message_new_buffering (GstObject * src, gint percent)
|
|||
GST_QUARK (BUFFERING_MODE), GST_TYPE_BUFFERING_MODE, GST_BUFFERING_STREAM,
|
||||
GST_QUARK (AVG_IN_RATE), G_TYPE_INT, -1,
|
||||
GST_QUARK (AVG_OUT_RATE), G_TYPE_INT, -1,
|
||||
GST_QUARK (BUFFERING_LEFT), G_TYPE_INT64, -1,
|
||||
GST_QUARK (ESTIMATED_TOTAL), G_TYPE_INT64, -1, NULL);
|
||||
GST_QUARK (BUFFERING_LEFT), G_TYPE_INT64, G_GINT64_CONSTANT (-1),
|
||||
GST_QUARK (ESTIMATED_TOTAL), G_TYPE_INT64, G_GINT64_CONSTANT (-1), NULL);
|
||||
message = gst_message_new_custom (GST_MESSAGE_BUFFERING, src, structure);
|
||||
|
||||
return message;
|
||||
|
|
Loading…
Reference in a new issue