blob: 8f89c56b2083e096cdbc9694e452e3c0323c6755 [file] [log] [blame]
Harald Weltec4cfb802022-11-29 23:16:52 +01001#pragma once
2#include <osmocom/isdn/v110.h>
3
4int osmo_csd_12k_6k_decode_frame(struct osmo_v110_decoded_frame *fr, const ubit_t *ra_bits, size_t n_bits);
5int osmo_csd_12k_6k_encode_frame(ubit_t *ra_bits, size_t ra_bits_size, const struct osmo_v110_decoded_frame *fr);
6int osmo_csd_3k6_decode_frame(struct osmo_v110_decoded_frame *fr, const ubit_t *ra_bits, size_t n_bits);
7int osmo_csd_3k6_encode_frame(ubit_t *ra_bits, size_t ra_bits_size, const struct osmo_v110_decoded_frame *fr);
8void osmo_csd_ubit_dump(FILE *outf, const ubit_t *fr, size_t in_len);