FreeCalypso > hg > vband-misc
view pcmu2efr/stdefr-out.c @ 16:17d8ff0944a8
top Makefile: add pcmu2efr
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 16 Apr 2024 23:31:32 +0000 |
parents | 528eef871e23 |
children |
line wrap: on
line source
/* * This program computes 160 possible EFR encoder outputs using standard EFR, * and writes the result out to a gsmx file. */ #include <stdio.h> #include <stdint.h> #include <stdlib.h> extern uint8_t standard_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_std_efr(); outf = fopen(argv[1], "w"); if (!outf) { perror(argv[1]); exit(1); } fwrite(standard_efr, 31, 160, outf); fclose(outf); exit(0); }