Home
last modified time | relevance | path

Searched refs:internal_sinkpad (Results 1 – 3 of 3) sorted by relevance

/third_party/gstreamer/gstplugins_bad/gst/autoconvert/
Dgstautoconvert.c427 GstPad *internal_sinkpad = NULL; in gst_auto_convert_add_element() local
461 internal_sinkpad = in gst_auto_convert_add_element()
467 if (!internal_sinkpad || !internal_srcpad) { in gst_auto_convert_add_element()
471 if (internal_sinkpad) in gst_auto_convert_add_element()
472 gst_object_unref (internal_sinkpad); in gst_auto_convert_add_element()
477 internal_sinkpad); in gst_auto_convert_add_element()
481 gst_pad_set_active (internal_sinkpad, TRUE); in gst_auto_convert_add_element()
485 g_object_set_qdata (G_OBJECT (internal_sinkpad), parent_quark, autoconvert); in gst_auto_convert_add_element()
487 gst_pad_set_chain_function (internal_sinkpad, in gst_auto_convert_add_element()
489 gst_pad_set_chain_list_function (internal_sinkpad, in gst_auto_convert_add_element()
[all …]
/third_party/gstreamer/gstplugins_base/gst/encoding/
Dgstsmartencoder.c68 gst_element_remove_pad (GST_ELEMENT (self), self->internal_sinkpad); in smart_encoder_reset()
73 self->internal_sinkpad = NULL; in smart_encoder_reset()
204 self->internal_sinkpad = gst_pad_new ("internal_sink", GST_PAD_SINK); in setup_recoder_pipeline()
205 gst_pad_set_iterate_internal_links_function (self->internal_sinkpad, NULL); in setup_recoder_pipeline()
206 if (!gst_element_add_pad (GST_ELEMENT (self), self->internal_sinkpad)) { in setup_recoder_pipeline()
208 self->internal_sinkpad); in setup_recoder_pipeline()
212 gst_pad_set_chain_function (self->internal_sinkpad, in setup_recoder_pipeline()
214 gst_pad_set_event_function (self->internal_sinkpad, in setup_recoder_pipeline()
216 gst_pad_set_active (self->internal_sinkpad, TRUE); in setup_recoder_pipeline()
233 gst_pad_link_full (tmppad, self->internal_sinkpad, in setup_recoder_pipeline()
[all …]
Dgstsmartencoder.h59 GstPad *internal_sinkpad; member