2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2009-12-02 21:56:02 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This program is a command line interface to MPD's normalize library
|
|
|
|
* (based on AudioCompress).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2023-03-13 11:56:06 +01:00
|
|
|
#include "pcm/Normalizer.hxx"
|
2020-01-18 20:07:09 +01:00
|
|
|
#include "pcm/AudioParser.hxx"
|
|
|
|
#include "pcm/AudioFormat.hxx"
|
2018-07-17 21:56:43 +02:00
|
|
|
#include "util/PrintException.hxx"
|
2023-03-13 12:45:01 +01:00
|
|
|
#include "util/SpanCast.hxx"
|
2016-10-28 21:46:20 +02:00
|
|
|
|
|
|
|
#include <stdexcept>
|
2009-12-02 21:56:02 +01:00
|
|
|
|
|
|
|
#include <stddef.h>
|
2013-12-15 17:12:43 +01:00
|
|
|
#include <stdio.h>
|
2016-10-28 21:46:20 +02:00
|
|
|
#include <stdlib.h>
|
2009-12-02 21:56:02 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
2016-10-28 21:46:20 +02:00
|
|
|
try {
|
2009-12-02 21:56:02 +01:00
|
|
|
if (argc > 2) {
|
2013-12-15 17:12:43 +01:00
|
|
|
fprintf(stderr, "Usage: run_normalize [FORMAT] <IN >OUT\n");
|
2009-12-02 21:56:02 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
AudioFormat audio_format(48000, SampleFormat::S16, 2);
|
2016-10-28 21:46:20 +02:00
|
|
|
if (argc > 1)
|
|
|
|
audio_format = ParseAudioFormat(argv[1], false);
|
2009-12-02 21:56:02 +01:00
|
|
|
|
2023-03-13 12:12:47 +01:00
|
|
|
PcmNormalizer normalizer;
|
2009-12-02 21:56:02 +01:00
|
|
|
|
2023-03-13 12:45:01 +01:00
|
|
|
static std::byte buffer[4096];
|
|
|
|
ssize_t nbytes;
|
2009-12-02 21:56:02 +01:00
|
|
|
while ((nbytes = read(0, buffer, sizeof(buffer))) > 0) {
|
2023-03-13 13:17:43 +01:00
|
|
|
static int16_t dest[2048];
|
|
|
|
normalizer.ProcessS16(dest, FromBytesStrict<const int16_t>(std::span{buffer}.first(nbytes)));
|
|
|
|
[[maybe_unused]] ssize_t ignored = write(1, dest, nbytes);
|
2009-12-02 21:56:02 +01:00
|
|
|
}
|
|
|
|
|
2016-10-28 21:46:20 +02:00
|
|
|
return EXIT_SUCCESS;
|
2018-07-17 21:56:43 +02:00
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
2016-10-28 21:46:20 +02:00
|
|
|
return EXIT_FAILURE;
|
2009-12-02 21:56:02 +01:00
|
|
|
}
|