Error is request_pad and gst_pad_link_full

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Error is request_pad and gst_pad_link_full

JongIlLee
This post was updated on .
CONTENTS DELETED
The author has deleted this message.
Reply | Threaded
Open this post in threaded view
|

Re: Error is request_pad and gst_pad_link_full

Nicolas Dufresne-4
Le vendredi 17 juin 2016 à 01:28 -0700, JongIlLee a écrit :
> gstreamer-critical **: gst_pad_link_full: assertion 'GST_IS_PAD
> (srcpad)'
> failed
>
> I do not know why the error occurred , such as the above .
>
> Please Ask advice. Thank you.

First step is to find where it happens. GLib has this nice feature that
it can introduce a breakpoint at critical assertions. For this, set
then environment G_DEBUG=fatal_criticals . Then, you can run your
application in GDB and it will break at the assertion location, letting
you know what GstPad you are using that is wrong. It would be a NULL
pointer, a pad that have reached reference 0, or the wrong object
casted to GstPad.

Nicolas
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel

signature.asc (188 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Error is request_pad and gst_pad_link_full

JongIlLee
thank you Nicolas

I need Your help to resolve

Thank you very much!!!