Lines Matching full:stream
5 * for this stream (if any) */
14 struct srtp_policy_t *next; /**< Pointer to next stream policy. */
51 delta = rdbx_estimate_index(&stream->rtp_rdbx, &est, ntohs(hdr->seq));
52 status = rdbx_check(&stream->rtp_rdbx, delta);
55 - rdbx_add_index(&stream->rtp_rdbx, delta);
57 + if (status != err_status_replay_fail || !stream->allow_repeat_tx)
61 + rdbx_add_index(&stream->rtp_rdbx, delta);
113 direction[stream->direction],
114 stream->rtp_cipher->type->description,
115 stream->rtp_auth->type->description,
117 stream->rtcp_cipher->type->description,
118 stream->rtcp_auth->type->description,
119 serv_descr[stream->rtcp_services],
120 - rdbx_get_window_size(&stream->rtp_rdbx));
121 + rdbx_get_window_size(&stream->rtp_rdbx),
122 + stream->allow_repeat_tx ? "true" : "false");
133 stream->ssrc,
134 stream->rtp_cipher->type->description,
135 stream->rtp_auth->type->description,
137 stream->rtcp_cipher->type->description,
138 stream->rtcp_auth->type->description,
139 serv_descr[stream->rtcp_services],
140 - rdbx_get_window_size(&stream->rtp_rdbx));
141 + rdbx_get_window_size(&stream->rtp_rdbx),
142 + stream->allow_repeat_tx ? "true" : "false");
144 /* advance to next stream in the list */
145 stream = stream->next;