Home
last modified time | relevance | path

Searched refs:srtp_stream_ctx_t (Results 1 – 8 of 8) sorted by relevance

/external/srtp/googlepatches/
Dgoogle-9-rdbx-leak-plug.patch23 @@ -92,35 +92,31 @@ srtp_stream_alloc(srtp_stream_ctx_t **str_ptr,
24 str = (srtp_stream_ctx_t *) crypto_alloc(sizeof(srtp_stream_ctx_t));
68 @@ -129,13 +125,9 @@ srtp_stream_alloc(srtp_stream_ctx_t **str_ptr,
84 @@ -144,33 +136,37 @@ srtp_stream_alloc(srtp_stream_ctx_t **str_ptr,
129 -srtp_stream_dealloc(srtp_t session, srtp_stream_ctx_t *stream) {
130 +srtp_stream_dealloc(srtp_stream_ctx_t *stream,
131 + srtp_stream_ctx_t *stream_template) {
138 @@ -178,41 +174,29 @@ srtp_stream_dealloc(srtp_t session, srtp_stream_ctx_t *stream) {
187 @@ -222,17 +206,14 @@ srtp_stream_dealloc(srtp_t session, srtp_stream_ctx_t *stream) {
207 @@ -549,7 +530,12 @@ srtp_stream_init(srtp_stream_ctx_t *srtp,
[all …]
Dvidyo-4-srtp-rtx.patch20 @@ -218,6 +218,7 @@ typedef struct srtp_stream_ctx_t {
26 struct srtp_stream_ctx_t *next; /* linked list of streams */
27 } srtp_stream_ctx_t;
39 @@ -525,6 +526,9 @@ srtp_stream_init(srtp_stream_ctx_t *srtp
49 @@ -732,9 +736,12 @@ srtp_stream_init(srtp_stream_ctx_t *srtp
Dgoogle-7-srtp-security-fix.patch44 srtp_stream_ctx_t *stream;
Dvidyo-3-srtp-ws.patch622 @@ -491,7 +494,8 @@ srtp_stream_init(srtp_stream_ctx_t *srtp
632 @@ -525,14 +529,20 @@ srtp_stream_init(srtp_stream_ctx_t *srtp
/external/srtp/include/
Dsrtp_priv.h216 typedef struct srtp_stream_ctx_t { struct
230 struct srtp_stream_ctx_t *next; /* linked list of streams */ argument
231 } srtp_stream_ctx_t; typedef
239 srtp_stream_ctx_t *stream_list; /* linked list of streams */
240 srtp_stream_ctx_t *stream_template; /* act as template for other streams */
Dsrtp.h264 typedef struct srtp_stream_ctx_t *srtp_stream_t;
/external/srtp/srtp/
Dsrtp.c78 srtp_stream_alloc(srtp_stream_ctx_t **str_ptr, in srtp_stream_alloc()
80 srtp_stream_ctx_t *str; in srtp_stream_alloc()
92 str = (srtp_stream_ctx_t *) crypto_alloc(sizeof(srtp_stream_ctx_t)); in srtp_stream_alloc()
166 srtp_stream_dealloc(srtp_stream_ctx_t *stream, in srtp_stream_dealloc()
167 srtp_stream_ctx_t *stream_template) { in srtp_stream_dealloc()
233 srtp_stream_clone(const srtp_stream_ctx_t *stream_template, in srtp_stream_clone()
235 srtp_stream_ctx_t **str_ptr) { in srtp_stream_clone()
237 srtp_stream_ctx_t *str; in srtp_stream_clone()
242 str = (srtp_stream_ctx_t *) crypto_alloc(sizeof(srtp_stream_ctx_t)); in srtp_stream_clone()
361 srtp_stream_init_keys(srtp_stream_ctx_t *srtp, const void *key) { in srtp_stream_init_keys()
[all …]
/external/webrtc/talk/session/media/
Dsrtpfilter.cc629 srtp_stream_ctx_t* srtp_context = session_->stream_template; in GetRtpAuthParams()
653 srtp_stream_ctx_t* stream = srtp_get_stream(session_, hdr->ssrc); in GetSendStreamPacketIndex()