2009-07-05 06:54:48 +02:00
|
|
|
/*
|
2022-07-14 17:58:12 +02:00
|
|
|
* Copyright 2003-2022 The Music Player Daemon Project
|
2009-07-05 06:54:48 +02: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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2019-02-05 21:56:20 +01:00
|
|
|
#include "ConfigGlue.hxx"
|
2021-12-06 10:29:31 +01:00
|
|
|
#include "ReadFrames.hxx"
|
2013-01-29 17:23:35 +01:00
|
|
|
#include "fs/Path.hxx"
|
2020-04-02 16:40:18 +02:00
|
|
|
#include "fs/NarrowPath.hxx"
|
2018-01-02 23:06:53 +01:00
|
|
|
#include "filter/LoadOne.hxx"
|
2018-01-01 18:48:34 +01:00
|
|
|
#include "filter/Filter.hxx"
|
|
|
|
#include "filter/Prepared.hxx"
|
2020-01-18 20:07:09 +01:00
|
|
|
#include "pcm/AudioParser.hxx"
|
|
|
|
#include "pcm/AudioFormat.hxx"
|
2013-12-22 23:24:42 +01:00
|
|
|
#include "pcm/Volume.hxx"
|
2022-08-18 17:00:45 +02:00
|
|
|
#include "mixer/Control.hxx"
|
2019-03-14 14:13:53 +01:00
|
|
|
#include "system/Error.hxx"
|
2020-05-05 14:11:13 +02:00
|
|
|
#include "io/FileDescriptor.hxx"
|
2017-01-17 22:04:31 +01:00
|
|
|
#include "util/StringBuffer.hxx"
|
2017-12-27 12:03:13 +01:00
|
|
|
#include "util/RuntimeError.hxx"
|
2018-07-17 21:56:43 +02:00
|
|
|
#include "util/PrintException.hxx"
|
2009-07-05 06:54:48 +02:00
|
|
|
|
2020-03-12 23:20:59 +01:00
|
|
|
#include <cassert>
|
2016-06-22 11:15:49 +02:00
|
|
|
#include <memory>
|
2016-10-28 21:46:20 +02:00
|
|
|
#include <stdexcept>
|
2016-06-22 11:15:49 +02:00
|
|
|
|
2009-07-05 06:54:48 +02:00
|
|
|
#include <string.h>
|
2014-01-07 23:57:39 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2009-07-05 06:54:48 +02:00
|
|
|
|
2017-12-27 09:17:15 +01:00
|
|
|
static std::unique_ptr<PreparedFilter>
|
2018-07-17 22:11:57 +02:00
|
|
|
LoadFilter(const ConfigData &config, const char *name)
|
2009-07-05 06:54:48 +02:00
|
|
|
{
|
2018-07-17 22:11:57 +02:00
|
|
|
const auto *param = config.FindBlock(ConfigBlockOption::AUDIO_FILTER,
|
|
|
|
"name", name);
|
2020-02-01 13:49:19 +01:00
|
|
|
if (param == nullptr)
|
2017-12-27 12:03:13 +01:00
|
|
|
throw FormatRuntimeError("No such configured filter: %s",
|
|
|
|
name);
|
2009-07-05 06:54:48 +02:00
|
|
|
|
2016-09-04 20:07:05 +02:00
|
|
|
return filter_configured_new(*param);
|
2009-07-05 06:54:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
2015-12-16 11:12:30 +01:00
|
|
|
try {
|
2009-07-05 06:54:48 +02:00
|
|
|
if (argc < 3 || argc > 4) {
|
2013-12-24 14:44:08 +01:00
|
|
|
fprintf(stderr, "Usage: run_filter CONFIG NAME [FORMAT] <IN\n");
|
|
|
|
return EXIT_FAILURE;
|
2009-07-05 06:54:48 +02:00
|
|
|
}
|
|
|
|
|
2020-04-02 16:40:18 +02:00
|
|
|
const FromNarrowPath config_path = argv[1];
|
2013-01-29 17:23:35 +01:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
AudioFormat audio_format(44100, SampleFormat::S16, 2);
|
2009-07-19 17:24:43 +02:00
|
|
|
|
2009-07-05 06:54:48 +02:00
|
|
|
/* read configuration file (mpd.conf) */
|
|
|
|
|
2019-02-05 21:56:20 +01:00
|
|
|
const auto config = AutoLoadConfigFile(config_path);
|
2009-07-05 06:54:48 +02:00
|
|
|
|
|
|
|
/* parse the audio format */
|
|
|
|
|
2016-10-28 21:46:20 +02:00
|
|
|
if (argc > 3)
|
|
|
|
audio_format = ParseAudioFormat(argv[3], false);
|
2009-07-05 06:54:48 +02:00
|
|
|
|
2019-03-14 14:13:53 +01:00
|
|
|
const size_t in_frame_size = audio_format.GetFrameSize();
|
|
|
|
|
2009-07-05 06:54:48 +02:00
|
|
|
/* initialize the filter */
|
|
|
|
|
2018-07-17 22:11:57 +02:00
|
|
|
auto prepared_filter = LoadFilter(config, argv[2]);
|
2009-07-05 06:54:48 +02:00
|
|
|
|
|
|
|
/* open the filter */
|
|
|
|
|
2018-01-01 19:06:17 +01:00
|
|
|
auto filter = prepared_filter->Open(audio_format);
|
2009-07-05 06:54:48 +02:00
|
|
|
|
2016-06-22 11:15:49 +02:00
|
|
|
const AudioFormat out_audio_format = filter->GetOutAudioFormat();
|
|
|
|
|
2013-12-24 14:44:08 +01:00
|
|
|
fprintf(stderr, "audio_format=%s\n",
|
2017-01-17 22:04:31 +01:00
|
|
|
ToString(out_audio_format).c_str());
|
2009-07-05 06:54:48 +02:00
|
|
|
|
|
|
|
/* play */
|
|
|
|
|
2019-03-25 08:53:58 +01:00
|
|
|
FileDescriptor input_fd(STDIN_FILENO);
|
|
|
|
FileDescriptor output_fd(STDOUT_FILENO);
|
|
|
|
|
2009-07-05 06:54:48 +02:00
|
|
|
while (true) {
|
2022-07-04 18:12:12 +02:00
|
|
|
std::byte buffer[4096];
|
2019-03-14 13:57:21 +01:00
|
|
|
|
2019-03-25 08:53:58 +01:00
|
|
|
ssize_t nbytes = ReadFrames(input_fd, buffer, sizeof(buffer),
|
2019-03-14 14:13:53 +01:00
|
|
|
in_frame_size);
|
|
|
|
if (nbytes == 0)
|
2009-07-05 06:54:48 +02:00
|
|
|
break;
|
|
|
|
|
2022-07-04 18:12:12 +02:00
|
|
|
auto dest = filter->FilterPCM(std::span{buffer}.first(nbytes));
|
|
|
|
output_fd.FullWrite(dest.data(), dest.size());
|
2009-07-05 06:54:48 +02:00
|
|
|
}
|
|
|
|
|
2019-08-26 21:14:02 +02:00
|
|
|
while (true) {
|
|
|
|
auto dest = filter->Flush();
|
2022-07-04 18:12:12 +02:00
|
|
|
if (dest.data() == nullptr)
|
2019-08-26 21:14:02 +02:00
|
|
|
break;
|
2022-07-04 18:12:12 +02:00
|
|
|
output_fd.FullWrite(dest.data(), dest.size());
|
2019-08-26 21:14:02 +02:00
|
|
|
}
|
|
|
|
|
2009-07-05 06:54:48 +02:00
|
|
|
/* cleanup and exit */
|
|
|
|
|
2015-12-16 11:12:30 +01:00
|
|
|
return EXIT_SUCCESS;
|
2018-07-17 21:56:43 +02:00
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
2015-12-16 11:12:30 +01:00
|
|
|
return EXIT_FAILURE;
|
2016-09-04 14:32:09 +02:00
|
|
|
}
|