mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
track-element: No need to log when prio == MIN_GNL_PRIO.
This commit is contained in:
parent
e0b89ce691
commit
78e19edad9
1 changed files with 1 additions and 1 deletions
|
@ -342,7 +342,7 @@ _set_priority (GESTimelineElement * element, guint32 priority)
|
|||
{
|
||||
GESTrackElement *object = GES_TRACK_ELEMENT (element);
|
||||
|
||||
if (priority <= MIN_GNL_PRIO) {
|
||||
if (priority < MIN_GNL_PRIO) {
|
||||
GST_INFO_OBJECT (element, "Priority (%d) < MIN_GNL_PRIO, setting it to %d",
|
||||
priority, MIN_GNL_PRIO);
|
||||
priority = MIN_GNL_PRIO;
|
||||
|
|
Loading…
Reference in a new issue