2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-10-20 19:49:21 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2004-10-20 19:49:21 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-04-17 00:47:20 +02:00
|
|
|
#include "ShoutOutputPlugin.hxx"
|
2014-01-23 23:49:50 +01:00
|
|
|
#include "../OutputAPI.hxx"
|
2016-05-04 14:44:00 +02:00
|
|
|
#include "../Wrapper.hxx"
|
2015-01-08 19:31:57 +01:00
|
|
|
#include "encoder/EncoderInterface.hxx"
|
2014-01-23 23:09:14 +01:00
|
|
|
#include "encoder/EncoderPlugin.hxx"
|
|
|
|
#include "encoder/EncoderList.hxx"
|
2014-01-24 00:20:01 +01:00
|
|
|
#include "config/ConfigError.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
|
|
|
#include "util/Domain.hxx"
|
2013-09-05 18:20:52 +02:00
|
|
|
#include "system/FatalError.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2004-10-21 01:08:40 +02:00
|
|
|
|
2009-02-22 17:52:37 +01:00
|
|
|
#include <shout/shout.h>
|
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <assert.h>
|
2008-11-25 17:25:41 +01:00
|
|
|
#include <stdlib.h>
|
2013-07-30 20:11:57 +02:00
|
|
|
#include <string.h>
|
2008-11-25 17:25:41 +01:00
|
|
|
#include <stdio.h>
|
2008-10-08 10:49:29 +02:00
|
|
|
|
2013-08-04 12:25:08 +02:00
|
|
|
static constexpr unsigned DEFAULT_CONN_TIMEOUT = 2;
|
2004-11-02 14:26:50 +01:00
|
|
|
|
2013-04-17 00:47:20 +02:00
|
|
|
struct ShoutOutput final {
|
2014-01-28 11:34:09 +01:00
|
|
|
AudioOutput base;
|
2011-09-16 23:31:48 +02:00
|
|
|
|
2009-02-22 17:52:37 +01:00
|
|
|
shout_t *shout_conn;
|
|
|
|
shout_metadata_t *shout_meta;
|
|
|
|
|
2016-05-04 15:05:48 +02:00
|
|
|
Encoder *encoder = nullptr;
|
2009-02-22 17:52:37 +01:00
|
|
|
|
2016-05-04 14:46:45 +02:00
|
|
|
float quality = -2.0;
|
|
|
|
int bitrate = -1;
|
2009-02-22 17:52:37 +01:00
|
|
|
|
2016-05-04 14:46:45 +02:00
|
|
|
int timeout = DEFAULT_CONN_TIMEOUT;
|
2009-02-22 17:52:37 +01:00
|
|
|
|
2012-10-02 00:08:06 +02:00
|
|
|
uint8_t buffer[32768];
|
2013-04-17 00:47:20 +02:00
|
|
|
|
|
|
|
ShoutOutput()
|
2014-01-28 23:39:48 +01:00
|
|
|
:base(shout_output_plugin),
|
|
|
|
shout_conn(shout_new()),
|
2016-05-04 14:46:45 +02:00
|
|
|
shout_meta(shout_metadata_new()) {}
|
2013-04-17 00:47:20 +02:00
|
|
|
|
2016-05-04 15:03:55 +02:00
|
|
|
~ShoutOutput();
|
2013-04-17 00:47:20 +02:00
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
bool Initialize(const ConfigBlock &block, Error &error) {
|
|
|
|
return base.Configure(block, error);
|
2013-04-17 00:47:20 +02:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
bool Configure(const ConfigBlock &block, Error &error);
|
2016-05-04 14:44:00 +02:00
|
|
|
static ShoutOutput *Create(const ConfigBlock &block, Error &error);
|
|
|
|
|
|
|
|
bool Open(AudioFormat &audio_format, Error &error);
|
|
|
|
void Close();
|
|
|
|
|
|
|
|
unsigned Delay() const;
|
|
|
|
void SendTag(const Tag &tag);
|
|
|
|
size_t Play(const void *chunk, size_t size, Error &error);
|
|
|
|
void Cancel();
|
|
|
|
bool Pause();
|
2009-02-22 17:52:37 +01:00
|
|
|
};
|
|
|
|
|
2008-09-12 14:01:45 +02:00
|
|
|
static int shout_init_count;
|
shout: introduce pluggable encoder API
I've perhaps gone a bit overboard, but here's the current rundown:
Both Ogg and MP3 use the "shout" audio output plugin. The shout audio
output plugin itself has two new plugins, one for the Ogg encoder,
and another for the MP3 (LAME) encoder.
Configuration for an Ogg stream doesn't change. For an MP3 stream,
configuration is the same as Ogg, with two exceptions. First, you must
specify the optional "encoding" parameter, which should be set to "mp3".
See mpd.conf(5) for more details. Second, the "quality" parameter is
reversed for LAME, such that 1 is high quality for LAME, whereas 10 is
high quality for Ogg.
I've decomposed the code so that all libshout related operations
are done in audioOutput_shout.c, all Ogg specific functions are in
audioOutput_shout_ogg.c, and of course then all LAME specific functions
are handled in audioOutput_shout_mp3.c.
To develop encoder plugins for the shout audio output plugin, I basically
just mimicked the plugin system used for audio outputs. This might be
overkill, but hopefully if anyone ever wants to support some other sort
of stream, like maybe AAC, FLAC, or WMA (hey it could happen), they will
hopefully be all set.
The Ogg encoder is slightly less optimal under this configuration.
It used to send shout data directly out of its ogg_page structures. Now,
in the interest of encapsulation, it copies the data from its ogg_page
structures into a buffer provided by the shout audio output plugin (see
audioOutput_shout_ogg.c, line 77.) I suspect the performance impact
is negligible.
As for metadata, I'm pretty sure they'll both work. I wrote up a test
scaffold that would create a fake tag, and tell the plugin to send it
out to the stream every few seconds. It seemed to work fine. Of course,
if something does break, I'll be glad to fix it.
Lastly, I've renamed lots of things into snake_case, in keeping with
normalperson's wishes in that regard.
[mk: moved the MP3 patch after this one. Splitted this patch into
several parts; the others were already applied before this one. Fixed
a bunch GCC warnings and wrong whitespace modifications. Made it
compile with mpd-mk by adapting to its prototypes]
2008-09-12 16:04:40 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
static constexpr Domain shout_output_domain("shout_output");
|
2009-02-26 22:04:59 +01:00
|
|
|
|
2016-05-04 15:03:55 +02:00
|
|
|
ShoutOutput::~ShoutOutput()
|
|
|
|
{
|
|
|
|
if (shout_meta != nullptr)
|
|
|
|
shout_metadata_free(shout_meta);
|
|
|
|
if (shout_conn != nullptr)
|
|
|
|
shout_free(shout_conn);
|
|
|
|
|
|
|
|
shout_init_count--;
|
|
|
|
if (shout_init_count == 0)
|
|
|
|
shout_shutdown();
|
2016-05-04 15:05:48 +02:00
|
|
|
|
|
|
|
if (encoder != nullptr)
|
|
|
|
encoder->Dispose();
|
2016-05-04 15:03:55 +02:00
|
|
|
}
|
|
|
|
|
2013-07-30 09:04:05 +02:00
|
|
|
static const EncoderPlugin *
|
2008-09-12 16:39:51 +02:00
|
|
|
shout_encoder_plugin_get(const char *name)
|
shout: introduce pluggable encoder API
I've perhaps gone a bit overboard, but here's the current rundown:
Both Ogg and MP3 use the "shout" audio output plugin. The shout audio
output plugin itself has two new plugins, one for the Ogg encoder,
and another for the MP3 (LAME) encoder.
Configuration for an Ogg stream doesn't change. For an MP3 stream,
configuration is the same as Ogg, with two exceptions. First, you must
specify the optional "encoding" parameter, which should be set to "mp3".
See mpd.conf(5) for more details. Second, the "quality" parameter is
reversed for LAME, such that 1 is high quality for LAME, whereas 10 is
high quality for Ogg.
I've decomposed the code so that all libshout related operations
are done in audioOutput_shout.c, all Ogg specific functions are in
audioOutput_shout_ogg.c, and of course then all LAME specific functions
are handled in audioOutput_shout_mp3.c.
To develop encoder plugins for the shout audio output plugin, I basically
just mimicked the plugin system used for audio outputs. This might be
overkill, but hopefully if anyone ever wants to support some other sort
of stream, like maybe AAC, FLAC, or WMA (hey it could happen), they will
hopefully be all set.
The Ogg encoder is slightly less optimal under this configuration.
It used to send shout data directly out of its ogg_page structures. Now,
in the interest of encapsulation, it copies the data from its ogg_page
structures into a buffer provided by the shout audio output plugin (see
audioOutput_shout_ogg.c, line 77.) I suspect the performance impact
is negligible.
As for metadata, I'm pretty sure they'll both work. I wrote up a test
scaffold that would create a fake tag, and tell the plugin to send it
out to the stream every few seconds. It seemed to work fine. Of course,
if something does break, I'll be glad to fix it.
Lastly, I've renamed lots of things into snake_case, in keeping with
normalperson's wishes in that regard.
[mk: moved the MP3 patch after this one. Splitted this patch into
several parts; the others were already applied before this one. Fixed
a bunch GCC warnings and wrong whitespace modifications. Made it
compile with mpd-mk by adapting to its prototypes]
2008-09-12 16:04:40 +02:00
|
|
|
{
|
2009-02-22 17:18:28 +01:00
|
|
|
if (strcmp(name, "ogg") == 0)
|
|
|
|
name = "vorbis";
|
|
|
|
else if (strcmp(name, "mp3") == 0)
|
|
|
|
name = "lame";
|
shout: introduce pluggable encoder API
I've perhaps gone a bit overboard, but here's the current rundown:
Both Ogg and MP3 use the "shout" audio output plugin. The shout audio
output plugin itself has two new plugins, one for the Ogg encoder,
and another for the MP3 (LAME) encoder.
Configuration for an Ogg stream doesn't change. For an MP3 stream,
configuration is the same as Ogg, with two exceptions. First, you must
specify the optional "encoding" parameter, which should be set to "mp3".
See mpd.conf(5) for more details. Second, the "quality" parameter is
reversed for LAME, such that 1 is high quality for LAME, whereas 10 is
high quality for Ogg.
I've decomposed the code so that all libshout related operations
are done in audioOutput_shout.c, all Ogg specific functions are in
audioOutput_shout_ogg.c, and of course then all LAME specific functions
are handled in audioOutput_shout_mp3.c.
To develop encoder plugins for the shout audio output plugin, I basically
just mimicked the plugin system used for audio outputs. This might be
overkill, but hopefully if anyone ever wants to support some other sort
of stream, like maybe AAC, FLAC, or WMA (hey it could happen), they will
hopefully be all set.
The Ogg encoder is slightly less optimal under this configuration.
It used to send shout data directly out of its ogg_page structures. Now,
in the interest of encapsulation, it copies the data from its ogg_page
structures into a buffer provided by the shout audio output plugin (see
audioOutput_shout_ogg.c, line 77.) I suspect the performance impact
is negligible.
As for metadata, I'm pretty sure they'll both work. I wrote up a test
scaffold that would create a fake tag, and tell the plugin to send it
out to the stream every few seconds. It seemed to work fine. Of course,
if something does break, I'll be glad to fix it.
Lastly, I've renamed lots of things into snake_case, in keeping with
normalperson's wishes in that regard.
[mk: moved the MP3 patch after this one. Splitted this patch into
several parts; the others were already applied before this one. Fixed
a bunch GCC warnings and wrong whitespace modifications. Made it
compile with mpd-mk by adapting to its prototypes]
2008-09-12 16:04:40 +02:00
|
|
|
|
2009-02-22 17:18:28 +01:00
|
|
|
return encoder_plugin_get(name);
|
shout: introduce pluggable encoder API
I've perhaps gone a bit overboard, but here's the current rundown:
Both Ogg and MP3 use the "shout" audio output plugin. The shout audio
output plugin itself has two new plugins, one for the Ogg encoder,
and another for the MP3 (LAME) encoder.
Configuration for an Ogg stream doesn't change. For an MP3 stream,
configuration is the same as Ogg, with two exceptions. First, you must
specify the optional "encoding" parameter, which should be set to "mp3".
See mpd.conf(5) for more details. Second, the "quality" parameter is
reversed for LAME, such that 1 is high quality for LAME, whereas 10 is
high quality for Ogg.
I've decomposed the code so that all libshout related operations
are done in audioOutput_shout.c, all Ogg specific functions are in
audioOutput_shout_ogg.c, and of course then all LAME specific functions
are handled in audioOutput_shout_mp3.c.
To develop encoder plugins for the shout audio output plugin, I basically
just mimicked the plugin system used for audio outputs. This might be
overkill, but hopefully if anyone ever wants to support some other sort
of stream, like maybe AAC, FLAC, or WMA (hey it could happen), they will
hopefully be all set.
The Ogg encoder is slightly less optimal under this configuration.
It used to send shout data directly out of its ogg_page structures. Now,
in the interest of encapsulation, it copies the data from its ogg_page
structures into a buffer provided by the shout audio output plugin (see
audioOutput_shout_ogg.c, line 77.) I suspect the performance impact
is negligible.
As for metadata, I'm pretty sure they'll both work. I wrote up a test
scaffold that would create a fake tag, and tell the plugin to send it
out to the stream every few seconds. It seemed to work fine. Of course,
if something does break, I'll be glad to fix it.
Lastly, I've renamed lots of things into snake_case, in keeping with
normalperson's wishes in that regard.
[mk: moved the MP3 patch after this one. Splitted this patch into
several parts; the others were already applied before this one. Fixed
a bunch GCC warnings and wrong whitespace modifications. Made it
compile with mpd-mk by adapting to its prototypes]
2008-09-12 16:04:40 +02:00
|
|
|
}
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2013-01-10 18:46:33 +01:00
|
|
|
gcc_pure
|
|
|
|
static const char *
|
2015-01-21 22:13:44 +01:00
|
|
|
require_block_string(const ConfigBlock &block, const char *name)
|
2013-01-10 18:46:33 +01:00
|
|
|
{
|
2015-01-21 22:13:44 +01:00
|
|
|
const char *value = block.GetBlockValue(name);
|
2013-04-17 00:47:20 +02:00
|
|
|
if (value == nullptr)
|
2013-09-05 18:20:52 +02:00
|
|
|
FormatFatalError("no \"%s\" defined for shout device defined "
|
2015-01-21 22:13:44 +01:00
|
|
|
"at line %d\n", name, block.line);
|
2013-01-10 18:46:33 +01:00
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
2004-10-28 07:14:55 +02:00
|
|
|
|
2013-04-17 00:47:20 +02:00
|
|
|
inline bool
|
2015-01-21 22:13:44 +01:00
|
|
|
ShoutOutput::Configure(const ConfigBlock &block, Error &error)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2011-09-16 23:31:48 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
const AudioFormat audio_format = base.config_audio_format;
|
|
|
|
if (!audio_format.IsFullyDefined()) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(config_domain,
|
|
|
|
"Need full audio format specification");
|
2014-12-26 13:50:54 +01:00
|
|
|
return false;
|
2009-10-21 23:01:04 +02:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
const char *host = require_block_string(block, "host");
|
|
|
|
const char *mount = require_block_string(block, "mount");
|
|
|
|
unsigned port = block.GetBlockValue("port", 0u);
|
2009-02-26 19:34:00 +01:00
|
|
|
if (port == 0) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(config_domain, "shout port must be configured");
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2004-10-23 03:04:58 +02:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
const char *passwd = require_block_string(block, "password");
|
|
|
|
const char *name = require_block_string(block, "name");
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
bool is_public = block.GetBlockValue("public", false);
|
2004-11-04 05:01:04 +01:00
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
const char *user = block.GetBlockValue("user", "source");
|
2004-10-20 22:41:21 +02:00
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
const char *value = block.GetBlockValue("quality");
|
2013-04-17 00:47:20 +02:00
|
|
|
if (value != nullptr) {
|
2012-10-01 23:19:15 +02:00
|
|
|
char *test;
|
2013-04-17 00:47:20 +02:00
|
|
|
quality = strtod(value, &test);
|
2004-10-29 15:33:51 +02:00
|
|
|
|
2013-04-17 00:47:20 +02:00
|
|
|
if (*test != '\0' || quality < -1.0 || quality > 10.0) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(config_domain,
|
|
|
|
"shout quality \"%s\" is not a number in the "
|
2013-09-26 20:59:11 +02:00
|
|
|
"range -1 to 10",
|
|
|
|
value);
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
if (block.GetBlockValue("bitrate") != nullptr) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(config_domain,
|
|
|
|
"quality and bitrate are "
|
|
|
|
"both defined");
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
2006-07-20 18:02:40 +02:00
|
|
|
} else {
|
2015-01-21 22:13:44 +01:00
|
|
|
value = block.GetBlockValue("bitrate");
|
2013-04-17 00:47:20 +02:00
|
|
|
if (value == nullptr) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(config_domain,
|
|
|
|
"neither bitrate nor quality defined");
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2009-02-26 22:04:59 +01:00
|
|
|
}
|
2004-10-29 15:33:51 +02:00
|
|
|
|
2012-10-01 23:19:15 +02:00
|
|
|
char *test;
|
2013-04-17 00:47:20 +02:00
|
|
|
bitrate = strtol(value, &test, 10);
|
2004-10-29 15:33:51 +02:00
|
|
|
|
2013-04-17 00:47:20 +02:00
|
|
|
if (*test != '\0' || bitrate <= 0) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(config_domain,
|
|
|
|
"bitrate must be a positive integer");
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
2004-10-23 03:04:58 +02:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
const char *encoding = block.GetBlockValue("encoding", "ogg");
|
2013-07-30 09:04:05 +02:00
|
|
|
const auto encoder_plugin = shout_encoder_plugin_get(encoding);
|
2013-04-17 00:47:20 +02:00
|
|
|
if (encoder_plugin == nullptr) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(config_domain,
|
|
|
|
"couldn't find shout encoder plugin \"%s\"",
|
|
|
|
encoding);
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2009-02-26 22:04:59 +01:00
|
|
|
}
|
shout: introduce pluggable encoder API
I've perhaps gone a bit overboard, but here's the current rundown:
Both Ogg and MP3 use the "shout" audio output plugin. The shout audio
output plugin itself has two new plugins, one for the Ogg encoder,
and another for the MP3 (LAME) encoder.
Configuration for an Ogg stream doesn't change. For an MP3 stream,
configuration is the same as Ogg, with two exceptions. First, you must
specify the optional "encoding" parameter, which should be set to "mp3".
See mpd.conf(5) for more details. Second, the "quality" parameter is
reversed for LAME, such that 1 is high quality for LAME, whereas 10 is
high quality for Ogg.
I've decomposed the code so that all libshout related operations
are done in audioOutput_shout.c, all Ogg specific functions are in
audioOutput_shout_ogg.c, and of course then all LAME specific functions
are handled in audioOutput_shout_mp3.c.
To develop encoder plugins for the shout audio output plugin, I basically
just mimicked the plugin system used for audio outputs. This might be
overkill, but hopefully if anyone ever wants to support some other sort
of stream, like maybe AAC, FLAC, or WMA (hey it could happen), they will
hopefully be all set.
The Ogg encoder is slightly less optimal under this configuration.
It used to send shout data directly out of its ogg_page structures. Now,
in the interest of encapsulation, it copies the data from its ogg_page
structures into a buffer provided by the shout audio output plugin (see
audioOutput_shout_ogg.c, line 77.) I suspect the performance impact
is negligible.
As for metadata, I'm pretty sure they'll both work. I wrote up a test
scaffold that would create a fake tag, and tell the plugin to send it
out to the stream every few seconds. It seemed to work fine. Of course,
if something does break, I'll be glad to fix it.
Lastly, I've renamed lots of things into snake_case, in keeping with
normalperson's wishes in that regard.
[mk: moved the MP3 patch after this one. Splitted this patch into
several parts; the others were already applied before this one. Fixed
a bunch GCC warnings and wrong whitespace modifications. Made it
compile with mpd-mk by adapting to its prototypes]
2008-09-12 16:04:40 +02:00
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
encoder = encoder_init(*encoder_plugin, block, error);
|
2013-04-17 00:47:20 +02:00
|
|
|
if (encoder == nullptr)
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2009-02-22 17:18:28 +01:00
|
|
|
|
2012-10-01 23:19:15 +02:00
|
|
|
unsigned shout_format;
|
2009-02-22 17:18:28 +01:00
|
|
|
if (strcmp(encoding, "mp3") == 0 || strcmp(encoding, "lame") == 0)
|
|
|
|
shout_format = SHOUT_FORMAT_MP3;
|
|
|
|
else
|
|
|
|
shout_format = SHOUT_FORMAT_OGG;
|
|
|
|
|
2012-10-01 23:19:15 +02:00
|
|
|
unsigned protocol;
|
2015-01-21 22:13:44 +01:00
|
|
|
value = block.GetBlockValue("protocol");
|
2013-04-17 00:47:20 +02:00
|
|
|
if (value != nullptr) {
|
2009-01-18 19:37:27 +01:00
|
|
|
if (0 == strcmp(value, "shoutcast") &&
|
2009-02-26 22:04:59 +01:00
|
|
|
0 != strcmp(encoding, "mp3")) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(config_domain,
|
|
|
|
"you cannot stream \"%s\" to shoutcast, use mp3",
|
|
|
|
encoding);
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2009-02-26 22:04:59 +01:00
|
|
|
} else if (0 == strcmp(value, "shoutcast"))
|
2008-10-12 12:14:51 +02:00
|
|
|
protocol = SHOUT_PROTOCOL_ICY;
|
2009-01-18 19:37:27 +01:00
|
|
|
else if (0 == strcmp(value, "icecast1"))
|
2008-10-12 12:14:51 +02:00
|
|
|
protocol = SHOUT_PROTOCOL_XAUDIOCAST;
|
2009-01-18 19:37:27 +01:00
|
|
|
else if (0 == strcmp(value, "icecast2"))
|
2008-10-12 12:14:51 +02:00
|
|
|
protocol = SHOUT_PROTOCOL_HTTP;
|
2009-02-26 22:04:59 +01:00
|
|
|
else {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(config_domain,
|
|
|
|
"shout protocol \"%s\" is not \"shoutcast\" or "
|
|
|
|
"\"icecast1\"or \"icecast2\"",
|
|
|
|
value);
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2009-02-26 22:04:59 +01:00
|
|
|
}
|
2008-10-12 12:14:51 +02:00
|
|
|
} else {
|
|
|
|
protocol = SHOUT_PROTOCOL_HTTP;
|
|
|
|
}
|
|
|
|
|
2013-04-17 00:47:20 +02:00
|
|
|
if (shout_set_host(shout_conn, host) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_port(shout_conn, port) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_password(shout_conn, passwd) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_mount(shout_conn, mount) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_name(shout_conn, name) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_user(shout_conn, user) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_public(shout_conn, is_public) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_format(shout_conn, shout_format)
|
2006-07-20 18:02:40 +02:00
|
|
|
!= SHOUTERR_SUCCESS ||
|
2013-04-17 00:47:20 +02:00
|
|
|
shout_set_protocol(shout_conn, protocol) != SHOUTERR_SUCCESS ||
|
|
|
|
shout_set_agent(shout_conn, "MPD") != SHOUTERR_SUCCESS) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(shout_output_domain, shout_get_error(shout_conn));
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2004-10-20 22:41:21 +02:00
|
|
|
}
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2004-11-09 14:04:20 +01:00
|
|
|
/* optional paramters */
|
2015-01-21 22:13:44 +01:00
|
|
|
timeout = block.GetBlockValue("timeout", DEFAULT_CONN_TIMEOUT);
|
2007-06-12 20:28:57 +02:00
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
value = block.GetBlockValue("genre");
|
2013-04-17 00:47:20 +02:00
|
|
|
if (value != nullptr && shout_set_genre(shout_conn, value)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(shout_output_domain, shout_get_error(shout_conn));
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2004-11-09 14:04:20 +01:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
value = block.GetBlockValue("description");
|
2013-04-17 00:47:20 +02:00
|
|
|
if (value != nullptr && shout_set_description(shout_conn, value)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(shout_output_domain, shout_get_error(shout_conn));
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2004-11-09 14:04:20 +01:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
value = block.GetBlockValue("url");
|
2013-04-17 00:47:20 +02:00
|
|
|
if (value != nullptr && shout_set_url(shout_conn, value)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Set(shout_output_domain, shout_get_error(shout_conn));
|
2012-10-02 00:39:21 +02:00
|
|
|
return false;
|
2011-02-04 14:14:29 +01:00
|
|
|
}
|
|
|
|
|
2004-10-29 15:33:51 +02:00
|
|
|
{
|
|
|
|
char temp[11];
|
|
|
|
memset(temp, 0, sizeof(temp));
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
snprintf(temp, sizeof(temp), "%u", audio_format.channels);
|
2013-04-17 00:47:20 +02:00
|
|
|
shout_set_audio_info(shout_conn, SHOUT_AI_CHANNELS, temp);
|
2004-10-29 15:33:51 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
snprintf(temp, sizeof(temp), "%u", audio_format.sample_rate);
|
2006-07-20 18:02:40 +02:00
|
|
|
|
2013-04-17 00:47:20 +02:00
|
|
|
shout_set_audio_info(shout_conn, SHOUT_AI_SAMPLERATE, temp);
|
2004-10-29 15:33:51 +02:00
|
|
|
|
2013-04-17 00:47:20 +02:00
|
|
|
if (quality >= -1.0) {
|
|
|
|
snprintf(temp, sizeof(temp), "%2.2f", quality);
|
|
|
|
shout_set_audio_info(shout_conn, SHOUT_AI_QUALITY,
|
2006-07-20 18:02:40 +02:00
|
|
|
temp);
|
|
|
|
} else {
|
2013-04-17 00:47:20 +02:00
|
|
|
snprintf(temp, sizeof(temp), "%d", bitrate);
|
|
|
|
shout_set_audio_info(shout_conn, SHOUT_AI_BITRATE,
|
2006-07-20 18:02:40 +02:00
|
|
|
temp);
|
2004-10-29 15:33:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-02 00:39:21 +02:00
|
|
|
return true;
|
|
|
|
}
|
2011-07-18 15:58:02 +02:00
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
ShoutOutput *
|
|
|
|
ShoutOutput::Create(const ConfigBlock &block, Error &error)
|
2012-10-02 00:39:21 +02:00
|
|
|
{
|
2016-05-04 15:03:55 +02:00
|
|
|
if (shout_init_count == 0)
|
|
|
|
shout_init();
|
|
|
|
|
|
|
|
shout_init_count++;
|
|
|
|
|
2013-04-17 00:47:20 +02:00
|
|
|
ShoutOutput *sd = new ShoutOutput();
|
2015-01-21 22:13:44 +01:00
|
|
|
if (!sd->Initialize(block, error)) {
|
2013-04-17 00:47:20 +02:00
|
|
|
delete sd;
|
|
|
|
return nullptr;
|
2012-10-02 00:39:21 +02:00
|
|
|
}
|
|
|
|
|
2015-01-21 22:13:44 +01:00
|
|
|
if (!sd->Configure(block, error)) {
|
2013-04-17 00:47:20 +02:00
|
|
|
delete sd;
|
|
|
|
return nullptr;
|
2012-10-02 00:39:21 +02:00
|
|
|
}
|
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
return sd;
|
2004-10-20 19:49:21 +02:00
|
|
|
}
|
|
|
|
|
2009-02-22 15:18:58 +01:00
|
|
|
static bool
|
2013-08-10 18:02:44 +02:00
|
|
|
handle_shout_error(ShoutOutput *sd, int err, Error &error)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
switch (err) {
|
2004-11-09 04:58:12 +01:00
|
|
|
case SHOUTERR_SUCCESS:
|
|
|
|
break;
|
2009-02-22 15:18:58 +01:00
|
|
|
|
2004-11-09 04:58:12 +01:00
|
|
|
case SHOUTERR_UNCONNECTED:
|
|
|
|
case SHOUTERR_SOCKET:
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(shout_output_domain, err,
|
|
|
|
"Lost shout connection to %s:%i: %s",
|
|
|
|
shout_get_host(sd->shout_conn),
|
|
|
|
shout_get_port(sd->shout_conn),
|
|
|
|
shout_get_error(sd->shout_conn));
|
2009-02-22 15:18:58 +01:00
|
|
|
return false;
|
|
|
|
|
2004-11-09 04:58:12 +01:00
|
|
|
default:
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(shout_output_domain, err,
|
|
|
|
"connection to %s:%i error: %s",
|
|
|
|
shout_get_host(sd->shout_conn),
|
|
|
|
shout_get_port(sd->shout_conn),
|
|
|
|
shout_get_error(sd->shout_conn));
|
2009-02-22 15:18:58 +01:00
|
|
|
return false;
|
2004-11-09 04:58:12 +01:00
|
|
|
}
|
|
|
|
|
2009-02-22 15:18:58 +01:00
|
|
|
return true;
|
2004-11-09 04:58:12 +01:00
|
|
|
}
|
|
|
|
|
2009-02-22 15:18:58 +01:00
|
|
|
static bool
|
2013-08-10 18:02:44 +02:00
|
|
|
write_page(ShoutOutput *sd, Error &error)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2013-04-17 00:47:20 +02:00
|
|
|
assert(sd->encoder != nullptr);
|
2009-02-22 17:18:28 +01:00
|
|
|
|
2012-10-01 23:50:50 +02:00
|
|
|
while (true) {
|
|
|
|
size_t nbytes = encoder_read(sd->encoder,
|
|
|
|
sd->buffer, sizeof(sd->buffer));
|
|
|
|
if (nbytes == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
int err = shout_send(sd->shout_conn, sd->buffer, nbytes);
|
|
|
|
if (!handle_shout_error(sd, err, error))
|
|
|
|
return false;
|
|
|
|
}
|
2004-11-09 04:58:12 +01:00
|
|
|
|
2009-02-22 15:18:58 +01:00
|
|
|
return true;
|
2004-11-09 04:58:12 +01:00
|
|
|
}
|
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
void
|
|
|
|
ShoutOutput::Close()
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2016-05-04 14:44:00 +02:00
|
|
|
if (encoder != nullptr) {
|
|
|
|
if (encoder_end(encoder, IgnoreError()))
|
|
|
|
write_page(this, IgnoreError());
|
2009-02-22 17:18:28 +01:00
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
encoder->Close();
|
2009-02-22 17:18:28 +01:00
|
|
|
}
|
2004-10-26 14:56:10 +02:00
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
if (shout_get_connected(shout_conn) != SHOUTERR_UNCONNECTED &&
|
|
|
|
shout_close(shout_conn) != SHOUTERR_SUCCESS) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatWarning(shout_output_domain,
|
|
|
|
"problem closing connection to shout server: %s",
|
2016-05-04 14:44:00 +02:00
|
|
|
shout_get_error(shout_conn));
|
2004-10-23 17:25:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
void
|
|
|
|
ShoutOutput::Cancel()
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2007-08-11 23:36:23 +02:00
|
|
|
/* needs to be implemented for shout */
|
2005-03-05 15:01:13 +01:00
|
|
|
}
|
|
|
|
|
2009-02-22 15:18:58 +01:00
|
|
|
static bool
|
2013-08-10 18:02:44 +02:00
|
|
|
shout_connect(ShoutOutput *sd, Error &error)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2012-10-01 23:19:15 +02:00
|
|
|
switch (shout_open(sd->shout_conn)) {
|
2006-10-11 02:18:43 +02:00
|
|
|
case SHOUTERR_SUCCESS:
|
|
|
|
case SHOUTERR_CONNECTED:
|
2009-02-22 15:18:58 +01:00
|
|
|
return true;
|
|
|
|
|
2006-10-11 02:18:43 +02:00
|
|
|
default:
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(shout_output_domain,
|
|
|
|
"problem opening connection to shout server %s:%i: %s",
|
|
|
|
shout_get_host(sd->shout_conn),
|
|
|
|
shout_get_port(sd->shout_conn),
|
|
|
|
shout_get_error(sd->shout_conn));
|
2009-02-22 15:18:58 +01:00
|
|
|
return false;
|
2004-10-20 22:41:21 +02:00
|
|
|
}
|
2007-08-11 23:36:23 +02:00
|
|
|
}
|
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
bool
|
|
|
|
ShoutOutput::Open(AudioFormat &audio_format, Error &error)
|
2007-08-11 23:36:23 +02:00
|
|
|
{
|
2016-05-04 14:44:00 +02:00
|
|
|
if (!shout_connect(this, error))
|
2009-02-22 15:18:58 +01:00
|
|
|
return false;
|
2004-10-20 19:49:21 +02:00
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
if (!encoder->Open(audio_format, error)) {
|
|
|
|
shout_close(shout_conn);
|
2012-10-01 23:18:33 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
if (!write_page(this, error)) {
|
|
|
|
encoder->Close();
|
|
|
|
shout_close(shout_conn);
|
2009-02-22 15:18:58 +01:00
|
|
|
return false;
|
2004-10-22 21:40:09 +02:00
|
|
|
}
|
|
|
|
|
2009-02-22 15:18:58 +01:00
|
|
|
return true;
|
2004-10-20 19:49:21 +02:00
|
|
|
}
|
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
unsigned
|
|
|
|
ShoutOutput::Delay() const
|
2010-11-05 08:11:01 +01:00
|
|
|
{
|
2016-05-04 14:44:00 +02:00
|
|
|
int delay = shout_delay(shout_conn);
|
2010-11-05 08:11:01 +01:00
|
|
|
if (delay < 0)
|
|
|
|
delay = 0;
|
|
|
|
|
|
|
|
return delay;
|
|
|
|
}
|
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
size_t
|
|
|
|
ShoutOutput::Play(const void *chunk, size_t size, Error &error)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2016-05-04 14:44:00 +02:00
|
|
|
return encoder_write(encoder, chunk, size, error) &&
|
|
|
|
write_page(this, error)
|
2009-02-26 22:04:59 +01:00
|
|
|
? size
|
|
|
|
: 0;
|
2004-10-20 19:49:21 +02:00
|
|
|
}
|
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
bool
|
|
|
|
ShoutOutput::Pause()
|
2008-09-29 16:43:55 +02:00
|
|
|
{
|
2013-04-17 00:47:20 +02:00
|
|
|
static char silence[1020];
|
2008-09-29 16:43:55 +02:00
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
return Play(silence, sizeof(silence), IgnoreError());
|
2008-09-29 16:43:55 +02:00
|
|
|
}
|
|
|
|
|
2009-02-22 17:18:28 +01:00
|
|
|
static void
|
2014-12-26 22:27:01 +01:00
|
|
|
shout_tag_to_metadata(const Tag &tag, char *dest, size_t size)
|
2009-02-22 17:18:28 +01:00
|
|
|
{
|
|
|
|
char artist[size];
|
|
|
|
char title[size];
|
|
|
|
|
|
|
|
artist[0] = 0;
|
|
|
|
title[0] = 0;
|
|
|
|
|
2014-12-26 22:27:01 +01:00
|
|
|
for (const auto &item : tag) {
|
2014-07-12 17:22:39 +02:00
|
|
|
switch (item.type) {
|
2009-10-13 16:12:45 +02:00
|
|
|
case TAG_ARTIST:
|
2014-07-12 17:22:39 +02:00
|
|
|
strncpy(artist, item.value, size);
|
2009-02-22 17:18:28 +01:00
|
|
|
break;
|
2009-10-13 16:12:45 +02:00
|
|
|
case TAG_TITLE:
|
2014-07-12 17:22:39 +02:00
|
|
|
strncpy(title, item.value, size);
|
2009-02-22 17:18:28 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-08 18:46:14 +01:00
|
|
|
snprintf(dest, size, "%s - %s", artist, title);
|
2009-02-22 17:18:28 +01:00
|
|
|
}
|
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
void
|
|
|
|
ShoutOutput::SendTag(const Tag &tag)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2016-05-04 14:44:00 +02:00
|
|
|
if (encoder->plugin.tag != nullptr) {
|
2009-02-22 17:18:28 +01:00
|
|
|
/* encoder plugin supports stream tags */
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error;
|
2016-05-04 14:44:00 +02:00
|
|
|
if (!encoder_pre_tag(encoder, error) ||
|
|
|
|
!write_page(this, error) ||
|
|
|
|
!encoder_tag(encoder, tag, error)) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogError(error);
|
2009-02-22 17:18:28 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* no stream tag support: fall back to icy-metadata */
|
|
|
|
char song[1024];
|
|
|
|
shout_tag_to_metadata(tag, song, sizeof(song));
|
2004-10-25 22:09:03 +02:00
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
shout_metadata_add(shout_meta, "song", song);
|
|
|
|
if (SHOUTERR_SUCCESS != shout_set_metadata(shout_conn,
|
|
|
|
shout_meta)) {
|
2013-09-27 22:31:24 +02:00
|
|
|
LogWarning(shout_output_domain,
|
|
|
|
"error setting shout metadata");
|
2009-02-09 16:36:06 +01:00
|
|
|
}
|
|
|
|
}
|
2004-10-25 22:09:03 +02:00
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
write_page(this, IgnoreError());
|
2004-10-25 22:09:03 +02:00
|
|
|
}
|
|
|
|
|
2016-05-04 14:44:00 +02:00
|
|
|
typedef AudioOutputWrapper<ShoutOutput> Wrapper;
|
|
|
|
|
2014-01-28 11:22:27 +01:00
|
|
|
const struct AudioOutputPlugin shout_output_plugin = {
|
2013-04-17 00:47:20 +02:00
|
|
|
"shout",
|
|
|
|
nullptr,
|
2016-05-04 14:44:00 +02:00
|
|
|
&Wrapper::Init,
|
|
|
|
&Wrapper::Finish,
|
2013-04-17 00:47:20 +02:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2016-05-04 14:44:00 +02:00
|
|
|
&Wrapper::Open,
|
|
|
|
&Wrapper::Close,
|
|
|
|
&Wrapper::Delay,
|
|
|
|
&Wrapper::SendTag,
|
|
|
|
&Wrapper::Play,
|
2013-04-17 00:47:20 +02:00
|
|
|
nullptr,
|
2016-05-04 14:44:00 +02:00
|
|
|
&Wrapper::Cancel,
|
|
|
|
&Wrapper::Pause,
|
2013-04-17 00:47:20 +02:00
|
|
|
nullptr,
|
2004-10-20 19:49:21 +02:00
|
|
|
};
|