Home
last modified time | relevance | path

Searched refs:basePort (Results 1 – 2 of 2) sorted by relevance

/third_party/gstreamer/gstplugins_good/tests/examples/rtp/
Dserver-rtpaux.c209 int basePort; in add_stream() local
212 basePort = 5000 + (session->sessionNum * 6); in add_stream()
221 g_object_set (rtpSink, "port", basePort, "host", "127.0.0.1", NULL); in add_stream()
222 g_object_set (rtcpSink, "port", basePort + 1, "host", "127.0.0.1", "sync", in add_stream()
224 g_object_set (rtcpSrc, "port", basePort + 5, NULL); in add_stream()
249 g_print ("New RTP stream on %i/%i/%i\n", basePort, basePort + 1, in add_stream()
250 basePort + 5); in add_stream()
Dclient-rtpaux.c289 guint basePort; in join_session() local
295 basePort = 5000 + (session->sessionNum * 6); in join_session()
300 g_object_set (rtpSrc, "port", basePort, "caps", session->caps, NULL); in join_session()
301 g_object_set (rtcpSink, "port", basePort + 5, "host", "127.0.0.1", "sync", in join_session()
303 g_object_set (rtcpSrc, "port", basePort + 1, NULL); in join_session()
305 g_print ("Connecting to %i/%i/%i\n", basePort, basePort + 1, basePort + 5); in join_session()