mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
aggregator: Convert GST_ERROR_OBJECT() for seek events to GST_DEBUG_OBJECT()
This commit is contained in:
parent
bec6d61e42
commit
ced0aa800a
1 changed files with 2 additions and 3 deletions
|
@ -1570,12 +1570,11 @@ gst_aggregator_event_forward_func (GstPad * pad, gpointer user_data)
|
|||
}
|
||||
|
||||
if (ret == FALSE) {
|
||||
if (GST_EVENT_TYPE (evdata->event) == GST_EVENT_SEEK)
|
||||
GST_ERROR_OBJECT (pad, "Event %" GST_PTR_FORMAT " failed", evdata->event);
|
||||
|
||||
if (GST_EVENT_TYPE (evdata->event) == GST_EVENT_SEEK) {
|
||||
GstQuery *seeking = gst_query_new_seeking (GST_FORMAT_TIME);
|
||||
|
||||
GST_DEBUG_OBJECT (pad, "Event %" GST_PTR_FORMAT " failed", evdata->event);
|
||||
|
||||
if (gst_pad_query (peer, seeking)) {
|
||||
gboolean seekable;
|
||||
|
||||
|
|
Loading…
Reference in a new issue