view ater/submux.h @ 19:1e375472d5a5

ater: implement TRAU frame output
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 24 Jun 2024 08:07:45 +0000
parents 4ffe22f5b4b5
children 237687e2be6c
line wrap: on
line source

/*
 * The structures and functions defined in this header file deal with
 * interfacing to the Submultiplexer part of Nokia's Transcoder and
 * Submultiplexer.
 */

#pragma once

#include <stdint.h>
#include <stdbool.h>

#include <osmocom/core/bits.h>
#include <osmocom/isdn/i460_mux.h>
#include <osmocom/trau/trau_frame.h>

#define	ATER_SUBSLOTS	4

struct ater_subslot {
	struct osmo_i460_subchan *schan;
	int nr;
	bool is_active;
	bool is_efr;
	struct osmo_trau_frame ul_frame;
	unsigned mfrm_count;
};

extern struct ater_subslot subslots[ATER_SUBSLOTS];

void i460_rx_func(struct osmo_i460_subchan *schan, void *user_data,
		  const ubit_t *bits, unsigned int num_bits);

void init_trau_ul_frame(int nr);