2009-02-18 22:27:55 +01:00
|
|
|
/*
|
2020-01-18 19:22:19 +01:00
|
|
|
* Copyright 2003-2020 The Music Player Daemon Project
|
2009-02-18 22:27:55 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
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"
|
2013-12-22 23:26:52 +01:00
|
|
|
#include "util/ConstBuffer.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 {
|
2009-02-18 22:27:55 +01:00
|
|
|
static char buffer[4096];
|
|
|
|
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)});
|
2020-03-12 20:56:11 +01: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
|
|
|
}
|