FreeCalypso > hg > vband-misc
view pcmu2efr/amrefr-out.c @ 20:f5f541bc9415
pcmu2efr: check all generated frames against DHF
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 12 May 2024 03:06:12 +0000 |
parents | 2bdcd2ed9a1c |
children |
line wrap: on
line source
/* * This program computes 160 possible EFR encoder outputs using AMR-EFR hybrid, * and writes the result out to a gsmx file. */ #include <stdio.h> #include <stdint.h> #include <stdlib.h> extern uint8_t amr_efr[160][31]; main(argc, argv) char **argv; { FILE *outf; if (argc != 2) { fprintf(stderr, "usage: %s gsmx-out-file\n", argv[0]); exit(1); } generate_linear_inputs(); generate_amr_efr(); outf = fopen(argv[1], "w"); if (!outf) { perror(argv[1]); exit(1); } fwrite(amr_efr, 31, 160, outf); fclose(outf); exit(0); }