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
7808fea9
Commit
7808fea9
authored
Mar 05, 2005
by
Warren Dukes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
todo update
git-svn-id:
https://svn.musicpd.org/mpd/trunk@3010
09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent
7f183f68
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
16 deletions
+33
-16
TODO
TODO
+4
-2
configure.ac
configure.ac
+29
-14
No files found.
TODO
View file @
7808fea9
...
...
@@ -17,15 +17,17 @@
*) add error codes for status->error
*) add alsa audioOutput plugin
*) add a method for clearling the audio device's buffer. This isn't possible
with libao api.
*) allowing "pausing" of audio output devices
*) add support so that audioOutput plugins can modify the output audio format.
(This way, alsa's _near functions can be used to adjust for output
devices on the fly: for channels, bits, and rate)
*) add support for automagically detecting the current output device
*) add support for playing aac streams (gee, thanks icecast)
*) implement apev2 and id3v1 tag reader from xmms-musepack plugin
...
...
configure.ac
View file @
7808fea9
...
...
@@ -525,21 +525,9 @@ AC_OUTPUT(src/mp4ff/Makefile doc/Makefile src/Makefile Makefile )
echo ""
echo "########### MPD CONFIGURATION ############"
echo ""
echo "Volume Mixer Support:"
if test x$enable_oss = xyes; then
echo "OSS mixer support .............enabled"
else
echo "OSS mixer support .............disabled"
fi
if test x$enable_alsa = xyes; then
echo "ALSA mixer support ............enabled"
else
echo "ALSA mixer support ............disabled"
fi
echo ""
echo "i18n Support:"
if test x$enable_iconv = xyes; then
echo "iconv support .................enabled"
else
...
...
@@ -559,7 +547,24 @@ else
fi
echo ""
echo "Audio Format Support:"
echo "Volume Mixer Support:"
if test x$enable_oss = xyes; then
echo "OSS mixer support .............enabled"
else
echo "OSS mixer support .............disabled"
fi
if test x$enable_alsa = xyes; then
echo "ALSA mixer support ............enabled"
else
echo "ALSA mixer support ............disabled"
fi
echo ""
echo "Audio Output Support:"
if test x$enable_ao = xyes; then
echo "Playing audio via libao .......enabled"
else
...
...
@@ -572,12 +577,22 @@ else
echo "Playing audio via OSS .........disabled"
fi
if test x$enable_alsa = xyes; then
echo "Playing audio via ALSA ........enabled"
else
echo "Playing audio via ALSA ........disabled"
fi
if test x$enable_shout = xyes; then
echo "Streaming through shout .......enabled"
else
echo "Streaming through shout .......disabled"
fi
echo ""
echo "Audio Format Support:"
if test x$enable_id3 = xyes; then
echo "ID3 tag support ...............enabled"
if test x$use_mpd_id3tag = xyes; then
...
...
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