Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
85476114
Commit
85476114
authored
Sep 26, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge tag 'v0.18.16'
parents
45310d0c
fe45f282
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
35 additions
and
52 deletions
+35
-52
Makefile.am
Makefile.am
+14
-6
NEWS
NEWS
+4
-1
configure.ac
configure.ac
+13
-43
DecoderList.cxx
src/decoder/DecoderList.cxx
+2
-0
EmbeddedCuePlaylistPlugin.cxx
src/playlist/plugins/EmbeddedCuePlaylistPlugin.cxx
+1
-1
test_protocol.cxx
test/test_protocol.cxx
+1
-1
No files found.
Makefile.am
View file @
85476114
...
...
@@ -796,12 +796,6 @@ endif
libdecoder_a_SOURCES
=
\
src/decoder/plugins/PcmDecoderPlugin.cxx
\
src/decoder/plugins/PcmDecoderPlugin.hxx
\
src/decoder/plugins/DsdiffDecoderPlugin.cxx
\
src/decoder/plugins/DsdiffDecoderPlugin.hxx
\
src/decoder/plugins/DsfDecoderPlugin.cxx
\
src/decoder/plugins/DsfDecoderPlugin.hxx
\
src/decoder/plugins/DsdLib.cxx
\
src/decoder/plugins/DsdLib.hxx
\
src/decoder/DecoderBuffer.cxx src/decoder/DecoderBuffer.hxx
\
src/decoder/DecoderPlugin.cxx
\
src/decoder/DecoderList.cxx src/decoder/DecoderList.hxx
...
...
@@ -845,6 +839,16 @@ DECODER_LIBS = \
$(ADPLUG_LIBS)
\
$(FAAD_LIBS)
if
ENABLE_DSD
libdecoder_a_SOURCES
+=
\
src/decoder/plugins/DsdiffDecoderPlugin.cxx
\
src/decoder/plugins/DsdiffDecoderPlugin.hxx
\
src/decoder/plugins/DsfDecoderPlugin.cxx
\
src/decoder/plugins/DsfDecoderPlugin.hxx
\
src/decoder/plugins/DsdLib.cxx
\
src/decoder/plugins/DsdLib.hxx
endif
if
HAVE_MAD
libdecoder_a_SOURCES
+=
\
src/decoder/plugins/MadDecoderPlugin.cxx
\
...
...
@@ -2061,6 +2065,8 @@ test_test_queue_priority_LDADD = \
libutil.a
\
$(CPPUNIT_LIBS)
if
ENABLE_DSD
noinst_PROGRAMS
+=
src/pcm/dsd2pcm/dsd2pcm
src_pcm_dsd2pcm_dsd2pcm_SOURCES
=
\
...
...
@@ -2073,6 +2079,8 @@ src_pcm_dsd2pcm_dsd2pcm_LDADD = libutil.a
endif
endif
#
# Documentation
...
...
NEWS
View file @
85476114
...
...
@@ -72,7 +72,10 @@ ver 0.19 (not yet released)
* install systemd unit for socket activation
* Android port
ver 0.18.15 (not yet released)
ver 0.18.16 (2014/09/26)
* fix DSD breakage due to typo in configure.ac
ver 0.18.15 (2014/09/26)
* command
- list: reset used size after the list has been processed
* fix MixRamp
...
...
configure.ac
View file @
85476114
...
...
@@ -369,6 +369,11 @@ AC_ARG_ENABLE(documentation,
[build documentation (default: disable)]),,
[enable_documentation=no])
AC_ARG_ENABLE(dsd,
AS_HELP_STRING([--enable-dsd],
[enable DSD decoder (default: enable)]),,
[enable_dsd=yes])
AC_ARG_ENABLE(ffmpeg,
AS_HELP_STRING([--enable-ffmpeg],
[enable FFMPEG support]),,
...
...
@@ -1133,6 +1138,14 @@ if test x$enable_audiofile = xyes; then
AC_DEFINE(HAVE_AUDIOFILE, 1, [Define for audiofile support])
fi
dnl ----------------------------------- DSD -----------------------------------
if test x$enable_dsd = xyes; then
AC_DEFINE(ENABLE_DSD, 1, [Define for the DSD decoder])
fi
AM_CONDITIONAL(ENABLE_DSD, test x$enable_dsd = xyes)
dnl ----------------------------------- FAAD ----------------------------------
AM_PATH_FAAD()
...
...
@@ -1386,28 +1399,6 @@ AM_CONDITIONAL(ENABLE_WILDMIDI, test x$enable_wildmidi = xyes)
dnl ------------------------ Post Decoder Plugins Tests -----------------------
if
test x$enable_aac = xno &&
test x$enable_audiofile = xno &&
test x$enable_ffmpeg = xno &&
test x$enable_flac = xno &&
test x$enable_fluidsynth = xno &&
test x$enable_mad = xno &&
test x$enable_mikmod = xno; then
test x$enable_modplug = xno &&
test x$enable_mp4v2 = xno &&
test x$enable_mpc = xno &&
test x$enable_mpg123 = xno &&
test x$enable_opus = xno &&
test x$enable_sidplay = xno &&
test x$enable_tremor = xno &&
test x$enable_vorbis = xno &&
test x$enable_wavpack = xno &&
test x$enable_wildmidi = xno &&
AC_MSG_ERROR([No input plugins supported!])
fi
AM_CONDITIONAL(HAVE_XIPH,
test x$enable_vorbis = xyes || test x$enable_tremor = xyes || test x$enable_flac = xyes || test x$enable_opus = xyes)
...
...
@@ -1713,27 +1704,6 @@ fi
AM_CONDITIONAL(ENABLE_WINMM_OUTPUT, test x$enable_winmm_output = xyes)
dnl --------------------- Post Audio Output Plugins Tests ---------------------
if
test x$enable_alsa = xno &&
test x$enable_roar = xno &&
test x$enable_ao = xno &&
test x$enable_fifo = xno &&
test x$enable_httpd_output = xno &&
test x$enable_jack = xno &&
test x$enable_openal = xno &&
test x$enable_oss = xno &&
test x$enable_osx = xno &&
test x$enable_pipe_output = xno &&
test x$enable_pulse = xno &&
test x$enable_recorder_output = xno &&
test x$enable_shout = xno &&
test x$enable_solaris_output = xno &&
test x$enable_winmm_output = xno; then
AC_MSG_ERROR([No Audio Output types configured!])
fi
dnl ---------------------------------------------------------------------------
dnl Documentation
dnl ---------------------------------------------------------------------------
...
...
src/decoder/DecoderList.cxx
View file @
85476114
...
...
@@ -76,8 +76,10 @@ const struct DecoderPlugin *const decoder_plugins[] = {
#ifdef HAVE_AUDIOFILE
&
audiofile_decoder_plugin
,
#endif
#ifdef ENABLE_DSD
&
dsdiff_decoder_plugin
,
&
dsf_decoder_plugin
,
#endif
#ifdef HAVE_FAAD
&
faad_decoder_plugin
,
#endif
...
...
src/playlist/plugins/EmbeddedCuePlaylistPlugin.cxx
View file @
85476114
...
...
@@ -171,7 +171,7 @@ static const char *const embcue_playlist_suffixes[] = {
};
const
struct
playlist_plugin
embcue_playlist_plugin
=
{
"cue"
,
"
emb
cue"
,
nullptr
,
nullptr
,
...
...
test/test_protocol.cxx
View file @
85476114
...
...
@@ -8,7 +8,7 @@
#include <cppunit/ui/text/TestRunner.h>
#include <cppunit/extensions/HelperMacros.h>
#include <
unistd
.h>
#include <
stdlib
.h>
static
enum
ack
last_error
=
ack
(
-
1
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment