mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
Add faac build
Original commit message from CVS: Add faac build
This commit is contained in:
parent
5dca8dcdf7
commit
521647fca9
2 changed files with 17 additions and 0 deletions
|
@ -768,6 +768,14 @@ GST_CHECK_FEATURE(ESD, [esound plug-ins], esdsink esdmon, [
|
|||
AS_SCRUB_INCLUDE(ESD_CFLAGS)
|
||||
])
|
||||
|
||||
dnl **** Free AAC Encoder (FAAC) ****
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_FAAC, true)
|
||||
GST_CHECK_FEATURE(FAAC, [AAC encoder plug-in], faac, [
|
||||
GST_CHECK_LIBHEADER(FAAC, faac, faacEncOpen, -lm, faac.h, FAAC_LIBS="-lfaac -lm")
|
||||
AS_SCRUB_INCLUDE(FAAC_CFLAGS)
|
||||
AC_SUBST(FAAC_LIBS)
|
||||
])
|
||||
|
||||
dnl **** Free AAC Decoder (FAAD) ****
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_FAAD, true)
|
||||
GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [
|
||||
|
@ -1398,6 +1406,7 @@ ext/dv/Makefile
|
|||
ext/dvdread/Makefile
|
||||
ext/dvdnav/Makefile
|
||||
ext/esd/Makefile
|
||||
ext/faac/Makefile
|
||||
ext/faad/Makefile
|
||||
ext/ffmpeg/Makefile
|
||||
ext/flac/Makefile
|
||||
|
|
|
@ -70,6 +70,12 @@ else
|
|||
MAS_DIR=
|
||||
endif
|
||||
|
||||
if USE_FAAC
|
||||
FAAC_DIR=faac
|
||||
else
|
||||
FAAC_DIR=
|
||||
endif
|
||||
|
||||
if USE_FAAD
|
||||
FAAD_DIR=faad
|
||||
else
|
||||
|
@ -286,6 +292,7 @@ SUBDIRS=\
|
|||
$(DVDREAD_DIR) \
|
||||
$(DVDNAV_DIR) \
|
||||
$(ESD_DIR) \
|
||||
$(FAAC_DIR) \
|
||||
$(FAAD_DIR) \
|
||||
$(FFMPEG_DIR) \
|
||||
$(FLAC_DIR) \
|
||||
|
@ -334,6 +341,7 @@ DIST_SUBDIRS=\
|
|||
dvdnav \
|
||||
esd \
|
||||
mas \
|
||||
faac \
|
||||
faad \
|
||||
ffmpeg \
|
||||
flac \
|
||||
|
|
Loading…
Reference in a new issue