• Home
  • Raw
  • Download

Lines Matching refs:sinkpad

209   GstPad *sinkpad = NULL;  in gst_stream_combiner_src_event()  local
217 sinkpad = stream_combiner->current; in gst_stream_combiner_src_event()
219 sinkpad = (GstPad *) stream_combiner->sinkpads->data; in gst_stream_combiner_src_event()
222 if (sinkpad) in gst_stream_combiner_src_event()
224 return gst_pad_push_event (sinkpad, event); in gst_stream_combiner_src_event()
234 GstPad *sinkpad = NULL; in gst_stream_combiner_src_query() local
244 sinkpad = stream_combiner->current; in gst_stream_combiner_src_query()
246 sinkpad = (GstPad *) stream_combiner->sinkpads->data; in gst_stream_combiner_src_query()
249 if (sinkpad) in gst_stream_combiner_src_query()
251 ret = gst_pad_peer_query (sinkpad, query); in gst_stream_combiner_src_query()
277 GstPad *sinkpad; in gst_stream_combiner_request_new_pad() local
287 sinkpad = GST_PAD_CAST (combiner_pad); in gst_stream_combiner_request_new_pad()
288 gst_pad_set_chain_function (sinkpad, gst_stream_combiner_chain); in gst_stream_combiner_request_new_pad()
289 gst_pad_set_event_function (sinkpad, gst_stream_combiner_sink_event); in gst_stream_combiner_request_new_pad()
290 gst_pad_set_query_function (sinkpad, gst_stream_combiner_sink_query); in gst_stream_combiner_request_new_pad()
294 g_list_append (stream_combiner->sinkpads, sinkpad); in gst_stream_combiner_request_new_pad()
295 gst_pad_set_active (sinkpad, TRUE); in gst_stream_combiner_request_new_pad()
296 gst_element_add_pad (element, sinkpad); in gst_stream_combiner_request_new_pad()
300 GST_DEBUG_OBJECT (element, "Returning pad %p", sinkpad); in gst_stream_combiner_request_new_pad()
302 return sinkpad; in gst_stream_combiner_request_new_pad()