mpd/test/software_volume.cxx

52 lines
1.2 KiB
C++
Raw Permalink Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
/*
* This program is a command line interface to MPD's software volume
* library (pcm_volume.c).
*
*/
2013-12-22 23:24:42 +01:00
#include "pcm/Volume.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"
2014-01-07 23:57:39 +01:00
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <unistd.h>
int
main(int argc, char **argv)
try {
static std::byte buffer[4096];
ssize_t nbytes;
if (argc > 2) {
fprintf(stderr, "Usage: software_volume [FORMAT] <IN >OUT\n");
return EXIT_FAILURE;
}
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);
PcmVolume pv;
const auto out_sample_format = pv.Open(audio_format.format, false);
if (out_sample_format != audio_format.format)
fprintf(stderr, "Converting to %s\n",
sample_format_to_string(out_sample_format));
2009-11-19 21:00:39 +01:00
while ((nbytes = read(0, buffer, sizeof(buffer))) > 0) {
auto dest = pv.Apply({buffer, size_t(nbytes)});
[[maybe_unused]] ssize_t ignored = write(1, dest.data(), dest.size());
}
pv.Close();
2018-07-17 21:56:43 +02:00
} catch (...) {
PrintException(std::current_exception());
return EXIT_FAILURE;
}