mpd/test/run_normalize.cxx

53 lines
1.1 KiB
C++
Raw Normal View History

// 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).
*
*/
2021-12-03 16:04:07 +01:00
#include "pcm/AudioCompress/compress.h"
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"
2016-10-28 21:46:20 +02:00
#include <stdexcept>
2009-12-02 21:56:02 +01:00
#include <stddef.h>
#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 {
struct Compressor *compressor;
2009-12-02 21:56:02 +01:00
static char buffer[4096];
ssize_t nbytes;
if (argc > 2) {
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
compressor = Compressor_new(0);
2009-12-02 21:56:02 +01:00
while ((nbytes = read(0, buffer, sizeof(buffer))) > 0) {
Compressor_Process_int16(compressor,
(int16_t *)buffer, nbytes / 2);
[[maybe_unused]] ssize_t ignored = write(1, buffer, nbytes);
2009-12-02 21:56:02 +01:00
}
Compressor_delete(compressor);
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
}