FreeCalypso > hg > themwi-rtp-lib
comparison include/rtp_defs.h @ 1:e05dde97739d
include: legacy header files from themwi-rtp-mgr
<themwi/rtp/pstn_defs.h> and <themwi/rtp/rtp_defs.h> will be
populated by both the present package and themwi-rtp-mgr.
Because of this duplicate definition, these two legacy headers
have to be treated as essentially immutable.
Why can't we drop these headers from themwi-rtp-mgr and make
the present package their new (and single) official home?
Answer: the present package depends on libosmocore, whereas
themwi-rtp-mgr does not. We already have some programs that
depend on themwi-rtp-mgr, use these headers, yet have no
dependencies on Osmocom.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 05 Jul 2024 07:49:30 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:4277bc14f5bf | 1:e05dde97739d |
---|---|
1 /* | |
2 * This header file holds some definitions for RTP, as this protocol | |
3 * functions in our GSM and PSTN environment. | |
4 */ | |
5 | |
6 #pragma once | |
7 | |
8 #include <stdint.h> | |
9 | |
10 #define RTP_PACKET_HDR_SIZE 12 | |
11 #define RTP_PACKET_SIZE_PSTN 172 | |
12 #define RTP_MAX_PAYLOAD 160 | |
13 | |
14 struct rtp_packet { | |
15 uint8_t v_p_x_cc; | |
16 uint8_t m_pt; | |
17 uint16_t seq; | |
18 uint32_t tstamp; | |
19 uint32_t ssrc; | |
20 uint8_t payload[RTP_MAX_PAYLOAD]; | |
21 }; |