FreeCalypso > hg > gsm-codec-lib
view libgsmfrp/bad_frame.c @ 183:452c1d5a6268
libgsmefr BFI w/o data: emit zero output after decoder reset
In real-life usage, each EFR decoder session will most likely begin
with lots of BFI frames before the first real frame arrives. However,
because the spec-defined home state of the decoder is speech rather
than CN, our regular logic for BFI w/o data would have to feed
pseudorandom noise to the decoder (in the "fixed codebook excitation
pulses" part), which is silly to do at the beginning of the decoder
session right out of reset. Therefore, let's check reset_flag_old,
and if we are still in the reset state, simply emit zero output.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 03 Jan 2023 00:12:18 +0000 |
parents | 2361a7d8c1eb |
children | f081a6850fb5 |
line wrap: on
line source
/* * In this module we implement our handling of BFI frame gaps. */ #include <stdint.h> #include <string.h> #include "gsm_fr_preproc.h" #include "internal.h" static int reduce_xmaxc(gsm_byte *frame) { int mute_flag = 1; unsigned sub, xmaxc; for (sub = 0; sub < 4; sub++) { xmaxc = ((frame[sub*7+6] & 0x1F) << 1) | (frame[sub*7+7] >> 7); if (xmaxc > 4) { xmaxc -= 4; mute_flag = 0; } else xmaxc = 0; frame[sub*7+6] &= 0xE0; frame[sub*7+6] |= xmaxc >> 1; frame[sub*7+7] &= 0x7F; frame[sub*7+7] |= (xmaxc & 1) << 7; } return mute_flag; } static void random_grid_pos(struct gsmfr_preproc_state *st, gsm_byte *frame) { unsigned sub, Mc; for (sub = 0; sub < 4; sub++) { Mc = gsmfr_preproc_prng(st, 2); frame[sub*7+6] &= 0x9F; frame[sub*7+6] |= Mc << 5; } } void gsmfr_preproc_bfi(struct gsmfr_preproc_state *st, int taf, gsm_byte *frame) { int mute; switch (st->rx_state) { case NO_DATA: memcpy(frame, &gsmfr_preproc_silence_frame, sizeof(gsm_frame)); return; case SPEECH: memcpy(frame, &st->speech_frame, sizeof(gsm_frame)); st->rx_state = SPEECH_MUTING; return; case SPEECH_MUTING: mute = reduce_xmaxc(st->speech_frame); memcpy(frame, &st->speech_frame, sizeof(gsm_frame)); random_grid_pos(st, frame); if (mute) st->rx_state = NO_DATA; return; case COMFORT_NOISE: gsmfr_preproc_gen_cn(st, frame); if (taf) st->rx_state = LOST_SID; return; case LOST_SID: gsmfr_preproc_gen_cn(st, frame); if (taf) st->rx_state = NO_DATA; return; } }