/external/srtp/include/ |
srtp_priv.h | 80 uint32_t ssrc; /* synchronization source */ member in struct:__anon11445 94 uint32_t ssrc; /* synchronization source */ member in struct:__anon11446 120 uint32_t ssrc; /* synchronization source */ member in struct:__anon11448 139 uint32_t ssrc; /* synchronization source */ member in struct:__anon11450 165 * srtp_get_stream(ssrc) returns a pointer to the stream corresponding 166 * to ssrc, or NULL if no stream exists for that ssrc 170 srtp_get_stream(srtp_t srtp, uint32_t ssrc); 209 * an srtp_stream_t has its own SSRC, encryption key, authentication 217 uint32_t ssrc; member in struct:srtp_stream_ctx_t [all...] |
srtp.h | 138 * @brief ssrc_type_t describes the type of an SSRC. 140 * An ssrc_type_t enumeration is used to indicate a type of SSRC. See 145 ssrc_undefined = 0, /**< Indicates an undefined SSRC type. */ 146 ssrc_specific = 1, /**< Indicates a specific SSRC value */ 147 ssrc_any_inbound = 2, /**< Indicates any inbound SSRC value 150 ssrc_any_outbound = 3 /**< Indicates any outbound SSRC value 156 * @brief An ssrc_t represents a particular SSRC value, or a `wildcard' SSRC. 158 * An ssrc_t represents a particular SSRC value (if its type is 159 * ssrc_specific), or a wildcard SSRC value that will match al 211 ssrc_t ssrc; \/**< The SSRC value of stream, or the member in struct:srtp_policy_t [all...] |
rtp.h | 77 struct sockaddr_in addr, unsigned int ssrc); 81 struct sockaddr_in addr, unsigned int ssrc);
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
channel.h | 113 bool RemoveStream(uint32 ssrc); 182 virtual void RemoveStream_w(uint32 ssrc) = 0; 266 // Add an incoming stream with the specified SSRC. 267 bool AddStream(uint32 ssrc); 296 // ssrc(uint32), and error(VoiceMediaChannel::Error). 341 void AddStream_w(uint32 ssrc); 342 void RemoveStream_w(uint32 ssrc); 355 void OnVoiceChannelError(uint32 ssrc, VoiceMediaChannel::Error error); 378 // Add an incoming stream with the specified SSRC. 379 bool AddStream(uint32 ssrc, uint32 voice_ssrc) 419 uint32 ssrc; member in struct:cricket::VideoChannel::RenderMessageData [all...] |
channel.cc | 49 : ssrc(in_ssrc), 51 uint32 ssrc; member in struct:cricket::VoiceChannelErrorMessageData 58 : ssrc(in_ssrc), 60 uint32 ssrc; member in struct:cricket::VideoChannelErrorMessageData 146 bool BaseChannel::RemoveStream(uint32 ssrc) { 147 StreamMessageData data(ssrc, 0); 307 << ", SSRC=" << GetRtpSsrc(packet); 349 << ", SSRC=" << GetRtpSsrc(packet); 641 bool VoiceChannel::AddStream(uint32 ssrc) { 642 StreamMessageData data(ssrc, 0) 960 uint32 ssrc; local [all...] |
mediachannel.h | 93 // Sets the SSRC to be used for outgoing data. 115 uint32 ssrc; member in struct:cricket::VoiceSenderInfo 127 uint32 ssrc; member in struct:cricket::VoiceReceiverInfo 138 uint32 ssrc; member in struct:cricket::VideoSenderInfo 154 uint32 ssrc; member in struct:cricket::VideoReceiverInfo 218 // Adds a new receive-only stream with the specified SSRC. 219 virtual bool AddStream(uint32 ssrc) = 0; 221 virtual bool RemoveStream(uint32 ssrc) = 0; 235 virtual void GetLastMediaError(uint32* ssrc, 242 // ssrc(uint32), and error(VoiceMediaChannel::Error) [all...] |
filemediaengine.cc | 93 // Read the next RTP dump packet, whose RTP SSRC is the same as first_ssrc_. 182 uint32 ssrc; local 183 if (!packet->GetRtpSsrc(&ssrc)) { 188 first_ssrc_ = ssrc; 190 if (ssrc == first_ssrc_) {
|
filemediaengine.h | 137 virtual bool AddStream(uint32 ssrc) { return true; } 138 virtual bool RemoveStream(uint32 ssrc) { return true; } 172 virtual bool AddStream(uint32 ssrc, uint32 voice_ssrc) { return true; } 173 virtual bool RemoveStream(uint32 ssrc) { return true; } 174 virtual bool SetRenderer(uint32 ssrc, VideoRenderer* renderer) {
|
mediasessionclient.h | 183 uint32 ssrc() const { return ssrc_; } function in class:cricket::MediaContentDescription 185 void set_ssrc(uint32 ssrc) { 186 ssrc_ = ssrc;
|
/external/srtp/test/ |
srtp_driver.c | 123 /* the wildcard_policy is declared below; it has a wildcard ssrc */ 259 "wildcard ssrc policy\n"); 321 policy.ssrc.type = ssrc_specific; 322 policy.ssrc.value = 0xdecafbad; 365 * srtp_create_test_packet(len, ssrc) returns a pointer to a 367 * by pkt_octet_len and the SSRC value ssrc. The total length of the 378 srtp_create_test_packet(int pkt_octet_len, uint32_t ssrc) { 398 hdr->ssrc = htonl(ssrc); /* synch. source * 468 uint32_t ssrc; local 528 uint32_t ssrc = policy->ssrc.value; local 581 uint32_t ssrc; local 780 uint32_t ssrc; local 1239 uint32_t ssrc = 0; local [all...] |
dtls_srtp_driver.c | 53 srtp_create_test_packet(int pkt_octet_len, uint32_t ssrc); 185 policy.ssrc.type = ssrc_any_inbound; 201 * srtp_create_test_packet(len, ssrc) returns a pointer to a 203 * by pkt_octet_len and the SSRC value ssrc. The total length of the 214 srtp_create_test_packet(int pkt_octet_len, uint32_t ssrc) { 234 hdr->ssrc = htonl(ssrc); /* synch. source */
|
rtp.c | 79 fprintf(stderr, "%d octets received from SSRC %u\n", 80 octets_recvd, receiver->message.header.ssrc); 105 unsigned int ssrc) { 108 sender->message.header.ssrc = htonl(ssrc); 129 unsigned int ssrc) { 132 rcvr->message.header.ssrc = htonl(ssrc);
|
rtpw.c | 149 uint32_t ssrc = 0xdeadbeef; /* ssrc value hardcoded for now */ local 310 * using the right SSRC value 329 policy.ssrc.type = ssrc_specific; 330 policy.ssrc.value = ssrc; 373 policy.ssrc.type = ssrc_specific; 374 policy.ssrc.value = ssrc; 413 rtp_sender_init(snd, sock, name, ssrc); [all...] |
/external/bluetooth/bluez/audio/ |
rtp.h | 37 uint32_t ssrc; member in struct:rtp_header 62 uint32_t ssrc; member in struct:rtp_header
|
/external/srtp/srtp/ |
srtp.c | 229 * the SSRC 234 uint32_t ssrc, 239 debug_print(mod_srtp, "cloning stream (SSRC: 0x%08x)", ssrc); 266 /* set ssrc to that provided */ 267 str->ssrc = ssrc; 475 debug_print(mod_srtp, "initializing stream (SSRC: 0x%08x)", 476 p->ssrc.value); 493 /* set the SSRC value * [all...] |
/frameworks/media/libvideoeditor/vss/common/inc/ |
SSRC.h | 20 /* %name: SSRC.h % */ 125 /* used as input and as output of the SSRC module. */ 192 /* This function is used to initialize the SSRC module instance. */ 233 /* This function sets headroom gain and the post gain of the SSRC */ 237 /* SSRC. The default value is LVM_MODE_ON. LVM_MODE_OFF */ 274 /* Process function for the SSRC module. */
|
/frameworks/media/libvideoeditor/vss/mcs/inc/ |
M4MCS_InternalTypes.h | 49 #include "SSRC.h" /**< SSRC */ 473 * Sample Rate Convertor (SSRC) stuff */ 474 SSRC_Instance_t SsrcInstance; /**< Context of the Ssrc */ 475 SSRC_Scratch_t* SsrcScratch; /**< Working memory of the Ssrc */ 476 short iSsrcNbSamplIn; /**< Number of sample the Ssrc needs as input */ 477 short iSsrcNbSamplOut; /**< Number of sample the Ssrc outputs */ 478 M4OSA_MemAddr8 pSsrcBufferIn; /**< Input of the SSRC */ 479 M4OSA_MemAddr8 pSsrcBufferOut; /**< Output of the SSRC */ 480 M4OSA_MemAddr8 pPosInSsrcBufferIn; /**< Position into the SSRC in buffer * [all...] |
/external/srtp/ |
README | 125 setting SSRC to 2078917053 135 19 octets received from SSRC 2078917053 word: A 136 19 octets received from SSRC 2078917053 word: a 137 20 octets received from SSRC 2078917053 word: aa 138 21 octets received from SSRC 2078917053 word: aal
|
/external/srtp/doc/ |
intro.txt | 218 setting SSRC to 2078917053 233 19 octets received from SSRC 2078917053 word: A 234 19 octets received from SSRC 2078917053 word: a 235 20 octets received from SSRC 2078917053 word: aa 236 21 octets received from SSRC 2078917053 word: aal 256 (SSRC) identifier. Some participants may not send any SRTP traffic; 261 same session. The synchronization source identifier (SSRC) is used to 264 SSRC, sequence number, rollover counter, and other data. A particular 271 streams requires care. When key sharing is used, the SSRC values that 321 the SRTP master key and the SSRC value. The SSRC describes what t [all...] |
/frameworks/media/libvideoeditor/vss/inc/ |
M4VSS3GPP_InternalTypes.h | 51 #include "SSRC.h" /**< SSRC */ [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
sessionmessages.h | 186 uint32 ssrc; member in struct:cricket::VideoViewRequest 191 VideoViewRequest(const std::string& nick_name, uint32 ssrc, uint32 width, 193 nick_name(nick_name), ssrc(ssrc), width(width), height(height),
|
/external/srtp/googlepatches/ |
google-9-rdbx-leak-plug.patch | 265 srtp_remove_stream(srtp_t session, uint32_t ssrc) { 276 while ((stream != NULL) && (ssrc != stream->ssrc)) { 277 @@ -1352,8 +1324,20 @@ srtp_remove_stream(srtp_t session, uint32_t ssrc) {
|
vidyo-4-srtp-rtx.patch | 37 /* set ssrc to that provided */ 38 str->ssrc = ssrc; 69 policy.ssrc.type = ssrc_any_inbound; 133 stream->ssrc,
|
/external/bluetooth/hcidump/parser/ |
avdtp.c | 452 uint32_t time, ssrc; local 513 ssrc = get_u32(frm); 515 printf("AVDTP(m): ver %d %s%scc %d %spt %d seqn %d time %d ssrc %d\n", 517 hdr & 0xf, type & 0x80 ? "mark " : "", type & 0x7f, seqn, time, ssrc);
|
/external/libpcap/ |
Makefile.in | 78 SSRC = @SSRC@ 84 SRC = $(PSRC) $(FSRC) $(CSRC) $(SSRC) $(GENSRC) 88 OBJ = $(PSRC:.c=.o) $(FSRC:.c=.o) $(CSRC:.c=.o) $(SSRC:.c=.o) $(GENSRC:.c=.o) $(LIBOBJS)
|