2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2009-02-18 22:27:55 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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"
|
2009-02-18 22:27:55 +01:00
|
|
|
|
2014-01-07 23:57:39 +01:00
|
|
|
#include <stdio.h>
|
2009-02-18 22:27:55 +01:00
|
|
|
#include <stddef.h>
|
2013-12-22 23:26:52 +01:00
|
|
|
#include <stdlib.h>
|
2009-02-18 22:27:55 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-09-05 12:19:20 +02:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
try {
|
2022-07-04 15:27:03 +02:00
|
|
|
static std::byte buffer[4096];
|
2009-02-18 22:27:55 +01:00
|
|
|
ssize_t nbytes;
|
|
|
|
|
|
|
|
if (argc > 2) {
|
2013-12-24 14:44:08 +01:00
|
|
|
fprintf(stderr, "Usage: software_volume [FORMAT] <IN >OUT\n");
|
|
|
|
return EXIT_FAILURE;
|
2009-02-18 22:27:55 +01:00
|
|
|
}
|
|
|
|
|
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-02-18 22:27:55 +01:00
|
|
|
|
2013-12-22 23:26:52 +01:00
|
|
|
PcmVolume pv;
|
2019-07-05 21:01:01 +02:00
|
|
|
const auto out_sample_format = pv.Open(audio_format.format, false);
|
2019-07-05 19:03:00 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
2013-12-22 23:26:52 +01:00
|
|
|
while ((nbytes = read(0, buffer, sizeof(buffer))) > 0) {
|
|
|
|
auto dest = pv.Apply({buffer, size_t(nbytes)});
|
2022-07-04 15:27:03 +02:00
|
|
|
[[maybe_unused]] ssize_t ignored = write(1, dest.data(), dest.size());
|
2009-02-18 22:27:55 +01:00
|
|
|
}
|
2013-12-22 23:26:52 +01:00
|
|
|
|
|
|
|
pv.Close();
|
2018-07-17 21:56:43 +02:00
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
2016-09-05 12:19:20 +02:00
|
|
|
return EXIT_FAILURE;
|
2009-02-18 22:27:55 +01:00
|
|
|
}
|