Merge tag 'v0.19.2'
This commit is contained in:
Makefile.amNEWS
m4
src
test
@ -130,7 +130,6 @@ libmpd_a_SOURCES = \
|
|||||||
src/IOThread.cxx src/IOThread.hxx \
|
src/IOThread.cxx src/IOThread.hxx \
|
||||||
src/Instance.cxx src/Instance.hxx \
|
src/Instance.cxx src/Instance.hxx \
|
||||||
src/win32/Win32Main.cxx \
|
src/win32/Win32Main.cxx \
|
||||||
src/osx/OSXMain.cxx \
|
|
||||||
src/GlobalEvents.cxx src/GlobalEvents.hxx \
|
src/GlobalEvents.cxx src/GlobalEvents.hxx \
|
||||||
src/MixRampInfo.hxx \
|
src/MixRampInfo.hxx \
|
||||||
src/MusicBuffer.cxx src/MusicBuffer.hxx \
|
src/MusicBuffer.cxx src/MusicBuffer.hxx \
|
||||||
|
21
NEWS
21
NEWS
@ -4,11 +4,21 @@ ver 0.20 (not yet released)
|
|||||||
* output
|
* output
|
||||||
- pulse: set channel map to WAVE-EX
|
- pulse: set channel map to WAVE-EX
|
||||||
|
|
||||||
ver 0.19.2 (not yet released)
|
ver 0.19.2 (2014/11/02)
|
||||||
|
* input
|
||||||
|
- curl: fix redirected streams
|
||||||
|
* playlist
|
||||||
|
- don't allow empty playlist name
|
||||||
|
- m3u: don't ignore unterminated last line
|
||||||
|
- m3u: recognize the file suffix ".m3u8"
|
||||||
* decoder
|
* decoder
|
||||||
|
- ignore URI query string for plugin detection
|
||||||
|
- faad: remove workaround for ancient libfaad2 ABI bug
|
||||||
- ffmpeg: recognize MIME type audio/aacp
|
- ffmpeg: recognize MIME type audio/aacp
|
||||||
|
- mad: fix negative replay gain values
|
||||||
* output
|
* output
|
||||||
- fix memory leak after filter initialization error
|
- fix memory leak after filter initialization error
|
||||||
|
- fall back to PCM if given DSD sample rate is not supported
|
||||||
* fix assertion failure on unsupported PCM conversion
|
* fix assertion failure on unsupported PCM conversion
|
||||||
* auto-disable plugins that require GLib when --disable-glib is used
|
* auto-disable plugins that require GLib when --disable-glib is used
|
||||||
|
|
||||||
@ -99,6 +109,15 @@ ver 0.19 (2014/10/10)
|
|||||||
* install systemd unit for socket activation
|
* install systemd unit for socket activation
|
||||||
* Android port
|
* Android port
|
||||||
|
|
||||||
|
ver 0.18.17 (2014/11/02)
|
||||||
|
* playlist
|
||||||
|
- don't allow empty playlist name
|
||||||
|
- m3u: recognize the file suffix ".m3u8"
|
||||||
|
* decoder
|
||||||
|
- ignore URI query string for plugin detection
|
||||||
|
- faad: remove workaround for ancient libfaad2 ABI bug
|
||||||
|
- ffmpeg: recognize MIME type audio/aacp
|
||||||
|
|
||||||
ver 0.18.16 (2014/09/26)
|
ver 0.18.16 (2014/09/26)
|
||||||
* fix DSD breakage due to typo in configure.ac
|
* fix DSD breakage due to typo in configure.ac
|
||||||
|
|
||||||
|
31
m4/faad.m4
31
m4/faad.m4
@ -62,36 +62,7 @@ int main() {
|
|||||||
CPPFLAGS=$oldcppflags
|
CPPFLAGS=$oldcppflags
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test x$enable_aac = xyes; then
|
if test x$enable_aac = xno; then
|
||||||
oldcflags=$CFLAGS
|
|
||||||
oldlibs=$LIBS
|
|
||||||
oldcppflags=$CPPFLAGS
|
|
||||||
CFLAGS="$CFLAGS $FAAD_CFLAGS -Werror"
|
|
||||||
LIBS="$LIBS $FAAD_LIBS"
|
|
||||||
CPPFLAGS=$CFLAGS
|
|
||||||
|
|
||||||
AC_MSG_CHECKING(for broken libfaad headers)
|
|
||||||
AC_COMPILE_IFELSE([AC_LANG_SOURCE([
|
|
||||||
#include <faad.h>
|
|
||||||
#include <stddef.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
int main() {
|
|
||||||
unsigned char channels;
|
|
||||||
uint32_t sample_rate;
|
|
||||||
|
|
||||||
NeAACDecInit2(NULL, NULL, 0, &sample_rate, &channels);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
])],
|
|
||||||
[AC_MSG_RESULT(correct)],
|
|
||||||
[AC_MSG_RESULT(broken);
|
|
||||||
AC_DEFINE(HAVE_FAAD_LONG, 1, [Define if faad.h uses the broken "unsigned long" pointers])])
|
|
||||||
|
|
||||||
CFLAGS=$oldcflags
|
|
||||||
LIBS=$oldlibs
|
|
||||||
CPPFLAGS=$oldcppflags
|
|
||||||
else
|
|
||||||
FAAD_LIBS=""
|
FAAD_LIBS=""
|
||||||
FAAD_CFLAGS=""
|
FAAD_CFLAGS=""
|
||||||
fi
|
fi
|
||||||
|
29
src/Main.cxx
29
src/Main.cxx
@ -114,6 +114,10 @@
|
|||||||
#include <ws2tcpip.h>
|
#include <ws2tcpip.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
#include <dispatch/dispatch.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|
||||||
static constexpr unsigned DEFAULT_BUFFER_SIZE = 4096;
|
static constexpr unsigned DEFAULT_BUFFER_SIZE = 4096;
|
||||||
@ -401,8 +405,6 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
return win32_main(argc, argv);
|
return win32_main(argc, argv);
|
||||||
#elif __APPLE__
|
|
||||||
return osx_main(argc, argv);
|
|
||||||
#else
|
#else
|
||||||
return mpd_main(argc, argv);
|
return mpd_main(argc, argv);
|
||||||
#endif
|
#endif
|
||||||
@ -410,6 +412,8 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static int mpd_main_after_fork(struct options);
|
||||||
|
|
||||||
#ifdef ANDROID
|
#ifdef ANDROID
|
||||||
static inline
|
static inline
|
||||||
#endif
|
#endif
|
||||||
@ -513,6 +517,27 @@ int mpd_main(int argc, char *argv[])
|
|||||||
daemonize_begin(options.daemon);
|
daemonize_begin(options.daemon);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
/* Runs the OS X native event loop in the main thread, and runs
|
||||||
|
the rest of mpd_main on a new thread. This lets CoreAudio receive
|
||||||
|
route change notifications (e.g. plugging or unplugging headphones).
|
||||||
|
All hardware output on OS X ultimately uses CoreAudio internally.
|
||||||
|
This must be run after forking; if dispatch is called before forking,
|
||||||
|
the child process will have a broken internal dispatch state. */
|
||||||
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
||||||
|
exit(mpd_main_after_fork(options));
|
||||||
|
});
|
||||||
|
dispatch_main();
|
||||||
|
return EXIT_FAILURE; // unreachable, because dispatch_main never returns
|
||||||
|
#else
|
||||||
|
return mpd_main_after_fork(options);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static int mpd_main_after_fork(struct options options)
|
||||||
|
{
|
||||||
|
Error error;
|
||||||
|
|
||||||
GlobalEvents::Initialize(*instance->event_loop);
|
GlobalEvents::Initialize(*instance->event_loop);
|
||||||
GlobalEvents::Register(GlobalEvents::IDLE, idle_event_emitted);
|
GlobalEvents::Register(GlobalEvents::IDLE, idle_event_emitted);
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
|
11
src/Main.hxx
11
src/Main.hxx
@ -75,15 +75,4 @@ win32_app_stopping(void);
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __APPLE__
|
|
||||||
|
|
||||||
/* Runs the OS X native event loop in the main thread, and runs
|
|
||||||
* mpd_main on a new thread. This lets CoreAudio receive route
|
|
||||||
* change notifications (e.g. plugging or unplugging headphones).
|
|
||||||
* All hardware output on OS X ultimately uses CoreAudio internally.
|
|
||||||
*/
|
|
||||||
int osx_main(int argc, char *argv[]);
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -64,6 +64,10 @@ spl_global_init(void)
|
|||||||
bool
|
bool
|
||||||
spl_valid_name(const char *name_utf8)
|
spl_valid_name(const char *name_utf8)
|
||||||
{
|
{
|
||||||
|
if (*name_utf8 == 0)
|
||||||
|
/* empty name not allowed */
|
||||||
|
return false;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Not supporting '/' was done out of laziness, and we should
|
* Not supporting '/' was done out of laziness, and we should
|
||||||
* really strive to support it in the future.
|
* really strive to support it in the future.
|
||||||
|
@ -46,7 +46,8 @@ tag_stream_scan(InputStream &is, const tag_handler &handler, void *ctx)
|
|||||||
{
|
{
|
||||||
assert(is.IsReady());
|
assert(is.IsReady());
|
||||||
|
|
||||||
const char *const suffix = uri_get_suffix(is.GetURI());
|
UriSuffixBuffer suffix_buffer;
|
||||||
|
const char *const suffix = uri_get_suffix(is.GetURI(), suffix_buffer);
|
||||||
const char *const mime = is.GetMimeType();
|
const char *const mime = is.GetMimeType();
|
||||||
|
|
||||||
if (suffix == nullptr && mime == nullptr)
|
if (suffix == nullptr && mime == nullptr)
|
||||||
|
@ -237,7 +237,8 @@ static bool
|
|||||||
decoder_run_stream_locked(Decoder &decoder, InputStream &is,
|
decoder_run_stream_locked(Decoder &decoder, InputStream &is,
|
||||||
const char *uri, bool &tried_r)
|
const char *uri, bool &tried_r)
|
||||||
{
|
{
|
||||||
const char *const suffix = uri_get_suffix(uri);
|
UriSuffixBuffer suffix_buffer;
|
||||||
|
const char *const suffix = uri_get_suffix(uri, suffix_buffer);
|
||||||
|
|
||||||
using namespace std::placeholders;
|
using namespace std::placeholders;
|
||||||
const auto f = std::bind(decoder_run_stream_plugin,
|
const auto f = std::bind(decoder_run_stream_plugin,
|
||||||
|
@ -255,20 +255,12 @@ faad_decoder_init(NeAACDecHandle decoder, DecoderBuffer &buffer,
|
|||||||
}
|
}
|
||||||
|
|
||||||
uint8_t channels;
|
uint8_t channels;
|
||||||
uint32_t sample_rate;
|
unsigned long sample_rate;
|
||||||
#ifdef HAVE_FAAD_LONG
|
|
||||||
/* neaacdec.h declares all arguments as "unsigned long", but
|
|
||||||
internally expects uint32_t pointers. To avoid gcc
|
|
||||||
warnings, use this workaround. */
|
|
||||||
unsigned long *sample_rate_p = (unsigned long *)(void *)&sample_rate;
|
|
||||||
#else
|
|
||||||
uint32_t *sample_rate_p = &sample_rate;
|
|
||||||
#endif
|
|
||||||
long nbytes = NeAACDecInit(decoder,
|
long nbytes = NeAACDecInit(decoder,
|
||||||
/* deconst hack, libfaad requires this */
|
/* deconst hack, libfaad requires this */
|
||||||
const_cast<unsigned char *>(data.data),
|
const_cast<unsigned char *>(data.data),
|
||||||
data.size,
|
data.size,
|
||||||
sample_rate_p, &channels);
|
&sample_rate, &channels);
|
||||||
if (nbytes < 0) {
|
if (nbytes < 0) {
|
||||||
error.Set(faad_decoder_domain, "Not an AAC stream");
|
error.Set(faad_decoder_domain, "Not an AAC stream");
|
||||||
return false;
|
return false;
|
||||||
|
@ -657,7 +657,7 @@ parse_lame(struct lame *lame, struct mad_bitptr *ptr, int *bitlen)
|
|||||||
unsigned name = mad_bit_read(ptr, 3); /* gain name */
|
unsigned name = mad_bit_read(ptr, 3); /* gain name */
|
||||||
unsigned orig = mad_bit_read(ptr, 3); /* gain originator */
|
unsigned orig = mad_bit_read(ptr, 3); /* gain originator */
|
||||||
unsigned sign = mad_bit_read(ptr, 1); /* sign bit */
|
unsigned sign = mad_bit_read(ptr, 1); /* sign bit */
|
||||||
unsigned gain = mad_bit_read(ptr, 9); /* gain*10 */
|
int gain = mad_bit_read(ptr, 9); /* gain*10 */
|
||||||
if (gain && name == 1 && orig != 0) {
|
if (gain && name == 1 && orig != 0) {
|
||||||
lame->track_gain = ((sign ? -gain : gain) / 10.0) + adj;
|
lame->track_gain = ((sign ? -gain : gain) / 10.0) + adj;
|
||||||
FormatDebug(mad_domain, "LAME track gain found: %f",
|
FormatDebug(mad_domain, "LAME track gain found: %f",
|
||||||
|
@ -39,15 +39,7 @@ static MP4TrackId
|
|||||||
mp4_get_aac_track(MP4FileHandle handle, NeAACDecHandle decoder,
|
mp4_get_aac_track(MP4FileHandle handle, NeAACDecHandle decoder,
|
||||||
AudioFormat &audio_format, Error &error)
|
AudioFormat &audio_format, Error &error)
|
||||||
{
|
{
|
||||||
uint32_t sample_rate;
|
unsigned long sample_rate;
|
||||||
#ifdef HAVE_FAAD_LONG
|
|
||||||
/* neaacdec.h declares all arguments as "unsigned long", but
|
|
||||||
internally expects uint32_t pointers. To avoid gcc
|
|
||||||
warnings, use this workaround. */
|
|
||||||
unsigned long *sample_rate_r = (unsigned long*)&sample_rate;
|
|
||||||
#else
|
|
||||||
uint32_t *sample_rate_r = sample_rate;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
const MP4TrackId tracks = MP4GetNumberOfTracks(handle);
|
const MP4TrackId tracks = MP4GetNumberOfTracks(handle);
|
||||||
|
|
||||||
@ -80,7 +72,7 @@ mp4_get_aac_track(MP4FileHandle handle, NeAACDecHandle decoder,
|
|||||||
|
|
||||||
uint8_t channels;
|
uint8_t channels;
|
||||||
int32_t nbytes = NeAACDecInit(decoder, buff, buff_size,
|
int32_t nbytes = NeAACDecInit(decoder, buff, buff_size,
|
||||||
sample_rate_r, &channels);
|
&sample_rate, &channels);
|
||||||
|
|
||||||
free(buff);
|
free(buff);
|
||||||
|
|
||||||
|
@ -83,6 +83,10 @@ protected:
|
|||||||
*/
|
*/
|
||||||
void SetTag(Tag *_tag);
|
void SetTag(Tag *_tag);
|
||||||
|
|
||||||
|
void ClearTag() {
|
||||||
|
SetTag(nullptr);
|
||||||
|
}
|
||||||
|
|
||||||
void Pause();
|
void Pause();
|
||||||
|
|
||||||
bool IsPaused() const {
|
bool IsPaused() const {
|
||||||
|
@ -200,6 +200,10 @@ public:
|
|||||||
return mime.empty() ? nullptr : mime.c_str();
|
return mime.empty() ? nullptr : mime.c_str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ClearMimeType() {
|
||||||
|
mime.clear();
|
||||||
|
}
|
||||||
|
|
||||||
gcc_nonnull_all
|
gcc_nonnull_all
|
||||||
void SetMimeType(const char *_mime) {
|
void SetMimeType(const char *_mime) {
|
||||||
assert(!ready);
|
assert(!ready);
|
||||||
|
@ -38,8 +38,8 @@ TextInputStream::ReadLine()
|
|||||||
while (true) {
|
while (true) {
|
||||||
auto dest = buffer.Write();
|
auto dest = buffer.Write();
|
||||||
if (dest.size < 2) {
|
if (dest.size < 2) {
|
||||||
/* end of file (or line too long): terminate
|
/* line too long: terminate the current
|
||||||
the current line */
|
line */
|
||||||
|
|
||||||
assert(!dest.IsEmpty());
|
assert(!dest.IsEmpty());
|
||||||
dest[0] = 0;
|
dest[0] = 0;
|
||||||
@ -66,7 +66,19 @@ TextInputStream::ReadLine()
|
|||||||
if (line != nullptr)
|
if (line != nullptr)
|
||||||
return line;
|
return line;
|
||||||
|
|
||||||
if (nbytes == 0)
|
if (nbytes == 0) {
|
||||||
return nullptr;
|
/* end of file: see if there's an unterminated
|
||||||
|
line */
|
||||||
|
|
||||||
|
dest = buffer.Write();
|
||||||
|
assert(!dest.IsEmpty());
|
||||||
|
dest[0] = 0;
|
||||||
|
|
||||||
|
auto r = buffer.Read();
|
||||||
|
buffer.Clear();
|
||||||
|
return r.IsEmpty()
|
||||||
|
? nullptr
|
||||||
|
: r.data;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -109,6 +109,13 @@ struct CurlInputStream final : public AsyncInputStream {
|
|||||||
*/
|
*/
|
||||||
void FreeEasyIndirect();
|
void FreeEasyIndirect();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when a new response begins. This is used to discard
|
||||||
|
* headers from previous responses (for example authentication
|
||||||
|
* and redirects).
|
||||||
|
*/
|
||||||
|
void ResponseBoundary();
|
||||||
|
|
||||||
void HeaderReceived(const char *name, std::string &&value);
|
void HeaderReceived(const char *name, std::string &&value);
|
||||||
|
|
||||||
size_t DataReceived(const void *ptr, size_t size);
|
size_t DataReceived(const void *ptr, size_t size);
|
||||||
@ -597,6 +604,20 @@ CurlInputStream::~CurlInputStream()
|
|||||||
FreeEasyIndirect();
|
FreeEasyIndirect();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline void
|
||||||
|
CurlInputStream::ResponseBoundary()
|
||||||
|
{
|
||||||
|
/* undo all effects of HeaderReceived() because the previous
|
||||||
|
response was not applicable for this stream */
|
||||||
|
|
||||||
|
seekable = false;
|
||||||
|
size = UNKNOWN_SIZE;
|
||||||
|
ClearMimeType();
|
||||||
|
ClearTag();
|
||||||
|
|
||||||
|
// TODO: reset the IcyInputStream?
|
||||||
|
}
|
||||||
|
|
||||||
inline void
|
inline void
|
||||||
CurlInputStream::HeaderReceived(const char *name, std::string &&value)
|
CurlInputStream::HeaderReceived(const char *name, std::string &&value)
|
||||||
{
|
{
|
||||||
@ -645,6 +666,11 @@ input_curl_headerfunction(void *ptr, size_t size, size_t nmemb, void *stream)
|
|||||||
size *= nmemb;
|
size *= nmemb;
|
||||||
|
|
||||||
const char *header = (const char *)ptr;
|
const char *header = (const char *)ptr;
|
||||||
|
if (size > 5 && memcmp(header, "HTTP/", 5) == 0) {
|
||||||
|
c.ResponseBoundary();
|
||||||
|
return size;
|
||||||
|
}
|
||||||
|
|
||||||
const char *end = header + size;
|
const char *end = header + size;
|
||||||
|
|
||||||
char name[64];
|
char name[64];
|
||||||
@ -720,10 +746,10 @@ CurlInputStream::InitEasy(Error &error)
|
|||||||
input_curl_writefunction);
|
input_curl_writefunction);
|
||||||
curl_easy_setopt(easy, CURLOPT_WRITEDATA, this);
|
curl_easy_setopt(easy, CURLOPT_WRITEDATA, this);
|
||||||
curl_easy_setopt(easy, CURLOPT_HTTP200ALIASES, http_200_aliases);
|
curl_easy_setopt(easy, CURLOPT_HTTP200ALIASES, http_200_aliases);
|
||||||
curl_easy_setopt(easy, CURLOPT_FOLLOWLOCATION, 1);
|
curl_easy_setopt(easy, CURLOPT_FOLLOWLOCATION, 1l);
|
||||||
curl_easy_setopt(easy, CURLOPT_NETRC, 1);
|
curl_easy_setopt(easy, CURLOPT_NETRC, 1l);
|
||||||
curl_easy_setopt(easy, CURLOPT_MAXREDIRS, 5);
|
curl_easy_setopt(easy, CURLOPT_MAXREDIRS, 5l);
|
||||||
curl_easy_setopt(easy, CURLOPT_FAILONERROR, true);
|
curl_easy_setopt(easy, CURLOPT_FAILONERROR, 1l);
|
||||||
curl_easy_setopt(easy, CURLOPT_ERRORBUFFER, error_buffer);
|
curl_easy_setopt(easy, CURLOPT_ERRORBUFFER, error_buffer);
|
||||||
curl_easy_setopt(easy, CURLOPT_NOPROGRESS, 1l);
|
curl_easy_setopt(easy, CURLOPT_NOPROGRESS, 1l);
|
||||||
curl_easy_setopt(easy, CURLOPT_NOSIGNAL, 1l);
|
curl_easy_setopt(easy, CURLOPT_NOSIGNAL, 1l);
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
|
|
||||||
#include <upnp/upnptools.h>
|
#include <upnp/upnptools.h>
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
// The service type string we are looking for.
|
// The service type string we are looking for.
|
||||||
|
@ -1,37 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
#include "Main.hxx"
|
|
||||||
|
|
||||||
#ifdef __APPLE__
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <dispatch/dispatch.h>
|
|
||||||
|
|
||||||
int osx_main(int argc, char *argv[])
|
|
||||||
{
|
|
||||||
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
|
||||||
exit(mpd_main(argc, argv));
|
|
||||||
});
|
|
||||||
dispatch_main();
|
|
||||||
return EXIT_FAILURE; // unreachable, because dispatch_main never returns
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
@ -22,6 +22,7 @@
|
|||||||
#include "OutputAPI.hxx"
|
#include "OutputAPI.hxx"
|
||||||
#include "Domain.hxx"
|
#include "Domain.hxx"
|
||||||
#include "pcm/PcmMix.hxx"
|
#include "pcm/PcmMix.hxx"
|
||||||
|
#include "pcm/Domain.hxx"
|
||||||
#include "notify.hxx"
|
#include "notify.hxx"
|
||||||
#include "filter/FilterInternal.hxx"
|
#include "filter/FilterInternal.hxx"
|
||||||
#include "filter/plugins/ConvertFilterPlugin.hxx"
|
#include "filter/plugins/ConvertFilterPlugin.hxx"
|
||||||
@ -165,6 +166,10 @@ AudioOutput::Open()
|
|||||||
out_audio_format.ApplyMask(config_audio_format);
|
out_audio_format.ApplyMask(config_audio_format);
|
||||||
|
|
||||||
mutex.unlock();
|
mutex.unlock();
|
||||||
|
|
||||||
|
const AudioFormat retry_audio_format = out_audio_format;
|
||||||
|
|
||||||
|
retry_without_dsd:
|
||||||
success = ao_plugin_open(this, out_audio_format, error);
|
success = ao_plugin_open(this, out_audio_format, error);
|
||||||
mutex.lock();
|
mutex.lock();
|
||||||
|
|
||||||
@ -189,6 +194,31 @@ AudioOutput::Open()
|
|||||||
|
|
||||||
mutex.unlock();
|
mutex.unlock();
|
||||||
ao_plugin_close(this);
|
ao_plugin_close(this);
|
||||||
|
|
||||||
|
if (error.IsDomain(pcm_domain) &&
|
||||||
|
out_audio_format.format == SampleFormat::DSD) {
|
||||||
|
/* if the audio output supports DSD, but not
|
||||||
|
the given sample rate, it asks MPD to
|
||||||
|
resample; resampling DSD however is not
|
||||||
|
implemented; our last resort is to give up
|
||||||
|
DSD and fall back to PCM */
|
||||||
|
|
||||||
|
// TODO: clean up this workaround
|
||||||
|
|
||||||
|
FormatError(output_domain, "Retrying without DSD");
|
||||||
|
|
||||||
|
out_audio_format = retry_audio_format;
|
||||||
|
out_audio_format.format = SampleFormat::FLOAT;
|
||||||
|
|
||||||
|
/* clear the Error to allow reusing it */
|
||||||
|
error.Clear();
|
||||||
|
|
||||||
|
/* sorry for the "goto" - this is a workaround
|
||||||
|
for the stable branch that should be as
|
||||||
|
unintrusive as possible */
|
||||||
|
goto retry_without_dsd;
|
||||||
|
}
|
||||||
|
|
||||||
CloseFilter();
|
CloseFilter();
|
||||||
mutex.lock();
|
mutex.lock();
|
||||||
|
|
||||||
|
@ -139,12 +139,12 @@ static SongEnumerator *
|
|||||||
playlist_list_open_uri_suffix(const char *uri, Mutex &mutex, Cond &cond,
|
playlist_list_open_uri_suffix(const char *uri, Mutex &mutex, Cond &cond,
|
||||||
const bool *tried)
|
const bool *tried)
|
||||||
{
|
{
|
||||||
const char *suffix;
|
|
||||||
SongEnumerator *playlist = nullptr;
|
SongEnumerator *playlist = nullptr;
|
||||||
|
|
||||||
assert(uri != nullptr);
|
assert(uri != nullptr);
|
||||||
|
|
||||||
suffix = uri_get_suffix(uri);
|
UriSuffixBuffer suffix_buffer;
|
||||||
|
const char *const suffix = uri_get_suffix(uri, suffix_buffer);
|
||||||
if (suffix == nullptr)
|
if (suffix == nullptr)
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
|
||||||
@ -257,7 +257,10 @@ playlist_list_open_stream(InputStream &is, const char *uri)
|
|||||||
return playlist;
|
return playlist;
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *suffix = uri != nullptr ? uri_get_suffix(uri) : nullptr;
|
UriSuffixBuffer suffix_buffer;
|
||||||
|
const char *suffix = uri != nullptr
|
||||||
|
? uri_get_suffix(uri, suffix_buffer)
|
||||||
|
: nullptr;
|
||||||
if (suffix != nullptr) {
|
if (suffix != nullptr) {
|
||||||
auto playlist = playlist_list_open_stream_suffix(is, suffix);
|
auto playlist = playlist_list_open_stream_suffix(is, suffix);
|
||||||
if (playlist != nullptr)
|
if (playlist != nullptr)
|
||||||
|
@ -130,6 +130,7 @@ ExtM3uPlaylist::NextSong()
|
|||||||
|
|
||||||
static const char *const extm3u_suffixes[] = {
|
static const char *const extm3u_suffixes[] = {
|
||||||
"m3u",
|
"m3u",
|
||||||
|
"m3u8",
|
||||||
nullptr
|
nullptr
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -60,6 +60,7 @@ M3uPlaylist::NextSong()
|
|||||||
|
|
||||||
static const char *const m3u_suffixes[] = {
|
static const char *const m3u_suffixes[] = {
|
||||||
"m3u",
|
"m3u",
|
||||||
|
"m3u8",
|
||||||
nullptr
|
nullptr
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -54,6 +54,23 @@ uri_get_suffix(const char *uri)
|
|||||||
return suffix;
|
return suffix;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *
|
||||||
|
uri_get_suffix(const char *uri, UriSuffixBuffer &buffer)
|
||||||
|
{
|
||||||
|
const char *suffix = uri_get_suffix(uri);
|
||||||
|
if (suffix == nullptr)
|
||||||
|
return nullptr;
|
||||||
|
|
||||||
|
const char *q = strchr(suffix, '?');
|
||||||
|
if (q != nullptr && size_t(q - suffix) < sizeof(buffer.data)) {
|
||||||
|
memcpy(buffer.data, suffix, q - suffix);
|
||||||
|
buffer.data[q - suffix] = 0;
|
||||||
|
suffix = buffer.data;
|
||||||
|
}
|
||||||
|
|
||||||
|
return suffix;
|
||||||
|
}
|
||||||
|
|
||||||
static const char *
|
static const char *
|
||||||
verify_uri_segment(const char *p)
|
verify_uri_segment(const char *p)
|
||||||
{
|
{
|
||||||
|
@ -42,6 +42,17 @@ gcc_pure
|
|||||||
const char *
|
const char *
|
||||||
uri_get_suffix(const char *uri);
|
uri_get_suffix(const char *uri);
|
||||||
|
|
||||||
|
struct UriSuffixBuffer {
|
||||||
|
char data[8];
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the file name suffix, ignoring the query string.
|
||||||
|
*/
|
||||||
|
gcc_pure
|
||||||
|
const char *
|
||||||
|
uri_get_suffix(const char *uri, UriSuffixBuffer &buffer);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns true if this is a safe "local" URI:
|
* Returns true if this is a safe "local" URI:
|
||||||
*
|
*
|
||||||
|
@ -34,6 +34,25 @@ public:
|
|||||||
uri_get_suffix(".jpg"));
|
uri_get_suffix(".jpg"));
|
||||||
CPPUNIT_ASSERT_EQUAL((const char *)nullptr,
|
CPPUNIT_ASSERT_EQUAL((const char *)nullptr,
|
||||||
uri_get_suffix("/foo/.jpg"));
|
uri_get_suffix("/foo/.jpg"));
|
||||||
|
|
||||||
|
/* the first overload does not eliminate the query
|
||||||
|
string */
|
||||||
|
CPPUNIT_ASSERT_EQUAL(0, strcmp(uri_get_suffix("/foo/bar.jpg?query_string"),
|
||||||
|
"jpg?query_string"));
|
||||||
|
|
||||||
|
/* ... but the second one does */
|
||||||
|
UriSuffixBuffer buffer;
|
||||||
|
CPPUNIT_ASSERT_EQUAL(0, strcmp(uri_get_suffix("/foo/bar.jpg?query_string",
|
||||||
|
buffer),
|
||||||
|
"jpg"));
|
||||||
|
|
||||||
|
/* repeat some of the above tests with the second overload */
|
||||||
|
CPPUNIT_ASSERT_EQUAL((const char *)nullptr,
|
||||||
|
uri_get_suffix("/foo/bar", buffer));
|
||||||
|
CPPUNIT_ASSERT_EQUAL((const char *)nullptr,
|
||||||
|
uri_get_suffix("/foo.jpg/bar", buffer));
|
||||||
|
CPPUNIT_ASSERT_EQUAL(0, strcmp(uri_get_suffix("/foo/bar.jpg", buffer),
|
||||||
|
"jpg"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestRemoveAuth() {
|
void TestRemoveAuth() {
|
||||||
|
Reference in New Issue
Block a user