Home | History | Annotate | Download | only in rtsp

Lines Matching defs:rtcpSocket

79         int rtpSocket, int rtcpSocket,
86 msg->setInt32("rtcp-socket", rtcpSocket);
94 void ARTPConnection::removeStream(int rtpSocket, int rtcpSocket) {
97 msg->setInt32("rtcp-socket", rtcpSocket);
108 int *rtpSocket, int *rtcpSocket, unsigned *rtpPort) {
114 *rtcpSocket = socket(AF_INET, SOCK_DGRAM, 0);
115 CHECK_GE(*rtcpSocket, 0);
117 bumpSocketBufferSize(*rtcpSocket);
136 if (bind(*rtcpSocket,
212 int32_t rtpSocket, rtcpSocket;
214 CHECK(msg->findInt32("rtcp-socket", &rtcpSocket));
218 && (it->mRTPSocket != rtpSocket || it->mRTCPSocket != rtcpSocket)) {