Home
last modified time | relevance | path

Searched refs:newpad (Results 1 – 25 of 35) sorted by relevance

12

/third_party/gstreamer/gstplugins_base/ext/gl/
Dgstglmosaic.c191 GstPad *newpad; in gst_gl_mosaic_request_new_pad() local
193 newpad = (GstPad *) in gst_gl_mosaic_request_new_pad()
197 if (newpad == NULL) in gst_gl_mosaic_request_new_pad()
200 gst_child_proxy_child_added (GST_CHILD_PROXY (element), G_OBJECT (newpad), in gst_gl_mosaic_request_new_pad()
201 GST_OBJECT_NAME (newpad)); in gst_gl_mosaic_request_new_pad()
203 return newpad; in gst_gl_mosaic_request_new_pad()
Dgstglstereomix.c421 GstPad *newpad; in gst_gl_stereo_mix_request_new_pad() local
423 newpad = (GstPad *) in gst_gl_stereo_mix_request_new_pad()
427 if (newpad == NULL) in gst_gl_stereo_mix_request_new_pad()
430 gst_child_proxy_child_added (GST_CHILD_PROXY (element), G_OBJECT (newpad), in gst_gl_stereo_mix_request_new_pad()
431 GST_OBJECT_NAME (newpad)); in gst_gl_stereo_mix_request_new_pad()
433 return GST_PAD_CAST (newpad); in gst_gl_stereo_mix_request_new_pad()
Dgstglvideomixer.c849 GstPad *newpad; in gst_gl_video_mixer_request_new_pad() local
851 newpad = (GstPad *) in gst_gl_video_mixer_request_new_pad()
855 if (newpad == NULL) in gst_gl_video_mixer_request_new_pad()
858 gst_child_proxy_child_added (GST_CHILD_PROXY (element), G_OBJECT (newpad), in gst_gl_video_mixer_request_new_pad()
859 GST_OBJECT_NAME (newpad)); in gst_gl_video_mixer_request_new_pad()
861 return newpad; in gst_gl_video_mixer_request_new_pad()
/third_party/gstreamer/gstplugins_bad/ext/mplex/
Dgstmplex.cc616 GstPad *newpad; in gst_mplex_request_new_pad() local
630 newpad = gst_pad_new_from_template (templ, padname); in gst_mplex_request_new_pad()
636 gst_object_ref (newpad); in gst_mplex_request_new_pad()
637 mpad->pad = newpad; in gst_mplex_request_new_pad()
639 gst_pad_set_chain_function (newpad, GST_DEBUG_FUNCPTR (gst_mplex_chain)); in gst_mplex_request_new_pad()
640 gst_pad_set_event_function (newpad, GST_DEBUG_FUNCPTR (gst_mplex_sink_event)); in gst_mplex_request_new_pad()
641 gst_pad_set_element_private (newpad, mpad); in gst_mplex_request_new_pad()
642 gst_element_add_pad (element, newpad); in gst_mplex_request_new_pad()
645 return newpad; in gst_mplex_request_new_pad()
/third_party/gstreamer/gstplugins_good/gst/multipart/
Dmultipartmux.c181 GstPad *newpad; in gst_multipart_mux_request_new_pad() local
192 newpad = gst_pad_new_from_template (templ, name); in gst_multipart_mux_request_new_pad()
201 gst_collect_pads_add_pad (multipart_mux->collect, newpad, in gst_multipart_mux_request_new_pad()
205 multipartpad->pad = newpad; in gst_multipart_mux_request_new_pad()
206 gst_pad_set_element_private (newpad, multipartpad); in gst_multipart_mux_request_new_pad()
211 gst_element_add_pad (element, newpad); in gst_multipart_mux_request_new_pad()
213 return newpad; in gst_multipart_mux_request_new_pad()
/third_party/gstreamer/gstplugins_base/gst/audiomixer/
Dgstaudiomixer.c252 GstAudioMixerPad *newpad; in gst_audiomixer_request_new_pad() local
254 newpad = (GstAudioMixerPad *) in gst_audiomixer_request_new_pad()
258 if (newpad == NULL) in gst_audiomixer_request_new_pad()
261 gst_child_proxy_child_added (GST_CHILD_PROXY (element), G_OBJECT (newpad), in gst_audiomixer_request_new_pad()
262 GST_OBJECT_NAME (newpad)); in gst_audiomixer_request_new_pad()
264 return GST_PAD_CAST (newpad); in gst_audiomixer_request_new_pad()
Dgstaudiointerleave.c723 GstAudioInterleavePad *newpad; in gst_audio_interleave_request_new_pad() local
738 newpad = (GstAudioInterleavePad *) in gst_audio_interleave_request_new_pad()
742 if (newpad == NULL) in gst_audio_interleave_request_new_pad()
745 newpad->channel = channel; in gst_audio_interleave_request_new_pad()
746 gst_pad_use_fixed_caps (GST_PAD (newpad)); in gst_audio_interleave_request_new_pad()
748 gst_child_proxy_child_added (GST_CHILD_PROXY (element), G_OBJECT (newpad), in gst_audio_interleave_request_new_pad()
749 GST_OBJECT_NAME (newpad)); in gst_audio_interleave_request_new_pad()
761 return GST_PAD_CAST (newpad); in gst_audio_interleave_request_new_pad()
/third_party/gstreamer/gstreamer/tests/check/libs/
Dcollectpads.c122 GstPad *newpad; in gst_aggregator_request_new_pad() local
131 newpad = gst_pad_new_from_template (templ, name); in gst_aggregator_request_new_pad()
134 gst_collect_pads_add_pad (aggregator->collect, newpad, in gst_aggregator_request_new_pad()
138 if (!gst_element_add_pad (GST_ELEMENT (aggregator), newpad)) in gst_aggregator_request_new_pad()
141 GST_DEBUG_OBJECT (aggregator, "added new pad %s", GST_OBJECT_NAME (newpad)); in gst_aggregator_request_new_pad()
142 return newpad; in gst_aggregator_request_new_pad()
148 gst_collect_pads_remove_pad (aggregator->collect, newpad); in gst_aggregator_request_new_pad()
149 gst_object_unref (newpad); in gst_aggregator_request_new_pad()
/third_party/gstreamer/gstplugins_base/tests/examples/audio/
Daudiomix.c119 dynamic_link (GstPadTemplate * templ, GstPad * newpad, gpointer user_data) in dynamic_link() argument
123 gst_pad_link (newpad, target); in dynamic_link()
/third_party/gstreamer/gstplugins_base/gst/adder/
Dgstadder.c995 GstPad *newpad; in gst_adder_request_new_pad() local
1007 newpad = g_object_new (GST_TYPE_ADDER_PAD, "name", name, "direction", in gst_adder_request_new_pad()
1012 gst_collect_pads_add_pad (adder->collect, newpad, sizeof (GstCollectData), in gst_adder_request_new_pad()
1016 if (!gst_element_add_pad (GST_ELEMENT (adder), newpad)) in gst_adder_request_new_pad()
1019 gst_child_proxy_child_added (GST_CHILD_PROXY (adder), G_OBJECT (newpad), in gst_adder_request_new_pad()
1020 GST_OBJECT_NAME (newpad)); in gst_adder_request_new_pad()
1022 return newpad; in gst_adder_request_new_pad()
1033 gst_collect_pads_remove_pad (adder->collect, newpad); in gst_adder_request_new_pad()
1034 gst_object_unref (newpad); in gst_adder_request_new_pad()
/third_party/gstreamer/gstplugins_bad/tests/examples/directfb/
Dgstdfb.c69 dynamic_link (GstPadTemplate * templ, GstPad * newpad, gpointer data) in dynamic_link() argument
74 !strcmp (gst_pad_get_name (newpad), connect->padname)) { in dynamic_link()
75 gst_pad_link (newpad, connect->target); in dynamic_link()
/third_party/gstreamer/gstplugins_base/gst/compositor/
Dcompositor.c997 GstPad *newpad; in gst_compositor_request_new_pad() local
999 newpad = (GstPad *) in gst_compositor_request_new_pad()
1003 if (newpad == NULL) in gst_compositor_request_new_pad()
1006 gst_child_proxy_child_added (GST_CHILD_PROXY (element), G_OBJECT (newpad), in gst_compositor_request_new_pad()
1007 GST_OBJECT_NAME (newpad)); in gst_compositor_request_new_pad()
1009 return newpad; in gst_compositor_request_new_pad()
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/
Dgstrtpmux.c304 GstPad *newpad; in gst_rtp_mux_request_new_pad() local
316 newpad = gst_pad_new_from_template (templ, req_name); in gst_rtp_mux_request_new_pad()
317 if (newpad) in gst_rtp_mux_request_new_pad()
318 gst_rtp_mux_setup_sinkpad (rtp_mux, newpad); in gst_rtp_mux_request_new_pad()
322 return newpad; in gst_rtp_mux_request_new_pad()
/third_party/gstreamer/gstplugins_good/tests/examples/equalizer/
Ddemo.c126 dynamic_link (GstPadTemplate * templ, GstPad * newpad, gpointer user_data) in dynamic_link() argument
130 gst_pad_link (newpad, target); in dynamic_link()
/third_party/ffmpeg/libavfilter/
Dinternal.h263 AVFilterPad *newpad);
/third_party/e2fsprogs/ext2ed/
Dwin.c78 show_pad=newpad (SHOW_PAD_LINES,SHOW_PAD_COLS); in init_windows()
/third_party/gstreamer/gstplugins_good/gst/avi/
Dgstavimux.c951 GstPad *newpad; in gst_avi_mux_request_new_pad() local
1007 newpad = gst_pad_new_from_template (templ, pad_name); in gst_avi_mux_request_new_pad()
1010 newpad, sizeof (GstAviCollectData), NULL, TRUE); in gst_avi_mux_request_new_pad()
1013 if (!gst_element_add_pad (element, newpad)) in gst_avi_mux_request_new_pad()
1018 GST_DEBUG_OBJECT (newpad, "Added new request pad"); in gst_avi_mux_request_new_pad()
1020 return newpad; in gst_avi_mux_request_new_pad()
1047 gst_object_unref (newpad); in gst_avi_mux_request_new_pad()
/third_party/gstreamer/gstplugins_bad/gst/asfmux/
Dgstasfmux.c2279 GstPad *newpad; in gst_asf_mux_request_new_pad() local
2305 newpad = gst_pad_new_from_template (templ, pad_name); in gst_asf_mux_request_new_pad()
2317 newpad = gst_pad_new_from_template (templ, name); in gst_asf_mux_request_new_pad()
2333 gst_collect_pads_add_pad (asfmux->collect, newpad, collect_size, in gst_asf_mux_request_new_pad()
2347 gst_pad_set_active (newpad, TRUE); in gst_asf_mux_request_new_pad()
2348 gst_element_add_pad (element, newpad); in gst_asf_mux_request_new_pad()
2350 return newpad; in gst_asf_mux_request_new_pad()
/third_party/gstreamer/gstplugins_base/ext/ogg/
Dgstoggmux.c419 GstPad *newpad; in gst_ogg_mux_request_new_pad() local
468 newpad = gst_pad_new_from_template (templ, name); in gst_ogg_mux_request_new_pad()
477 gst_collect_pads_add_pad (ogg_mux->collect, newpad, in gst_ogg_mux_request_new_pad()
487 gst_pad_set_link_function (newpad, gst_ogg_mux_sinkconnect); in gst_ogg_mux_request_new_pad()
490 gst_element_add_pad (element, newpad); in gst_ogg_mux_request_new_pad()
492 return newpad; in gst_ogg_mux_request_new_pad()
/third_party/gstreamer/gstplugins_good/gst/multifile/
Dgstsplitmuxsink.c1556 GstPad *sinkpad, *srcpad, *newpad; in relink_context() local
1563 newpad = in relink_context()
1568 newpad); in relink_context()
1573 if (gst_pad_link_full (srcpad, newpad, in relink_context()
1575 gst_element_release_request_pad (splitmux->muxer, newpad); in relink_context()
1577 gst_object_unref (newpad); in relink_context()
1580 gst_object_unref (newpad); in relink_context()
/third_party/gstreamer/gstplugins_good/gst/matroska/
Dmatroska-mux.c2355 GstMatroskamuxPad *newpad; in gst_matroska_mux_request_new_pad() local
2414 newpad = g_object_new (GST_TYPE_MATROSKAMUX_PAD, in gst_matroska_mux_request_new_pad()
2417 gst_matroskamux_pad_init (newpad); in gst_matroska_mux_request_new_pad()
2419 gst_collect_pads_add_pad (mux->collect, GST_PAD (newpad), in gst_matroska_mux_request_new_pad()
2431 gst_pad_set_active (GST_PAD (newpad), TRUE); in gst_matroska_mux_request_new_pad()
2432 if (!gst_element_add_pad (element, GST_PAD (newpad))) in gst_matroska_mux_request_new_pad()
2439 GST_DEBUG_OBJECT (newpad, "Added new request pad"); in gst_matroska_mux_request_new_pad()
2441 return GST_PAD (newpad); in gst_matroska_mux_request_new_pad()
2448 gst_object_unref (newpad); in gst_matroska_mux_request_new_pad()
/third_party/gstreamer/gstplugins_base/gst/playback/
Dgsturidecodebin.c1285 GstPad *newpad; in new_decoded_pad_added_cb() local
1298 newpad = gst_ghost_pad_new_from_template (padname, pad, pad_tmpl); in new_decoded_pad_added_cb()
1303 g_object_set_data (G_OBJECT (pad), "uridecodebin.ghostpad", newpad); in new_decoded_pad_added_cb()
1314 gst_pad_set_active (newpad, TRUE); in new_decoded_pad_added_cb()
1315 gst_pad_sticky_events_foreach (pad, copy_sticky_events, newpad); in new_decoded_pad_added_cb()
1316 gst_element_add_pad (GST_ELEMENT_CAST (decoder), newpad); in new_decoded_pad_added_cb()
Dgsturisourcebin.c1244 GstPad *newpad; in create_output_pad() local
1256 newpad = gst_ghost_pad_new_from_template (padname, pad, pad_tmpl); in create_output_pad()
1261 GST_DEBUG_PAD_NAME (newpad), GST_DEBUG_PAD_NAME (pad)); in create_output_pad()
1263 return newpad; in create_output_pad()
/third_party/gstreamer/gstplugins_base/gst/encoding/
Dgstencodebin.c1009 GstPad *newpad = NULL; in local_element_request_pad() local
1015 newpad = (oclass->request_new_pad) (element, templ, name, caps); in local_element_request_pad()
1017 if (newpad) in local_element_request_pad()
1018 gst_object_ref (newpad); in local_element_request_pad()
1020 return newpad; in local_element_request_pad()
/third_party/gstreamer/gstreamer/gst/
Dgstelement.c1043 GstPad *newpad = NULL; in _gst_element_request_pad() local
1068 newpad = (oclass->request_new_pad) (element, templ, name, caps); in _gst_element_request_pad()
1070 if (newpad) in _gst_element_request_pad()
1071 gst_object_ref (newpad); in _gst_element_request_pad()
1073 return newpad; in _gst_element_request_pad()

12