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
baf8efff
Commit
baf8efff
authored
Nov 02, 2004
by
Warren Dukes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disable shout support if vorbis not found
git-svn-id:
https://svn.musicpd.org/mpd/trunk@2477
09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent
c1bbb35f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
TODO
TODO
+0
-5
configure.ac
configure.ac
+6
-0
No files found.
TODO
View file @
baf8efff
...
@@ -19,11 +19,6 @@
...
@@ -19,11 +19,6 @@
*) Optimize read() on clients
*) Optimize read() on clients
*) Add libshout && vorbis encoding support
*) clean up code to make more robust (only works for 16-bits)
*) flush buffer on clearEncoder, it produces a little hiccup currently
*) cleanup configure script stuff (shout needs vorbisenc)
*) Make each audioOutput device enable/disable by the client
*) Make each audioOutput device enable/disable by the client
*) add command
*) add command
...
...
configure.ac
View file @
baf8efff
...
@@ -102,6 +102,12 @@ AP_maGiC_VALUE
...
@@ -102,6 +102,12 @@ AP_maGiC_VALUE
fi
fi
if test x$enable_ao = xyes; then
if test x$enable_ao = xyes; then
if test x$enable_ogg = xno; then
AC_MSG_WARN("disabling shout streaming support since vorbis was not found")
fi
fi
if test x$enable_ao = xyes; then
XIPH_PATH_AO(MPD_LIBS="$MPD_LIBS $AO_LIBS" MPD_CFLAGS="$MPD_CFLAGS $AO_CFLAGS",AC_MSG_ERROR(Must have libao installed!!!))
XIPH_PATH_AO(MPD_LIBS="$MPD_LIBS $AO_LIBS" MPD_CFLAGS="$MPD_CFLAGS $AO_CFLAGS",AC_MSG_ERROR(Must have libao installed!!!))
AC_DEFINE(HAVE_AUDIO, 1, [Define to play audio])
AC_DEFINE(HAVE_AUDIO, 1, [Define to play audio])
fi
fi
...
...
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