Lines Matching refs:hdr
217 srtp_hdr_t *hdr;
221 hdr = malloc(pkt_octet_len + bytes_in_hdr
223 if (!hdr)
226 hdr->version = 2; /* RTP version two */
227 hdr->p = 0; /* no padding needed */
228 hdr->x = 0; /* no header extension */
229 hdr->cc = 0; /* no CSRCs */
230 hdr->m = 0; /* marker bit */
231 hdr->pt = 0xf; /* payload type */
232 hdr->seq = htons(0x1234); /* sequence number */
233 hdr->ts = htonl(0xdecafbad); /* timestamp */
234 hdr->ssrc = htonl(ssrc); /* synch. source */
236 buffer = (uint8_t *)hdr;
247 return hdr;