mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +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 (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) {
|
if (GST_EVENT_TYPE (evdata->event) == GST_EVENT_SEEK) {
|
||||||
GstQuery *seeking = gst_query_new_seeking (GST_FORMAT_TIME);
|
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)) {
|
if (gst_pad_query (peer, seeking)) {
|
||||||
gboolean seekable;
|
gboolean seekable;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue