/*****************************************************************************
|
|
* rtp.h: Real-Time Protocol
|
|
*****************************************************************************
|
|
* Copyright (C) 2009 VideoLAN
|
|
* $Id$
|
|
*
|
|
* Authors: Christophe Massiot <massiot@via.ecp.fr>
|
|
*
|
|
* This program is free software. It comes without any warranty, to
|
|
* the extent permitted by applicable law. You can redistribute it
|
|
* and/or modify it under the terms of the Do What The Fuck You Want
|
|
* To Public License, Version 2, as published by Sam Hocevar. See
|
|
* http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
* Normative references:
|
|
* - IETF RFC 3550 Real-Time Protocol (July 2003)
|
|
*/
|
|
|
|
#ifndef __BITSTREAM_IETF_RTP_H__
|
|
#define __BITSTREAM_IETF_RTP_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#define RTP_HEADER_SIZE 12
|
|
#define RTP_TYPE_TS 33
|
|
|
|
/*
|
|
* Reminder : RTP header
|
|
0 1 2 3
|
|
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
|V=2|P|X| CC |M| PT | sequence number |
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
| timestamp |
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
| synchronization source (SSRC) identifier |
|
|
+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
|
|
| contributing source (CSRC) identifiers |
|
|
| .... |
|
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
|
*/
|
|
|
|
static inline void rtp_set_hdr(uint8_t *p_rtp)
|
|
{
|
|
p_rtp[0] = 0x80;
|
|
}
|
|
|
|
static inline bool rtp_check_hdr(const uint8_t *p_rtp)
|
|
{
|
|
return (p_rtp[0] & 0xc0) == 0x80;
|
|
}
|
|
|
|
static inline void rtp_set_type(uint8_t *p_rtp, uint8_t i_type)
|
|
{
|
|
p_rtp[1] = i_type;
|
|
}
|
|
|
|
static inline uint8_t rtp_get_type(const uint8_t *p_rtp)
|
|
{
|
|
return p_rtp[1] & 0x7f;
|
|
}
|
|
|
|
static inline void rtp_set_seqnum(uint8_t *p_rtp, uint16_t i_seqnum)
|
|
{
|
|
p_rtp[2] = i_seqnum >> 8;
|
|
p_rtp[3] = i_seqnum & 0xff;
|
|
}
|
|
|
|
static inline uint16_t rtp_get_seqnum(uint8_t *p_rtp)
|
|
{
|
|
return (p_rtp[2] << 8) | p_rtp[3];
|
|
}
|
|
|
|
static inline void rtp_set_timestamp(uint8_t *p_rtp, uint32_t i_timestamp)
|
|
{
|
|
p_rtp[4] = (i_timestamp >> 24) & 0xff;
|
|
p_rtp[5] = (i_timestamp >> 16) & 0xff;
|
|
p_rtp[6] = (i_timestamp >> 8) & 0xff;
|
|
p_rtp[7] = i_timestamp & 0xff;
|
|
}
|
|
|
|
static inline uint32_t rtp_get_timestamp(uint8_t *p_rtp)
|
|
{
|
|
return (p_rtp[4] << 24) | (p_rtp[5] << 16) | (p_rtp[6] << 8) | p_rtp[7];
|
|
}
|
|
|
|
static inline void rtp_set_ssrc(uint8_t *p_rtp, const uint8_t pi_ssrc[4])
|
|
{
|
|
p_rtp[8] = pi_ssrc[0];
|
|
p_rtp[9] = pi_ssrc[1];
|
|
p_rtp[10] = pi_ssrc[2];
|
|
p_rtp[11] = pi_ssrc[3];
|
|
}
|
|
|
|
static inline void rtp_get_ssrc(uint8_t *p_rtp, uint8_t pi_ssrc[4])
|
|
{
|
|
pi_ssrc[0] = p_rtp[8];
|
|
pi_ssrc[1] = p_rtp[9];
|
|
pi_ssrc[2] = p_rtp[10];
|
|
pi_ssrc[3] = p_rtp[11];
|
|
}
|
|
|
|
static inline uint8_t *rtp_payload(uint8_t *p_rtp)
|
|
{
|
|
unsigned int i_size = RTP_HEADER_SIZE;
|
|
i_size += 4 * (p_rtp[0] & 0xf);
|
|
if (p_rtp[0] & 0x10) /* header extension */
|
|
i_size += 4 * (1 + (p_rtp[i_size + 2] << 8) + p_rtp[i_size + 3]);
|
|
return p_rtp + i_size;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|