2009-07-05 06:54:48 +02:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 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.
|
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2015-01-21 21:14:25 +01:00
|
|
|
#include "config/Param.hxx"
|
2014-01-24 00:20:01 +01:00
|
|
|
#include "config/ConfigGlobal.hxx"
|
2013-01-29 17:23:35 +01:00
|
|
|
#include "fs/Path.hxx"
|
2013-01-30 21:47:12 +01:00
|
|
|
#include "AudioParser.hxx"
|
2013-08-03 21:00:50 +02:00
|
|
|
#include "AudioFormat.hxx"
|
2014-01-24 16:31:52 +01:00
|
|
|
#include "filter/FilterPlugin.hxx"
|
|
|
|
#include "filter/FilterInternal.hxx"
|
2013-12-22 23:24:42 +01:00
|
|
|
#include "pcm/Volume.hxx"
|
2014-01-24 16:25:21 +01:00
|
|
|
#include "mixer/MixerControl.hxx"
|
2014-08-12 16:09:07 +02:00
|
|
|
#include "util/ConstBuffer.hxx"
|
2017-01-17 22:04:31 +01:00
|
|
|
#include "util/StringBuffer.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "system/FatalError.hxx"
|
2013-12-24 14:44:08 +01:00
|
|
|
#include "Log.hxx"
|
2009-07-05 06:54:48 +02:00
|
|
|
|
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 <assert.h>
|
|
|
|
#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
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-09-09 12:52:51 +02:00
|
|
|
void
|
2013-04-16 21:33:25 +02:00
|
|
|
mixer_set_volume(gcc_unused Mixer *mixer,
|
2016-09-09 12:52:51 +02:00
|
|
|
gcc_unused unsigned volume)
|
2010-02-16 08:55:37 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-06-22 11:15:49 +02:00
|
|
|
static PreparedFilter *
|
2009-07-05 06:54:48 +02:00
|
|
|
load_filter(const char *name)
|
|
|
|
{
|
2015-01-21 22:13:44 +01:00
|
|
|
const auto *param = config_find_block(ConfigBlockOption::AUDIO_FILTER,
|
|
|
|
"name", name);
|
2009-07-05 06:54:48 +02:00
|
|
|
if (param == NULL) {
|
2013-12-24 14:44:08 +01:00
|
|
|
fprintf(stderr, "No such configured filter: %s\n", name);
|
2013-01-29 17:23:58 +01:00
|
|
|
return nullptr;
|
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
|
|
|
char buffer[4096];
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-01-29 17:23:35 +01:00
|
|
|
const Path config_path = Path::FromFS(argv[1]);
|
|
|
|
|
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) */
|
|
|
|
|
|
|
|
config_global_init();
|
2015-12-16 11:05:33 +01:00
|
|
|
ReadConfigFile(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
|
|
|
|
|
|
|
/* initialize the filter */
|
|
|
|
|
2016-06-22 11:15:49 +02:00
|
|
|
std::unique_ptr<PreparedFilter> prepared_filter(load_filter(argv[2]));
|
|
|
|
if (!prepared_filter)
|
2013-12-24 14:44:08 +01:00
|
|
|
return EXIT_FAILURE;
|
2009-07-05 06:54:48 +02:00
|
|
|
|
|
|
|
/* open the filter */
|
|
|
|
|
2016-09-04 14:32:09 +02:00
|
|
|
std::unique_ptr<Filter> 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 */
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
ssize_t nbytes;
|
|
|
|
|
|
|
|
nbytes = read(0, buffer, sizeof(buffer));
|
|
|
|
if (nbytes <= 0)
|
|
|
|
break;
|
|
|
|
|
2016-09-04 14:32:09 +02:00
|
|
|
auto dest = filter->FilterPCM({(const void *)buffer, (size_t)nbytes});
|
2009-07-05 06:54:48 +02:00
|
|
|
|
2014-08-12 16:09:07 +02:00
|
|
|
nbytes = write(1, dest.data, dest.size);
|
2009-07-05 06:54:48 +02:00
|
|
|
if (nbytes < 0) {
|
2013-12-24 14:44:08 +01:00
|
|
|
fprintf(stderr, "Failed to write: %s\n",
|
|
|
|
strerror(errno));
|
2009-07-05 06:54:48 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cleanup and exit */
|
|
|
|
|
|
|
|
config_global_finish();
|
|
|
|
|
2015-12-16 11:12:30 +01:00
|
|
|
return EXIT_SUCCESS;
|
2016-09-04 14:32:09 +02:00
|
|
|
} catch (const std::exception &e) {
|
2015-12-16 11:12:30 +01:00
|
|
|
LogError(e);
|
|
|
|
return EXIT_FAILURE;
|
2016-09-04 14:32:09 +02:00
|
|
|
}
|