mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
Add matroska support to the build tree
Original commit message from CVS: Add matroska support to the build tree
This commit is contained in:
parent
fc44c4515c
commit
1c4eb87d8a
3 changed files with 25 additions and 6 deletions
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit f12ad60f50de84a39e26901b3ac29c15c1bf954e
|
||||
Subproject commit 74856703c922315f64b9314547966bd4963db968
|
12
configure.ac
12
configure.ac
|
@ -666,7 +666,7 @@ GST_CHECK_FEATURE(FFMPEG, [ffmpeg plug-ins], ffmpeg, [
|
|||
# prerelease and release should get it disted
|
||||
if test "x$GST_PLUGINS_VERSION_NANO" = x1; then
|
||||
AC_MSG_NOTICE(slurping FFmpeg CVS source)
|
||||
AS_SLURP_FFMPEG(gst-libs/ext/ffmpeg, 2003-06-09 22:00 GMT,
|
||||
AS_SLURP_FFMPEG(gst-libs/ext/ffmpeg, 2003-07-05 22:00 GMT,
|
||||
HAVE_FFMPEG=yes, HAVE_FFMPEG=no)
|
||||
else
|
||||
AC_MSG_NOTICE(FFmpeg CVS code should be included already)
|
||||
|
@ -832,6 +832,15 @@ GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [
|
|||
])
|
||||
AC_SUBST(MAD_LIBS)
|
||||
|
||||
dnl *** matroska ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_MATROSKA, true)
|
||||
GST_CHECK_FEATURE(MATROSKA, [matroska muxer/demuxer], matroska muxer/demuxer, [
|
||||
PATH_EBML([HAVE_MATROSKA=yes], [HAVE_MATROSKA=no])
|
||||
if test x$HAVE_MATROSKA = xyes; then
|
||||
PATH_MATROSKA(0.4.4, [HAVE_MATROSKA=yes], [HAVE_MATROSKA=no])
|
||||
fi
|
||||
])
|
||||
|
||||
dnl *** mikmod ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_MIKMOD, true)
|
||||
GST_CHECK_FEATURE(MIKMOD, [mikmod plug-in], mikmod, [
|
||||
|
@ -1237,6 +1246,7 @@ ext/libfame/Makefile
|
|||
ext/libpng/Makefile
|
||||
ext/mad/Makefile
|
||||
ext/mas/Makefile
|
||||
ext/matroska/Makefile
|
||||
ext/mikmod/Makefile
|
||||
ext/mpeg2dec/Makefile
|
||||
ext/pango/Makefile
|
||||
|
|
|
@ -166,6 +166,12 @@ else
|
|||
MAD_DIR=
|
||||
endif
|
||||
|
||||
if USE_MATROSKA
|
||||
MATROSKA_DIR=matroska
|
||||
else
|
||||
MATROSKA_DIR=
|
||||
endif
|
||||
|
||||
if USE_MIKMOD
|
||||
MIKMOD_DIR=mikmod
|
||||
else
|
||||
|
@ -264,8 +270,9 @@ SUBDIRS=$(A52DEC_DIR) $(AALIB_DIR) $(ALSA_DIR) \
|
|||
$(HERMES_DIR) $(JACK_DIR) $(JPEG_DIR) \
|
||||
$(LADSPA_DIR) $(LAME_DIR) $(LCS_DIR) \
|
||||
$(LIBDV_DIR) $(LIBFAME_DIR) $(LIBPNG_DIR) \
|
||||
$(MAD_DIR) $(MIKMOD_DIR) $(MPEG2DEC_DIR) $(PANGO_DIR) \
|
||||
$(RAW1394_DIR) $(SDL_DIR) $(SHOUT_DIR) $(SIDPLAY_DIR) \
|
||||
$(MAD_DIR) $(MATROSKA_DIR) $(MIKMOD_DIR) \
|
||||
$(MPEG2DEC_DIR) $(PANGO_DIR) $(RAW1394_DIR) \
|
||||
$(SDL_DIR) $(SHOUT_DIR) $(SIDPLAY_DIR) \
|
||||
$(SMOOTHWAVE_DIR) $(SWFDEC_DIR) $(TARKIN_DIR) \
|
||||
$(VORBIS_DIR) $(XVID_DIR) $(SNAPSHOT_DIR)
|
||||
|
||||
|
@ -276,7 +283,9 @@ DIST_SUBDIRS=\
|
|||
flac gdk_pixbuf gnomevfs gsm \
|
||||
hermes ivorbis jack jpeg \
|
||||
ladspa lame lcs libfame libpng \
|
||||
mad mikmod mpeg2dec pango raw1394 \
|
||||
sdl snapshot sndfile shout shout2 sidplay \
|
||||
mad matroska mikmod \
|
||||
mpeg2dec pango raw1394 \
|
||||
sdl snapshot sndfile \
|
||||
shout shout2 sidplay \
|
||||
smoothwave swfdec tarkin vorbis \
|
||||
xvid
|
||||
|
|
Loading…
Reference in a new issue