FreeCalypso > hg > gsm-codec-lib
view miscutil/gsmrec-dump.c @ 242:f081a6850fb5
libgsmfrp: new refined implementation
The previous implementation exhibited the following defects,
which are now fixed:
1) The last received valid SID was cached forever for the purpose of
handling future invalid SIDs - we could have received some valid
SID ages ago, then lots of speech or NO_DATA, and if we then get
an invalid SID, we would resurrect the last valid SID from ancient
history - a bad design. In our new design, we handle invalid SID
based on the current state, much like BFI.
2) GSM 06.11 spec says clearly that after the second lost SID
(received BFI=1 && TAF=1 in CN state) we need to gradually decrease
the output level, rather than jump directly to emitting silence
frames - we previously failed to implement such logic.
3) Per GSM 06.12 section 5.2, Xmaxc should be the same in all 4 subframes
in a SID frame. What should we do if we receive an otherwise valid
SID frame with different Xmaxc? Our previous approach would
replicate this Xmaxc oddity in every subsequent generated CN frame,
which is rather bad. In our new design, the very first CN frame
(which can be seen as a transformation of the SID frame itself)
retains the original 4 distinct Xmaxc, but all subsequent CN frames
are based on the Xmaxc from the last subframe of the most recent SID.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 09 May 2023 05:16:31 +0000 |
parents | a5ffec18e4cd |
children | 3816ba89a5a0 |
line wrap: on
line source
/* * This program reads a binary file in our extended-libgsm format * and dumps all frames in human-readable form. */ #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <gsm.h> #include "../libgsmefr/gsm_efr.h" #include "../libtest/binreader.h" main(argc, argv) char **argv; { FILE *binf; gsm dummy_state; unsigned frame_index; uint8_t frame[BINFILE_MAX_FRAME]; gsm_signal params[76]; int rc, i, j, n; if (argc != 2) { fprintf(stderr, "usage: %s bin-stream-file\n", argv[0]); exit(1); } binf = fopen(argv[1], "r"); if (!binf) { perror(argv[1]); exit(1); } dummy_state = gsm_create(); if (!dummy_state) { fprintf(stderr, "gsm_create() failed!\n"); exit(1); } for (frame_index = 0; ; frame_index++) { rc = binfile_read_frame(binf, frame); if (rc < 0) { fprintf(stderr, "error: garbage in %s\n", argv[1]); exit(1); } if (!rc) break; printf("#%u: ", frame_index); switch (frame[0] & 0xF0) { case 0xB0: printf("BFI TAF=%u\n", frame[1] & 1); break; case 0xC0: printf("EFR SID=%d LPC", EFR_sid_classify(frame)); EFR_frame2params(frame, params); n = 0; for (i = 0; i < 5; i++) printf(" %d", params[n++]); putchar('\n'); for (i = 0; i < 4; i++) { putchar(' '); for (j = 0; j < 13; j++) printf(" %d", params[n++]); putchar('\n'); } break; case 0xD0: fputs("FR", stdout); gsm_explode(dummy_state, frame, params); n = 0; for (i = 0; i < 8; i++) printf(" %d", params[n++]); putchar('\n'); for (i = 0; i < 4; i++) { putchar(' '); for (j = 0; j < 17; j++) printf(" %d", params[n++]); putchar('\n'); } break; } } exit(0); }