mirror of
https://github.com/steve-m/hsdaoh.git
synced 2026-03-14 21:09:44 +01:00
351 lines
8.8 KiB
C
351 lines
8.8 KiB
C
/*
|
|
* hsdaoh - High Speed Data Acquisition over MS213x USB3 HDMI capture sticks
|
|
*
|
|
* Copyright (C) 2024 by Steve Markgraf <steve@steve-m.de>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <errno.h>
|
|
#include <signal.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
|
|
#ifndef _WIN32
|
|
#include <unistd.h>
|
|
#else
|
|
#include <windows.h>
|
|
#include <io.h>
|
|
#include <fcntl.h>
|
|
#include <getopt.h>
|
|
#define usleep(t) Sleep((t)/1000)
|
|
#endif
|
|
|
|
#include "FLAC/metadata.h"
|
|
#include "FLAC/stream_encoder.h"
|
|
|
|
#include "hsdaoh.h"
|
|
|
|
#define FD_NUMS 6
|
|
|
|
static bool do_exit = false;
|
|
static hsdaoh_dev_t *dev = NULL;
|
|
static uint32_t flac_level = 5;
|
|
static uint32_t flac_nthreads = 4;
|
|
|
|
typedef struct file_ctx {
|
|
FILE *files[FD_NUMS];
|
|
bool use_flac[FD_NUMS];
|
|
FLAC__StreamEncoder *encoder[FD_NUMS];
|
|
FLAC__StreamMetadata *seektable[FD_NUMS];
|
|
} file_ctx_t;
|
|
|
|
void usage(void)
|
|
{
|
|
fprintf(stderr,
|
|
"hsdaoh_file, HDMI data acquisition tool\n\n"
|
|
"Usage:\n"
|
|
"\t[-d device_index (default: 0)]\n"
|
|
"\t[-b maximum number of buffers (default: 96)]\n"
|
|
"\t[-l FLAC compression level (default: 5)]\n"
|
|
#ifdef FLAC__STREAM_ENCODER_SET_NUM_THREADS_OK
|
|
"\t[-t number of threads for FLAC encoding (default: 4)]\n"
|
|
#endif
|
|
"\t[-0 to -5 filename of stream 0 to stream 5 (a '-' dumps samples to stdout)]\n"
|
|
"\tfilename (of stream 0) (a '-' dumps samples to stdout)\n\n"
|
|
"\tFilenames with the extension .flac will enable FLAC encoding\n\n");
|
|
exit(1);
|
|
}
|
|
|
|
#ifdef _WIN32
|
|
BOOL WINAPI
|
|
sighandler(int signum)
|
|
{
|
|
if (CTRL_C_EVENT == signum) {
|
|
fprintf(stderr, "Signal caught, exiting!\n");
|
|
do_exit = true;
|
|
hsdaoh_stop_stream(dev);
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
#else
|
|
static void sighandler(int signum)
|
|
{
|
|
signal(SIGPIPE, SIG_IGN);
|
|
fprintf(stderr, "Signal caught, exiting!\n");
|
|
do_exit = true;
|
|
hsdaoh_stop_stream(dev);
|
|
}
|
|
#endif
|
|
|
|
static void hsdaoh_callback(hsdaoh_data_info_t *data_info)
|
|
{
|
|
size_t nbytes = 0;
|
|
uint32_t len = data_info->len;
|
|
|
|
if (!data_info->ctx || do_exit)
|
|
return;
|
|
|
|
if (data_info->stream_id >= FD_NUMS)
|
|
return;
|
|
|
|
file_ctx_t *f = (file_ctx_t *)data_info->ctx;
|
|
FILE *file = f->files[data_info->stream_id];
|
|
|
|
if (!file)
|
|
return;
|
|
|
|
FLAC__StreamEncoder *encoder = f->encoder[data_info->stream_id];
|
|
/* allocate FLAC encoder if required */
|
|
if (f->use_flac[data_info->stream_id] && !encoder) {
|
|
FLAC__bool ret = true;
|
|
FLAC__StreamEncoderInitStatus init_status;
|
|
|
|
if ((encoder = FLAC__stream_encoder_new()) == NULL) {
|
|
fprintf(stderr, "ERROR: failed allocating FLAC encoder\n");
|
|
do_exit = true;
|
|
return;
|
|
}
|
|
|
|
ret &= FLAC__stream_encoder_set_verify(encoder, false);
|
|
ret &= FLAC__stream_encoder_set_compression_level(encoder, flac_level);
|
|
ret &= FLAC__stream_encoder_set_sample_rate(encoder,
|
|
data_info->srate > FLAC__MAX_SAMPLE_RATE ?
|
|
data_info->srate/1000 : data_info->srate);
|
|
|
|
ret &= FLAC__stream_encoder_set_channels(encoder, data_info->nchans);
|
|
ret &= FLAC__stream_encoder_set_bits_per_sample(encoder, data_info->bits_per_samp);
|
|
ret &= FLAC__stream_encoder_set_total_samples_estimate(encoder, 0);
|
|
ret &= FLAC__stream_encoder_set_streamable_subset(encoder, false);
|
|
|
|
#ifdef FLAC__STREAM_ENCODER_SET_NUM_THREADS_OK
|
|
if (FLAC__stream_encoder_set_num_threads(encoder, flac_nthreads) != FLAC__STREAM_ENCODER_SET_NUM_THREADS_OK)
|
|
ret = false;
|
|
#endif
|
|
|
|
if (!ret) {
|
|
fprintf(stderr, "ERROR: failed initializing FLAC encoder\n");
|
|
do_exit = true;
|
|
return;
|
|
}
|
|
|
|
init_status = FLAC__stream_encoder_init_FILE(encoder, f->files[data_info->stream_id], NULL, NULL);
|
|
if (init_status != FLAC__STREAM_ENCODER_INIT_STATUS_OK) {
|
|
fprintf(stderr, "ERROR: failed initializing FLAC encoder: %s\n", FLAC__StreamEncoderInitStatusString[init_status]);
|
|
do_exit = true;
|
|
return;
|
|
}
|
|
|
|
f->encoder[data_info->stream_id] = encoder;
|
|
}
|
|
|
|
if (f->use_flac[data_info->stream_id]) {
|
|
/* write FLAC output */
|
|
FLAC__bool ok = false;
|
|
FLAC__int32 offset = data_info->is_signed ? 0 : 1 << (data_info->bits_per_samp - 1);
|
|
int bytes_per_samp = ((data_info->bits_per_samp - 1) / 8) + 1;
|
|
int nsamps = len / bytes_per_samp;
|
|
FLAC__int32 *out = malloc(nsamps * sizeof(FLAC__int32));
|
|
int i = 0;
|
|
|
|
if (bytes_per_samp == 1) {
|
|
/* data encoded in uint8 */
|
|
uint8_t *dat = (uint8_t *)data_info->buf;
|
|
|
|
for (; i < nsamps; i++)
|
|
out[i] = dat[i] - offset;
|
|
} else if (bytes_per_samp == 2) {
|
|
/* data encoded in uint16 */
|
|
uint16_t *dat = (uint16_t *)data_info->buf;
|
|
|
|
for (; i < nsamps; i++)
|
|
out[i] = dat[i] - offset;
|
|
} else if (bytes_per_samp == 3) {
|
|
/* data encoded in 3 * uint8 */
|
|
uint8_t *dat = (uint8_t *)data_info->buf;
|
|
int j = 0;
|
|
|
|
for (; i < nsamps; i++) {
|
|
/* convert S24_3LE and take care of sign extension */
|
|
FLAC__int32 samp = (FLAC__int32)((dat[j+2] << 24) | (dat[j+1] << 16) | (dat[j] << 8));
|
|
//samp /= 256;
|
|
samp >>= (32 - data_info->bits_per_samp);
|
|
j += 3;
|
|
out[i] = samp - offset;
|
|
}
|
|
} else {
|
|
/* data encoded in uint32 */
|
|
uint32_t *dat = (uint32_t *)data_info->buf;
|
|
|
|
for (; i < nsamps; i++)
|
|
out[i] = dat[i] - offset;
|
|
}
|
|
|
|
ok = FLAC__stream_encoder_process_interleaved(f->encoder[data_info->stream_id], out, nsamps / data_info->nchans);
|
|
free(out);
|
|
|
|
if (!ok && encoder) {
|
|
fprintf(stderr, "ERROR: () FLAC encoder could not process data: %s\n",
|
|
FLAC__StreamEncoderStateString[FLAC__stream_encoder_get_state(encoder)]);
|
|
hsdaoh_stop_stream(dev);
|
|
}
|
|
} else {
|
|
/* write raw file output */
|
|
while (nbytes < len) {
|
|
nbytes += fwrite(data_info->buf + nbytes, 1, len - nbytes, file);
|
|
|
|
if (ferror(file)) {
|
|
fprintf(stderr, "Error writing file, samples lost, exiting!\n");
|
|
hsdaoh_stop_stream(dev);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
#ifndef _WIN32
|
|
struct sigaction sigact;
|
|
#endif
|
|
char *filenames[FD_NUMS] = { NULL, };
|
|
int n_read;
|
|
int r, opt;
|
|
file_ctx_t f = { 0 };
|
|
int dev_index = 0;
|
|
unsigned int num_bufs = 0;
|
|
bool fname0_used = false;
|
|
bool have_file = false;
|
|
|
|
while ((opt = getopt(argc, argv, "0:1:2:3:4:5:d:b:l:t:")) != -1) {
|
|
if (isdigit(opt)) {
|
|
int num = opt - 0x30;
|
|
have_file = true;
|
|
filenames[num] = optarg;
|
|
if (num == 0)
|
|
fname0_used = true;
|
|
|
|
continue;
|
|
}
|
|
|
|
switch (opt) {
|
|
case 'd':
|
|
dev_index = (uint32_t)atoi(optarg);
|
|
break;
|
|
case 'b':
|
|
num_bufs = (unsigned int)atoi(optarg);
|
|
break;
|
|
case 'l':
|
|
flac_level = atoi(optarg);
|
|
break;
|
|
case 't':
|
|
flac_nthreads = atoi(optarg);
|
|
break;
|
|
default:
|
|
usage();
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!fname0_used) {
|
|
if (argc <= optind) {
|
|
if (!have_file)
|
|
usage();
|
|
} else
|
|
filenames[0] = argv[optind];
|
|
}
|
|
|
|
if (dev_index < 0)
|
|
exit(1);
|
|
|
|
r = hsdaoh_open(&dev, (uint32_t)dev_index);
|
|
if (r < 0) {
|
|
fprintf(stderr, "Failed to open hsdaoh device #%d.\n", dev_index);
|
|
exit(1);
|
|
}
|
|
#ifndef _WIN32
|
|
sigact.sa_handler = sighandler;
|
|
sigemptyset(&sigact.sa_mask);
|
|
sigact.sa_flags = 0;
|
|
sigaction(SIGINT, &sigact, NULL);
|
|
sigaction(SIGTERM, &sigact, NULL);
|
|
sigaction(SIGQUIT, &sigact, NULL);
|
|
sigaction(SIGPIPE, &sigact, NULL);
|
|
#else
|
|
SetConsoleCtrlHandler( (PHANDLER_ROUTINE) sighandler, TRUE );
|
|
#endif
|
|
|
|
for (int i = 0; i < FD_NUMS; i++) {
|
|
f.files[i] = NULL;
|
|
f.encoder[i] = NULL;
|
|
|
|
if (!filenames[i])
|
|
continue;
|
|
|
|
if (strcmp(filenames[i], "-") == 0) { /* Write samples to stdout */
|
|
f.files[i] = stdout;
|
|
#ifdef _WIN32
|
|
_setmode(_fileno(stdin), _O_BINARY);
|
|
#endif
|
|
} else {
|
|
f.files[i] = fopen(filenames[i], "wb");
|
|
if (!f.files[i]) {
|
|
fprintf(stderr, "Failed to open %s\n", filenames[i]);
|
|
goto out;
|
|
}
|
|
|
|
char *dot = strrchr(filenames[i], '.');
|
|
if (dot && !strcmp(dot, ".flac"))
|
|
f.use_flac[i] = true;
|
|
else
|
|
f.use_flac[i] = false;
|
|
}
|
|
}
|
|
|
|
r = hsdaoh_start_stream(dev, hsdaoh_callback, (void *)&f, num_bufs);
|
|
|
|
while (!do_exit && !r)
|
|
usleep(50000);
|
|
|
|
if (do_exit)
|
|
fprintf(stderr, "\nUser cancel, exiting...\n");
|
|
else
|
|
fprintf(stderr, "\nLibrary error %d, exiting...\n", r);
|
|
|
|
hsdaoh_close(dev);
|
|
|
|
for (int i = 0; i < FD_NUMS; i++) {
|
|
if (!f.files[i])
|
|
continue;
|
|
|
|
if (f.use_flac[i] && f.encoder[i]) {
|
|
FLAC__bool ret = FLAC__stream_encoder_finish(f.encoder[i]);
|
|
|
|
if (!ret)
|
|
fprintf(stderr, "ERROR: FLAC encoder did not finish correctly: %s\n",
|
|
FLAC__StreamEncoderStateString[FLAC__stream_encoder_get_state(f.encoder[i])]);
|
|
|
|
FLAC__stream_encoder_delete(f.encoder[i]);
|
|
} else if (f.files[i] != stdout)
|
|
fclose(f.files[i]);
|
|
}
|
|
|
|
out:
|
|
return r >= 0 ? r : -r;
|
|
}
|