2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2009-07-05 06:54:48 +02:00
|
|
|
|
2019-02-05 21:56:20 +01:00
|
|
|
#include "ConfigGlue.hxx"
|
2021-12-06 10:29:31 +01:00
|
|
|
#include "ReadFrames.hxx"
|
2024-10-30 22:13:49 +01:00
|
|
|
#include "cmdline/OptionDef.hxx"
|
|
|
|
#include "cmdline/OptionParser.hxx"
|
2022-11-28 21:58:21 +01:00
|
|
|
#include "lib/fmt/RuntimeError.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"
|
2018-07-17 21:56:43 +02:00
|
|
|
#include "util/PrintException.hxx"
|
2024-10-30 22:13:49 +01:00
|
|
|
#include "LogBackend.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
|
|
|
|
2024-10-30 22:13:49 +01:00
|
|
|
struct CommandLine {
|
|
|
|
FromNarrowPath config_path;
|
|
|
|
|
|
|
|
const char *filter_name = nullptr;
|
|
|
|
|
|
|
|
AudioFormat audio_format{44100, SampleFormat::S16, 2};
|
|
|
|
|
|
|
|
bool verbose = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Option {
|
|
|
|
OPTION_VERBOSE,
|
|
|
|
};
|
|
|
|
|
|
|
|
static constexpr OptionDef option_defs[] = {
|
|
|
|
{"verbose", 'v', false, "Verbose logging"},
|
|
|
|
};
|
|
|
|
|
|
|
|
static CommandLine
|
|
|
|
ParseCommandLine(int argc, char **argv)
|
|
|
|
{
|
|
|
|
CommandLine c;
|
|
|
|
|
|
|
|
OptionParser option_parser(option_defs, argc, argv);
|
|
|
|
while (auto o = option_parser.Next()) {
|
|
|
|
switch (Option(o.index)) {
|
|
|
|
case OPTION_VERBOSE:
|
|
|
|
c.verbose = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto args = option_parser.GetRemaining();
|
|
|
|
if (args.size() < 2 || args.size() > 3)
|
|
|
|
throw std::runtime_error("Usage: run_filter CONFIG NAME [FORMAT] <IN");
|
|
|
|
|
|
|
|
c.config_path = args[0];
|
|
|
|
c.filter_name = args[1];
|
|
|
|
|
|
|
|
if (args.size() > 2)
|
|
|
|
c.audio_format = ParseAudioFormat(args[2], false);
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
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)
|
2022-11-28 21:58:21 +01:00
|
|
|
throw FmtRuntimeError("No such configured filter: {}",
|
|
|
|
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 {
|
2024-10-30 22:13:49 +01:00
|
|
|
const auto c = ParseCommandLine(argc, argv);
|
|
|
|
SetLogThreshold(c.verbose ? LogLevel::DEBUG : LogLevel::INFO);
|
2009-07-19 17:24:43 +02:00
|
|
|
|
2009-07-05 06:54:48 +02:00
|
|
|
/* read configuration file (mpd.conf) */
|
|
|
|
|
2024-10-30 22:13:49 +01:00
|
|
|
const auto config = AutoLoadConfigFile(c.config_path);
|
2009-07-05 06:54:48 +02:00
|
|
|
|
2024-10-30 22:13:49 +01:00
|
|
|
auto audio_format = c.audio_format;
|
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));
|
2023-09-26 20:40:05 +02:00
|
|
|
output_fd.FullWrite(dest);
|
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;
|
2023-09-26 20:40:05 +02:00
|
|
|
output_fd.FullWrite(dest);
|
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
|
|
|
}
|