FreeCalypso > hg > themwi-rtp-lib
comparison src/endp_internal.h @ 32:aa97e77e7de6
implement RTCP Tx
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 08 Jul 2024 07:17:38 +0000 |
parents | b8cb5146e5b4 |
children |
comparison
equal
deleted
inserted
replaced
31:284fcb5868e2 | 32:aa97e77e7de6 |
---|---|
2 * Internal declarations for twrtp_endp library component. | 2 * Internal declarations for twrtp_endp library component. |
3 */ | 3 */ |
4 | 4 |
5 #pragma once | 5 #pragma once |
6 | 6 |
7 #include <stdint.h> | |
8 #include <stdbool.h> | |
9 | |
7 #include <osmocom/core/osmo_io.h> | 10 #include <osmocom/core/osmo_io.h> |
11 #include <osmocom/core/timer.h> | |
12 | |
13 #include <themwi/rtp/endp.h> | |
8 | 14 |
9 extern const struct osmo_io_ops _twrtp_endp_iops_rtp; | 15 extern const struct osmo_io_ops _twrtp_endp_iops_rtp; |
10 extern const struct osmo_io_ops _twrtp_endp_iops_rtcp; | 16 extern const struct osmo_io_ops _twrtp_endp_iops_rtcp; |
17 | |
18 int _twrtp_endp_send_rtcp(struct twrtp_endp *endp, bool send_sr, | |
19 const struct timespec *utc, uint32_t rtp_ts); |