view v110/v110-dump8.c @ 39:957c20852c7c

new program v110-dump8
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 12 Sep 2024 21:38:22 +0000
parents trau-decode/trau-hr-dump.c@9bcdb091c24d
children 796cc2d94204
line wrap: on
line source

/*
 * 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 <sys/types.h>
#include <sys/file.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <unistd.h>

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);
}