mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-08 21:01:36 +00:00
basesrc: add some more debug info
This commit is contained in:
parent
32841d258d
commit
6b0a490740
1 changed files with 5 additions and 1 deletions
|
@ -2810,12 +2810,16 @@ static gboolean
|
|||
gst_base_src_negotiate (GstBaseSrc * basesrc)
|
||||
{
|
||||
GstBaseSrcClass *bclass;
|
||||
gboolean result = TRUE;
|
||||
gboolean result;
|
||||
|
||||
bclass = GST_BASE_SRC_GET_CLASS (basesrc);
|
||||
|
||||
GST_DEBUG_OBJECT (basesrc, "starting negotiation");
|
||||
|
||||
if (G_LIKELY (bclass->negotiate))
|
||||
result = bclass->negotiate (basesrc);
|
||||
else
|
||||
result = TRUE;
|
||||
|
||||
if (G_LIKELY (result)) {
|
||||
GstCaps *caps;
|
||||
|
|
Loading…
Reference in a new issue