FreeCalypso > hg > gsm-codec-lib
comparison libgsmfr2/enc_wrap.c @ 274:52c667f17d2c
libgsmfr2: implement gsmfr_0610_encode_frame() wrapper
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 14 Apr 2024 02:57:18 +0000 |
parents | libgsmefr/enc_wrap.c@269d341db403 |
children |
comparison
equal
deleted
inserted
replaced
273:0be493a1e0d6 | 274:52c667f17d2c |
---|---|
1 /* | |
2 * This module contains our gsmfr_0610_encode_frame() function, which is | |
3 * the primary (most common, most useful) interface to our GSM 06.10 encoder. | |
4 */ | |
5 | |
6 #include <stdint.h> | |
7 #include "tw_gsmfr.h" | |
8 | |
9 void gsmfr_0610_encode_frame(struct gsmfr_0610_state *st, const int16_t *pcm, | |
10 uint8_t *frame) | |
11 { | |
12 struct gsmfr_param_frame param; | |
13 | |
14 gsmfr_0610_encode_params(st, pcm, ¶m); | |
15 gsmfr_pack_frame(¶m, frame); | |
16 } |