blob: 6492860967887c1da3a026e82369b586a3705ff1 [file] [log] [blame]
Philipp Maier40def492017-12-16 03:42:15 +07001#pragma once
2
3#include <stdint.h>
4#include <stdbool.h>
5
Vadim Yanitskiy87b51432019-11-07 22:15:13 +07006#include <osmocom/core/defs.h>
Philipp Maier40def492017-12-16 03:42:15 +07007#include <osmocom/codec/codec.h>
8
Mychaela N. Falconia5eb356b2023-05-12 17:21:25 +00009/* ECU state for GSM-FR - deprecated version only! */
Philipp Maier40def492017-12-16 03:42:15 +070010struct osmo_ecu_fr_state {
11 bool subsequent_lost_frame;
12 uint8_t frame_backup[GSM_FR_BYTES];
13};
14
Philipp Maierae140bc2019-09-19 10:34:11 +020015void osmo_ecu_fr_reset(struct osmo_ecu_fr_state *state, const uint8_t *frame)
Vadim Yanitskiy87b51432019-11-07 22:15:13 +070016 OSMO_DEPRECATED_OUTSIDE("Use generic ECU abstraction layer instead");
Philipp Maierae140bc2019-09-19 10:34:11 +020017int osmo_ecu_fr_conceal(struct osmo_ecu_fr_state *state, uint8_t *frame)
Vadim Yanitskiy87b51432019-11-07 22:15:13 +070018 OSMO_DEPRECATED_OUTSIDE("Use generic ECU abstraction layer instead");
Harald Welte750d8312019-08-01 20:05:05 +020019
20enum osmo_ecu_codec {
21 OSMO_ECU_CODEC_HR,
22 OSMO_ECU_CODEC_FR,
23 OSMO_ECU_CODEC_EFR,
24 OSMO_ECU_CODEC_AMR,
25 _NUM_OSMO_ECU_CODECS
26};
27
28/***********************************************************************
29 * Generic ECU abstraction layer below
30 ***********************************************************************/
31
32/* As the developer and copyright holder of the related code, I hereby
33 * state that any ECU implementation using 'struct osmo_ecu_ops' and
34 * registering with the 'osmo_ecu_register()' function shall not be
35 * considered as a derivative work under any applicable copyright law;
36 * the copyleft terms of GPLv2 shall hence not apply to any such ECU
37 * implementation.
38 *
39 * The intent of the above exception is to allow anyone to combine third
40 * party Error Concealment Unit implementations with libosmocodec.
41 * including but not limited to such published by ETSI.
42 *
43 * -- Harald Welte <laforge@gnumonks.org> on August 1, 2019.
44 */
45
Philipp Maier8bd05b52019-09-16 13:22:00 +020046/* Codec independent ECU state */
Harald Welte750d8312019-08-01 20:05:05 +020047struct osmo_ecu_state {
48 enum osmo_ecu_codec codec;
49 uint8_t data[0];
50};
51
52/* initialize an ECU instance */
53struct osmo_ecu_state *osmo_ecu_init(void *ctx, enum osmo_ecu_codec codec);
54
55/* destroy an ECU instance */
56void osmo_ecu_destroy(struct osmo_ecu_state *st);
57
58/* process a received frame a substitute/erroneous frame */
59int osmo_ecu_frame_in(struct osmo_ecu_state *st, bool bfi,
60 const uint8_t *frame, unsigned int frame_bytes);
61
62/* generate output data for a substitute/erroneous frame */
63int osmo_ecu_frame_out(struct osmo_ecu_state *st, uint8_t *frame_out);
64
Mychaela N. Falconia315e78a2023-06-23 18:42:11 +000065/* is the stream handled by this ECU currently in a DTX pause? */
66bool osmo_ecu_is_dtx_pause(struct osmo_ecu_state *st);
67
Harald Welte750d8312019-08-01 20:05:05 +020068struct osmo_ecu_ops {
69 struct osmo_ecu_state * (*init)(void *ctx, enum osmo_ecu_codec codec);
70 void (*destroy)(struct osmo_ecu_state *);
71 int (*frame_in)(struct osmo_ecu_state *st, bool bfi,
72 const uint8_t *frame, unsigned int frame_bytes);
73 int (*frame_out)(struct osmo_ecu_state *st, uint8_t *frame_out);
Mychaela N. Falconia315e78a2023-06-23 18:42:11 +000074 bool (*is_dtx_pause)(struct osmo_ecu_state *st);
Harald Welte750d8312019-08-01 20:05:05 +020075};
76
77int osmo_ecu_register(const struct osmo_ecu_ops *ops, enum osmo_ecu_codec codec);