mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
Ported esdsink plugin.
Original commit message from CVS: Ported esdsink plugin.
This commit is contained in:
parent
f8da70ee6e
commit
6b2c96444f
3 changed files with 19 additions and 5 deletions
|
@ -8,6 +8,7 @@ aalib (wim)
|
|||
libcaca (zeeshan)
|
||||
law (wim)
|
||||
shout2 (zaheer) - not fully tested
|
||||
esdsink (arwed)
|
||||
|
||||
osssink is partially done in the threaded branch (wim)
|
||||
|
||||
|
|
13
configure.ac
13
configure.ac
|
@ -420,6 +420,18 @@ GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [
|
|||
])
|
||||
AC_SUBST(MAD_LIBS)
|
||||
|
||||
dnl **** ESound ****
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_ESD, true)
|
||||
GST_CHECK_FEATURE(ESD, [esound plug-ins], esdsink, [
|
||||
PKG_CHECK_MODULES(ESD, esound >= 0.2.12, [
|
||||
HAVE_ESD="yes"
|
||||
AC_SUBST(ESD_CFLAGS)
|
||||
AC_SUBST(ESD_LIBS)
|
||||
], [
|
||||
AM_PATH_ESD(0.2.12, HAVE_ESD="yes", HAVE_ESD="no")
|
||||
AS_SCRUB_INCLUDE(ESD_CFLAGS)
|
||||
])
|
||||
])
|
||||
|
||||
AC_SUBST(GST_LIBS)
|
||||
AC_SUBST(GST_CFLAGS)
|
||||
|
@ -484,6 +496,7 @@ ext/libcaca/Makefile
|
|||
ext/mad/Makefile
|
||||
ext/shout2/Makefile
|
||||
ext/sidplay/Makefile
|
||||
ext/esd/Makefile
|
||||
common/Makefile
|
||||
common/m4/Makefile
|
||||
m4/Makefile
|
||||
|
|
|
@ -94,11 +94,11 @@ endif
|
|||
# DVDNAV_DIR=
|
||||
# endif
|
||||
|
||||
# if USE_ESD
|
||||
# ESD_DIR=esd
|
||||
# else
|
||||
# ESD_DIR=
|
||||
# endif
|
||||
if USE_ESD
|
||||
ESD_DIR=esd
|
||||
else
|
||||
ESD_DIR=
|
||||
endif
|
||||
|
||||
# if USE_FAAC
|
||||
# FAAC_DIR=faac
|
||||
|
|
Loading…
Reference in a new issue