mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
ges: fix compiler warnings
This commit is contained in:
parent
a35a29a810
commit
d5622071f5
2 changed files with 2 additions and 4 deletions
|
@ -623,8 +623,7 @@ ges_timeline_object_set_priority (GESTimelineObject * object, guint priority)
|
|||
GESTrackObject *tr;
|
||||
ObjectMapping *map;
|
||||
|
||||
GST_DEBUG ("object:%p, priority:%" GST_TIME_FORMAT,
|
||||
object, GST_TIME_ARGS (priority));
|
||||
GST_DEBUG ("object:%p, priority:%" G_GUINT32_FORMAT, object, priority);
|
||||
|
||||
object->priv->ignore_notifies = TRUE;
|
||||
|
||||
|
|
|
@ -372,8 +372,7 @@ static inline gboolean
|
|||
ges_track_object_set_priority_internal (GESTrackObject * object,
|
||||
guint32 priority)
|
||||
{
|
||||
GST_DEBUG ("object:%p, priority:%" GST_TIME_FORMAT,
|
||||
object, GST_TIME_ARGS (priority));
|
||||
GST_DEBUG ("object:%p, priority:%" G_GUINT32_FORMAT, object, priority);
|
||||
|
||||
if (object->priv->gnlobject != NULL) {
|
||||
if (G_UNLIKELY (priority == object->priority))
|
||||
|
|
Loading…
Reference in a new issue