# HG changeset patch # User Mychaela Falconia # Date 1726177102 0 # Node ID 957c20852c7cc92df133d4d1fbae9432a0ef8033 # Parent d7674c80426ccbab766ba7119572a9a170030efa new program v110-dump8 diff -r d7674c80426c -r 957c20852c7c .hgignore --- a/.hgignore Thu Sep 12 19:50:29 2024 +0000 +++ b/.hgignore Thu Sep 12 21:38:22 2024 +0000 @@ -21,3 +21,5 @@ ^trau-ul-prep/efrdec2tsrc$ ^trau-ul-prep/gsmx2tsrc$ + +^v110/v110-dump8$ diff -r d7674c80426c -r 957c20852c7c v110/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/v110/Makefile Thu Sep 12 21:38:22 2024 +0000 @@ -0,0 +1,11 @@ +CC= gcc +CFLAGS= -O2 +PROGS= v110-dump8 + +all: ${PROGS} + +v110-dump8: v110-dump8.c + ${CC} ${CFLAGS} -o $@ $@.c + +clean: + rm -f *.o ${PROGS} diff -r d7674c80426c -r 957c20852c7c v110/v110-dump8.c --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/v110/v110-dump8.c Thu Sep 12 21:38:22 2024 +0000 @@ -0,0 +1,134 @@ +/* + * This program reads a 64 kbit/s timeslot recording file, examines it + * as V.110 with 8 kbit/s intermediate rate, locates 80-bit V.110 frames + * and dumps them in a mostly raw form. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +static const uint8_t *filebuf; +static unsigned total_size; + +static void +read_ts_file(filename) + char *filename; +{ + int fd; + struct stat st; + + fd = open(filename, O_RDONLY); + if (fd < 0) { + perror(filename); + exit(1); + } + fstat(fd, &st); + if (!S_ISREG(st.st_mode)) { + fprintf(stderr, "error: %s is not a regular file\n", filename); + exit(1); + } + total_size = st.st_size; + if (total_size < 80) { + fprintf(stderr, "error: %s is too short\n", filename); + exit(1); + } + filebuf = mmap(NULL, total_size, PROT_READ, MAP_PRIVATE, fd, 0); + if (filebuf == MAP_FAILED) { + perror("mmap"); + exit(1); + } + close(fd); +} + +static int +check_sync(pos) + unsigned pos; +{ + const uint8_t *cand = filebuf + pos; + unsigned n; + + for (n = 0; n < 8; n++) { + if (cand[n] & 0x80) + return 0; + } + for (n = 1; n < 10; n++) { + if (!(cand[n * 8] & 0x80)) + return 0; + } + return 1; +} + +static unsigned +extract_data_byte(pos) + unsigned pos; +{ + const uint8_t *src = filebuf + pos; + unsigned accum; + unsigned n; + + accum = 0; + for (n = 0; n < 8; n++) { + accum <<= 1; + if (*src & 0x80) + accum |= 1; + src++; + } + return accum; +} + +static void +process_frame(pos) + unsigned pos; +{ + unsigned nb; + + printf("Frame at 0x%x:", pos); + pos += 8; + for (nb = 0; nb < 9; nb++) { + printf(" %02X", extract_data_byte(pos)); + pos += 8; + } + putchar('\n'); +} + +static void +process_filebuf() +{ + unsigned p, endp; + int sync = 0, match; + + endp = total_size - 80; + for (p = 0; p < endp; ) { + match = check_sync(p); + if (match != sync) { + printf("# %s frame sync at file offset 0x%x\n", + match ? "Acquired" : "Lost", p); + } + if (match) { + process_frame(p); + p += 80; + } else + p++; + sync = match; + } +} + +main(argc, argv) + char **argv; +{ + if (argc != 2) { + fprintf(stderr, "usage: %s binfile\n", argv[0]); + exit(1); + } + read_ts_file(argv[1]); + process_filebuf(); + exit(0); +}