HomeSort by relevance Sort by last modified time
    Searched refs:rtpPort (Results 1 - 7 of 7) sorted by null

  /external/webrtc/webrtc/test/channel_transport/
udp_transport.h 144 // Prepares the class for sending RTP packets to ipAddr:rtpPort and RTCP
145 // packets to ipAddr:rtpPort+1 if rtcpPort is zero. Otherwise to
148 const uint16_t rtpPort,
152 // RTP port to rtpPort. Bind local IP address to ipAddr. If ipAddr is NULL
153 // bind to local IP ANY. Set the local rtcp port to rtcpPort or rtpPort + 1
157 const uint16_t rtpPort,
162 // Set local RTP port to rtpPort and RTCP port to rtcpPort or rtpPort + 1 if
165 virtual int32_t InitializeSourcePorts(const uint16_t rtpPort,
169 // by InitializeReceiveSockets(..). rtpPort is set to the RTP port
    [all...]
udp_transport_impl.h 51 const uint16_t rtpPort,
54 const uint16_t rtpPort,
58 int32_t InitializeSourcePorts(const uint16_t rtpPort,
60 int32_t SourcePorts(uint16_t& rtpPort, uint16_t& rtcpPort) const override;
63 uint16_t& rtpPort,
67 uint16_t& rtpPort,
70 uint16_t& rtpPort,
114 uint16_t rtpPort) override;
126 int32_t SetSendPorts(const uint16_t rtpPort,
udp_transport_impl.cc 364 uint16_t& rtpPort,
369 rtpPort = _localPort;
388 uint16_t& rtpPort,
392 rtpPort = _destPort;
402 uint16_t& rtpPort,
406 rtpPort = _fromPort;
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPConnection.h 51 int *rtpSocket, int *rtcpSocket, unsigned *rtpPort);
MyTransmitter.h 401 unsigned rtpPort;
402 ARTPConnection::MakePortPair(&mRTPSocket, &mRTCPSocket, &rtpPort);
414 request.append(rtpPort);
416 request.append(rtpPort + 1);
496 unsigned rtpPort, rtcpPort;
497 CHECK_EQ(sscanf(value.c_str(), "%u-%u", &rtpPort, &rtcpPort), 2);
504 mRemoteAddr.sin_port = htons(rtpPort);
507 mRemoteRTCPAddr.sin_port = htons(rtpPort + 1);
527 << rtpPort;
MyHandler.h 358 int rtpPort, rtcpPort;
359 if (sscanf(server_port.c_str(), "%d-%d", &rtpPort, &rtcpPort) != 2
360 || rtpPort <= 0 || rtpPort > 65535
362 || rtcpPort != rtpPort + 1) {
370 if (rtpPort & 1) {
391 addr.sin_port = htons(rtpPort);
    [all...]
ARTPConnection.cpp 109 int *rtpSocket, int *rtcpSocket, unsigned *rtpPort) {
140 *rtpPort = port;

Completed in 487 milliseconds