FreeCalypso > hg > themwi-rtp-lib
annotate include/endp.h @ 32:aa97e77e7de6
implement RTCP Tx
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 08 Jul 2024 07:17:38 +0000 |
parents | 9fd693f234f8 |
children | e70e7b266f89 |
rev | line source |
---|---|
19 | 1 /* |
2 * twrtp_endp is the big abstraction provided by libtwrtp: a complete | |
3 * RTP endpoint with RTP & RTCP sockets, sending and receiving both types | |
4 * of packets, and incorporating twjit. | |
5 */ | |
6 | |
7 #pragma once | |
8 | |
9 #include <stdint.h> | |
10 #include <stdbool.h> | |
11 | |
12 #include <osmocom/core/osmo_io.h> | |
13 #include <osmocom/core/socket.h> | |
29
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
14 #include <osmocom/core/timer.h> |
19 | 15 |
16 #include <themwi/rtp/twjit.h> | |
17 | |
18 struct twrtp_endp_tx { | |
19 uint32_t ssrc; | |
20 uint32_t ts; | |
21 uint16_t seq; | |
22 bool started; | |
23 bool restart; | |
24 }; | |
25 | |
29
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
26 struct twrtp_endp_rtcp_rx { |
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
27 uint32_t sr_ssrc; |
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
28 uint16_t sr_ntp_sec; |
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
29 uint16_t sr_ntp_fract; |
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
30 struct timespec sr_rx_time; |
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
31 uint32_t rr_lost_word; |
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
32 uint32_t rr_jitter; |
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
33 bool got_sr; |
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
34 bool got_rr; |
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
35 }; |
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
36 |
32
aa97e77e7de6
implement RTCP Tx
Mychaela Falconia <falcon@freecalypso.org>
parents:
30
diff
changeset
|
37 struct twrtp_endp_rtcp_tx { |
aa97e77e7de6
implement RTCP Tx
Mychaela Falconia <falcon@freecalypso.org>
parents:
30
diff
changeset
|
38 uint32_t last_received; |
aa97e77e7de6
implement RTCP Tx
Mychaela Falconia <falcon@freecalypso.org>
parents:
30
diff
changeset
|
39 uint32_t last_expected; |
aa97e77e7de6
implement RTCP Tx
Mychaela Falconia <falcon@freecalypso.org>
parents:
30
diff
changeset
|
40 uint16_t auto_rtcp_count; |
aa97e77e7de6
implement RTCP Tx
Mychaela Falconia <falcon@freecalypso.org>
parents:
30
diff
changeset
|
41 }; |
aa97e77e7de6
implement RTCP Tx
Mychaela Falconia <falcon@freecalypso.org>
parents:
30
diff
changeset
|
42 |
19 | 43 struct twrtp_endp_stats { |
44 uint32_t rx_rtp_pkt; | |
45 uint32_t rx_rtp_badsrc; | |
46 uint32_t rx_rtcp_pkt; | |
47 uint32_t rx_rtcp_badsrc; | |
29
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
48 uint32_t rx_rtcp_invalid; |
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
49 uint32_t rx_rtcp_wrong_ssrc; |
19 | 50 uint32_t tx_rtp_pkt; |
51 uint32_t tx_rtp_bytes; | |
52 uint32_t tx_rtcp_pkt; | |
53 }; | |
54 | |
55 struct twrtp_endp { | |
56 /* the root of the matter: the two sockets */ | |
57 int rtp_fd; | |
58 int rtcp_fd; | |
59 struct osmo_io_fd *iofd_rtp; | |
60 struct osmo_io_fd *iofd_rtcp; | |
61 struct osmo_sockaddr rtp_remote; | |
62 struct osmo_sockaddr rtcp_remote; | |
63 /* Rx and Tx state */ | |
64 struct twrtp_jibuf_inst *twjit; | |
32
aa97e77e7de6
implement RTCP Tx
Mychaela Falconia <falcon@freecalypso.org>
parents:
30
diff
changeset
|
65 struct twrtp_endp_tx tx; |
29
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
27
diff
changeset
|
66 struct twrtp_endp_rtcp_rx rtcp_rx; |
32
aa97e77e7de6
implement RTCP Tx
Mychaela Falconia <falcon@freecalypso.org>
parents:
30
diff
changeset
|
67 struct twrtp_endp_rtcp_tx rtcp_tx; |
30
9fd693f234f8
definitions for RTCP SDES
Mychaela Falconia <falcon@freecalypso.org>
parents:
29
diff
changeset
|
68 uint8_t *sdes_buf; |
9fd693f234f8
definitions for RTCP SDES
Mychaela Falconia <falcon@freecalypso.org>
parents:
29
diff
changeset
|
69 uint16_t sdes_len; |
9fd693f234f8
definitions for RTCP SDES
Mychaela Falconia <falcon@freecalypso.org>
parents:
29
diff
changeset
|
70 uint16_t auto_rtcp_interval; |
19 | 71 /* always have to have stats */ |
72 struct twrtp_endp_stats stats; | |
73 /* bool flags at the end for structure packing optimization */ | |
74 bool register_done; | |
75 bool remote_set; | |
76 bool rx_enable; | |
77 }; | |
78 | |
79 /* public API functions */ | |
80 | |
81 struct twrtp_endp *twrtp_endp_create(void *ctx, | |
82 struct twrtp_jibuf_config *config); | |
20
695fdb670d30
implement twrtp_endp_register_fds()
Mychaela Falconia <falcon@freecalypso.org>
parents:
19
diff
changeset
|
83 void twrtp_endp_destroy(struct twrtp_endp *endp); |
19 | 84 |
20
695fdb670d30
implement twrtp_endp_register_fds()
Mychaela Falconia <falcon@freecalypso.org>
parents:
19
diff
changeset
|
85 int twrtp_endp_register_fds(struct twrtp_endp *endp); |
21
2032201bd034
implement twrtp_endp_bind_ip_port()
Mychaela Falconia <falcon@freecalypso.org>
parents:
20
diff
changeset
|
86 int twrtp_endp_bind_ip_port(struct twrtp_endp *endp, const char *ip, |
2032201bd034
implement twrtp_endp_bind_ip_port()
Mychaela Falconia <falcon@freecalypso.org>
parents:
20
diff
changeset
|
87 uint16_t port); |
22
587437b62ed5
implement twrtp_endp_set_remote_ipv4()
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
88 |
587437b62ed5
implement twrtp_endp_set_remote_ipv4()
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
89 void twrtp_endp_set_remote_ipv4(struct twrtp_endp *endp, |
587437b62ed5
implement twrtp_endp_set_remote_ipv4()
Mychaela Falconia <falcon@freecalypso.org>
parents:
21
diff
changeset
|
90 const struct in_addr *ip, uint16_t port); |
24
84d427017d2f
endp: implement RTP Tx
Mychaela Falconia <falcon@freecalypso.org>
parents:
22
diff
changeset
|
91 |
84d427017d2f
endp: implement RTP Tx
Mychaela Falconia <falcon@freecalypso.org>
parents:
22
diff
changeset
|
92 int twrtp_endp_tx_quantum(struct twrtp_endp *endp, const uint8_t *payload, |
84d427017d2f
endp: implement RTP Tx
Mychaela Falconia <falcon@freecalypso.org>
parents:
22
diff
changeset
|
93 unsigned payload_len, uint8_t payload_type, |
26
f71efdd08c33
RTP Tx: add auto_marker mode of operation
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
94 bool marker, bool auto_marker, bool send_rtcp); |
27
a0b89c028053
RTP Tx: implement skip operation
Mychaela Falconia <falcon@freecalypso.org>
parents:
26
diff
changeset
|
95 void twrtp_endp_tx_skip(struct twrtp_endp *endp); |
30
9fd693f234f8
definitions for RTCP SDES
Mychaela Falconia <falcon@freecalypso.org>
parents:
29
diff
changeset
|
96 |
9fd693f234f8
definitions for RTCP SDES
Mychaela Falconia <falcon@freecalypso.org>
parents:
29
diff
changeset
|
97 int twrtp_endp_set_sdes(struct twrtp_endp *endp, const char *cname, |
9fd693f234f8
definitions for RTCP SDES
Mychaela Falconia <falcon@freecalypso.org>
parents:
29
diff
changeset
|
98 const char *name, const char *email, const char *phone, |
9fd693f234f8
definitions for RTCP SDES
Mychaela Falconia <falcon@freecalypso.org>
parents:
29
diff
changeset
|
99 const char *loc, const char *tool, const char *note); |