OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
357
int
rtpPort
, rtcpPort;
358
if (sscanf(server_port.c_str(), "%d-%d", &
rtpPort
, &rtcpPort) != 2
359
||
rtpPort
<= 0 ||
rtpPort
> 65535
361
|| rtcpPort !=
rtpPort
+ 1) {
369
if (
rtpPort
& 1) {
390
addr.sin_port = htons(
rtpPort
);
[
all
...]
ARTPConnection.cpp
109
int *rtpSocket, int *rtcpSocket, unsigned *
rtpPort
) {
140
*
rtpPort
= port;
Completed in 84 milliseconds