mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +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)
|
libcaca (zeeshan)
|
||||||
law (wim)
|
law (wim)
|
||||||
shout2 (zaheer) - not fully tested
|
shout2 (zaheer) - not fully tested
|
||||||
|
esdsink (arwed)
|
||||||
|
|
||||||
osssink is partially done in the threaded branch (wim)
|
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)
|
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_LIBS)
|
||||||
AC_SUBST(GST_CFLAGS)
|
AC_SUBST(GST_CFLAGS)
|
||||||
|
@ -484,6 +496,7 @@ ext/libcaca/Makefile
|
||||||
ext/mad/Makefile
|
ext/mad/Makefile
|
||||||
ext/shout2/Makefile
|
ext/shout2/Makefile
|
||||||
ext/sidplay/Makefile
|
ext/sidplay/Makefile
|
||||||
|
ext/esd/Makefile
|
||||||
common/Makefile
|
common/Makefile
|
||||||
common/m4/Makefile
|
common/m4/Makefile
|
||||||
m4/Makefile
|
m4/Makefile
|
||||||
|
|
|
@ -94,11 +94,11 @@ endif
|
||||||
# DVDNAV_DIR=
|
# DVDNAV_DIR=
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
# if USE_ESD
|
if USE_ESD
|
||||||
# ESD_DIR=esd
|
ESD_DIR=esd
|
||||||
# else
|
else
|
||||||
# ESD_DIR=
|
ESD_DIR=
|
||||||
# endif
|
endif
|
||||||
|
|
||||||
# if USE_FAAC
|
# if USE_FAAC
|
||||||
# FAAC_DIR=faac
|
# FAAC_DIR=faac
|
||||||
|
|
Loading…
Reference in a new issue