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

  /frameworks/av/media/libstagefright/rtsp/
MyHandler.h 291 int rtpPort, rtcpPort;
292 if (sscanf(server_port.c_str(), "%d-%d", &rtpPort, &rtcpPort) != 2
294 || rtcpPort <=0 || rtcpPort > 65535
295 || rtcpPort != rtpPort + 1) {
335 addr.sin_port = htons(rtcpPort);
    [all...]
MyTransmitter.h 493 unsigned rtpPort, rtcpPort;
494 CHECK_EQ(sscanf(value.c_str(), "%u-%u", &rtpPort, &rtcpPort), 2);

Completed in 664 milliseconds