Searched refs:padName (Results 1 – 2 of 2) sorted by relevance
/third_party/gstreamer/gstplugins_good/tests/examples/rtp/ |
D | server-rtpaux.c | 210 gchar *padName; in add_stream() local 230 padName = g_strdup_printf ("send_rtp_sink_%u", session->sessionNum); in add_stream() 231 gst_element_link_pads (session->input, "src", rtpBin, padName); in add_stream() 232 g_free (padName); in add_stream() 236 padName = g_strdup_printf ("send_rtp_src_%u", session->sessionNum); in add_stream() 237 gst_element_link_pads (rtpBin, padName, identity, "sink"); in add_stream() 239 g_free (padName); in add_stream() 241 padName = g_strdup_printf ("send_rtcp_src_%u", session->sessionNum); in add_stream() 242 gst_element_link_pads (rtpBin, padName, rtcpSink, "sink"); in add_stream() 243 g_free (padName); in add_stream() [all …]
|
D | client-rtpaux.c | 223 gchar *padName; in handle_new_stream() local 226 padName = gst_pad_get_name (newPad); in handle_new_stream() 229 g_print ("New pad: %s, looking for %s_*\n", padName, myPrefix); in handle_new_stream() 231 if (g_str_has_prefix (padName, myPrefix)) { in handle_new_stream() 247 g_free (padName); in handle_new_stream() 288 gchar *padName; in join_session() local 320 padName = g_strdup_printf ("recv_rtp_sink_%u", session->sessionNum); in join_session() 321 gst_element_link_pads (rtpSrc, "src", rtpBin, padName); in join_session() 322 g_free (padName); in join_session() 324 padName = g_strdup_printf ("recv_rtcp_sink_%u", session->sessionNum); in join_session() [all …]
|