libosmo-netif  1.8.0
Osmocom network interface library
twjit_private.h
1 /*
2  * Themyscira Wireless RTP jitter buffer implementation:
3  * internal config structure.
4  *
5  * This code was contributed to Osmocom Cellular Network Infrastructure
6  * project by Mother Mychaela N. Falconia of Themyscira Wireless.
7  * Mother Mychaela's contributions are NOT subject to copyright:
8  * no rights reserved, all rights relinquished.
9  */
10 
11 #pragma once
12 
13 #include <stdint.h>
14 #include <stdbool.h>
15 
33 struct osmo_twjit_config {
36  uint16_t bd_start;
39  uint16_t bd_hiwat;
42  uint16_t thinning_int;
45  uint16_t max_future_sec;
48  uint16_t start_min_delta;
51  uint16_t start_max_delta;
57  uint16_t underrun_ext;
64  bool handover_on_marker;
65 };
66