mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
appsrc: Decrease log level for item drop
Leaky appsrc feature was implemented similar to queue. Dropping item is a normal case because it is configured so. Warning messages is too severe for this event. Level changed to DEBUG just like in queue. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8147>
This commit is contained in:
parent
5aadb25d0e
commit
477d330dee
1 changed files with 1 additions and 1 deletions
|
@ -2470,7 +2470,7 @@ gst_app_src_push_internal (GstAppSrc * appsrc, GstBuffer * buffer,
|
|||
break;
|
||||
}
|
||||
|
||||
GST_WARNING_OBJECT (appsrc, "Dropping old item %" GST_PTR_FORMAT, item);
|
||||
GST_DEBUG_OBJECT (appsrc, "Dropping old item %" GST_PTR_FORMAT, item);
|
||||
|
||||
gst_app_src_update_queued_pop (appsrc, item, FALSE);
|
||||
gst_mini_object_unref (item);
|
||||
|
|
Loading…
Reference in a new issue