2006-04-01 09:54:39 +00:00
|
|
|
AC_PREREQ(2.52)
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2006-06-11 17:08:11 +00:00
|
|
|
dnl please read gstreamer/docs/random/autotools before changing this file
|
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl initialize autoconf
|
2006-06-11 17:08:11 +00:00
|
|
|
dnl releases only do -Wall, cvs and prerelease does -Werror too
|
|
|
|
dnl use a three digit version number for releases, and four for cvs/prerelease
|
2009-03-22 20:15:24 +00:00
|
|
|
AC_INIT(GStreamer Ugly Plug-ins, 0.10.11.1,
|
2006-04-01 09:54:39 +00:00
|
|
|
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
|
|
|
gst-plugins-ugly)
|
2007-07-23 09:07:19 +00:00
|
|
|
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_INIT
|
2006-04-01 09:54:39 +00:00
|
|
|
|
|
|
|
dnl initialize automake
|
|
|
|
AM_INIT_AUTOMAKE
|
|
|
|
|
|
|
|
dnl define PACKAGE_VERSION_* variables
|
|
|
|
AS_VERSION
|
|
|
|
|
|
|
|
dnl check if this is a release version
|
|
|
|
AS_NANO(GST_CVS="no", GST_CVS="yes")
|
|
|
|
|
|
|
|
dnl can autoconf find the source ?
|
|
|
|
AC_CONFIG_SRCDIR([ext/mad/gstmad.c])
|
|
|
|
|
|
|
|
dnl define the output header for config
|
|
|
|
AM_CONFIG_HEADER(config.h)
|
2002-02-16 05:44:09 +00:00
|
|
|
|
2002-08-27 09:54:08 +00:00
|
|
|
dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl sets host_* variables
|
|
|
|
AC_CANONICAL_HOST
|
2002-12-08 14:50:04 +00:00
|
|
|
|
|
|
|
dnl our libraries and install dirs use major.minor as a version
|
2006-04-01 09:54:39 +00:00
|
|
|
GST_MAJORMINOR=$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR
|
2005-02-22 16:48:58 +00:00
|
|
|
dnl we override it here if we need to for the release candidate of new series
|
2005-12-01 19:14:57 +00:00
|
|
|
GST_MAJORMINOR=0.10
|
2002-12-08 14:50:04 +00:00
|
|
|
AC_SUBST(GST_MAJORMINOR)
|
|
|
|
|
2006-04-01 15:30:56 +00:00
|
|
|
dnl FIXME: this macro doesn't actually work;
|
|
|
|
dnl the generated libtool script has no support for the listed tags.
|
|
|
|
dnl So this needs to be fixed first if we want to use this
|
|
|
|
dnl AS_LIBTOOL_TAGS([CXX])
|
|
|
|
|
2008-04-06 08:57:33 +00:00
|
|
|
AC_LIBTOOL_WIN32_DLL
|
2004-02-04 21:30:15 +00:00
|
|
|
AM_PROG_LIBTOOL
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2006-01-11 11:44:02 +00:00
|
|
|
dnl *** required versions of GStreamer stuff ***
|
2008-07-03 13:12:26 +00:00
|
|
|
GST_REQ=0.10.20
|
2007-10-10 12:02:30 +00:00
|
|
|
GSTPB_REQ=0.10.14
|
2006-01-11 11:44:02 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** autotools stuff ****
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl allow for different autotools
|
|
|
|
AS_AUTOTOOLS_ALTERNATE
|
2002-02-06 18:18:16 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl Add parameters for aclocal
|
|
|
|
AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
|
2004-07-13 06:36:55 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl set up gettext
|
2006-07-28 15:11:42 +00:00
|
|
|
dnl the version check needs to stay here because autopoint greps for it
|
2008-11-29 13:33:37 +00:00
|
|
|
AM_GNU_GETTEXT_VERSION(0.17)
|
2006-07-28 15:11:42 +00:00
|
|
|
AM_GNU_GETTEXT([external])
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_GETTEXT([gst-plugins-ugly-$GST_MAJORMINOR])
|
2003-05-21 15:16:51 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** check for arguments to configure ***
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_ARG_DEBUG
|
|
|
|
AG_GST_ARG_PROFILING
|
|
|
|
AG_GST_ARG_VALGRIND
|
|
|
|
AG_GST_ARG_GCOV
|
2005-10-19 09:47:31 +00:00
|
|
|
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_ARG_EXAMPLES
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_ARG_WITH_PKG_CONFIG_PATH
|
|
|
|
AG_GST_ARG_WITH_PACKAGE_NAME
|
|
|
|
AG_GST_ARG_WITH_PACKAGE_ORIGIN
|
2004-03-15 16:27:29 +00:00
|
|
|
|
2007-09-25 09:16:05 +00:00
|
|
|
AG_GST_ARG_WITH_PLUGINS
|
2006-04-01 09:54:39 +00:00
|
|
|
|
2007-09-25 09:16:05 +00:00
|
|
|
AG_GST_ARG_ENABLE_EXTERNAL
|
|
|
|
|
|
|
|
AG_GST_ARG_ENABLE_EXPERIMENTAL
|
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** checks for platform ***
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl * hardware/architecture *
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl common/m4/gst-arch.m4
|
|
|
|
dnl check CPU type
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_ARCH
|
2002-05-27 14:01:51 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl Determine endianness
|
|
|
|
AC_C_BIGENDIAN
|
2001-12-26 23:14:44 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** checks for programs ***
|
2004-02-13 13:09:27 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl find a compiler
|
|
|
|
AC_PROG_CC
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl determine c++ compiler
|
|
|
|
AC_PROG_CXX
|
|
|
|
dnl determine if c++ is available on this system
|
|
|
|
AC_CHECK_PROG(HAVE_CXX, $CXX, yes, no)
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2008-01-10 12:28:19 +00:00
|
|
|
dnl check if the compiler supports '-c' and '-o' options
|
|
|
|
AM_PROG_CC_C_O
|
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
|
|
|
|
AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")
|
2002-02-16 17:53:57 +00:00
|
|
|
|
2008-03-21 14:15:27 +00:00
|
|
|
dnl check if the compiler supports do while(0) macros
|
|
|
|
AG_GST_CHECK_DOWHILE_MACROS
|
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl check for documentation tools
|
|
|
|
GTK_DOC_CHECK([1.3])
|
|
|
|
AS_PATH_PYTHON([2.1])
|
2007-07-23 09:07:19 +00:00
|
|
|
AG_GST_PLUGIN_DOCS([1.3],[2.1])
|
2005-05-05 16:35:52 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** checks for libraries ***
|
2005-05-05 16:35:52 +00:00
|
|
|
|
2007-07-23 09:07:19 +00:00
|
|
|
dnl check for libm, for sin()
|
|
|
|
AC_CHECK_LIBM
|
|
|
|
AC_SUBST(LIBM)
|
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** checks for header files ***
|
2005-05-05 16:35:52 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl used by ext/a52dec
|
|
|
|
AX_CREATE_STDINT_H
|
2005-05-06 18:00:56 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl Check for malloc.h
|
|
|
|
AC_CHECK_HEADERS([malloc.h])
|
2005-05-06 18:00:56 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** checks for types/defines ***
|
2005-05-05 16:35:52 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** checks for structures ***
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** checks for compiler characteristics ***
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** checks for library functions ***
|
2003-07-28 11:37:49 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl Check for a way to display the function name in debug output
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_CHECK_FUNCTION
|
2003-12-16 16:58:59 +00:00
|
|
|
|
2007-02-13 09:15:41 +00:00
|
|
|
dnl *** checks for dependency libraries ***
|
|
|
|
|
|
|
|
dnl GLib is required
|
2008-04-04 19:04:20 +00:00
|
|
|
AG_GST_GLIB_CHECK([2.12])
|
2004-02-20 15:49:27 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl liboil is required
|
2007-07-23 09:07:19 +00:00
|
|
|
PKG_CHECK_MODULES(LIBOIL, liboil-0.3 >= 0.3.8, HAVE_LIBOIL=yes, HAVE_LIBOIL=no)
|
2008-03-03 12:50:56 +00:00
|
|
|
if test "x$HAVE_LIBOIL" != "xyes"; then
|
2007-07-23 09:07:19 +00:00
|
|
|
AC_ERROR([liboil-0.3.8 or later is required])
|
Convert a few inner loops to use liboil. This is currently optional, and is only enabled if liboil is present (duh!).
Original commit message from CVS:
Convert a few inner loops to use liboil. This is currently
optional, and is only enabled if liboil is present (duh!).
* configure.ac: Check for liboil-0.1
* gst/intfloat/Makefile.am:
* gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
(gst_int2float_chain_gint16):
* gst/videofilter/Makefile.am:
* gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
(tablelookup_u8), (gst_videobalance_planar411):
* gst/videotestsrc/Makefile.am:
* gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
* gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
(paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
(paint_hline_RGB565), (paint_hline_xRGB1555):
2004-02-12 07:37:49 +00:00
|
|
|
fi
|
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl checks for gstreamer
|
|
|
|
dnl uninstalled is selected preferentially -- see pkg-config(1)
|
2008-05-07 08:00:24 +00:00
|
|
|
AG_GST_CHECK_GST($GST_MAJORMINOR, [$GST_REQ], yes)
|
|
|
|
AG_GST_CHECK_GST_BASE($GST_MAJORMINOR, [$GST_REQ], yes)
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_CHECK_GST_CHECK($GST_MAJORMINOR, [$GST_REQ], no)
|
2008-05-07 08:00:24 +00:00
|
|
|
AG_GST_CHECK_GST_PLUGINS_BASE($GST_MAJORMINOR, [$GSTPB_REQ], yes)
|
2007-07-13 16:46:35 +00:00
|
|
|
AM_CONDITIONAL(HAVE_GST_CHECK, test "x$HAVE_GST_CHECK" = "xyes")
|
2002-08-13 10:39:26 +00:00
|
|
|
|
2007-02-13 09:15:41 +00:00
|
|
|
dnl Check for documentation xrefs
|
|
|
|
GLIB_PREFIX="`$PKG_CONFIG --variable=prefix glib-2.0`"
|
|
|
|
GST_PREFIX="`$PKG_CONFIG --variable=prefix gstreamer-$GST_MAJORMINOR`"
|
|
|
|
GSTPB_PREFIX="`$PKG_CONFIG --variable=prefix gstreamer-plugins-base-$GST_MAJORMINOR`"
|
|
|
|
AC_SUBST(GLIB_PREFIX)
|
|
|
|
AC_SUBST(GST_PREFIX)
|
|
|
|
AC_SUBST(GSTPB_PREFIX)
|
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** set variables based on configure arguments ***
|
2001-12-21 11:46:15 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl set license and copyright notice
|
|
|
|
GST_LICENSE="LGPL"
|
|
|
|
AC_DEFINE_UNQUOTED(GST_LICENSE, "$GST_LICENSE", [GStreamer license])
|
|
|
|
AC_SUBST(GST_LICENSE)
|
2001-12-23 03:25:55 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl set location of plugin directory
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_SET_PLUGINDIR
|
2001-12-23 03:25:55 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl define an ERROR_CFLAGS Makefile variable
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_SET_ERROR_CFLAGS($GST_CVS)
|
2001-12-23 03:25:55 +00:00
|
|
|
|
2008-02-23 12:35:53 +00:00
|
|
|
dnl define an ERROR_CXXFLAGS Makefile variable
|
|
|
|
AG_GST_SET_ERROR_CXXFLAGS($GST_CVS)
|
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl define correct level for debugging messages
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_SET_LEVEL_DEFAULT($GST_CVS)
|
2001-12-23 03:25:55 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl used in examples
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_DEFAULT_ELEMENTS
|
2006-04-01 09:54:39 +00:00
|
|
|
|
2008-03-03 12:50:56 +00:00
|
|
|
dnl *** plug-ins to include ***
|
|
|
|
|
|
|
|
dnl these are all the gst plug-ins, compilable without additional libs
|
|
|
|
AG_GST_CHECK_PLUGIN(asfdemux)
|
|
|
|
AG_GST_CHECK_PLUGIN(dvdlpcmdec)
|
|
|
|
AG_GST_CHECK_PLUGIN(dvdsub)
|
|
|
|
AG_GST_CHECK_PLUGIN(iec958)
|
|
|
|
AG_GST_CHECK_PLUGIN(mpegaudioparse)
|
|
|
|
AG_GST_CHECK_PLUGIN(mpegstream)
|
|
|
|
AG_GST_CHECK_PLUGIN(realmedia)
|
|
|
|
AG_GST_CHECK_PLUGIN(synaesthesia)
|
|
|
|
|
2009-04-08 18:44:53 +00:00
|
|
|
AC_CHECK_HEADERS([winsock2.h], HAVE_WINSOCK2_H=yes)
|
|
|
|
|
|
|
|
if test "x$HAVE_WINSOCK2_H" = "xyes"; then
|
|
|
|
WIN32_LIBS="-lws2_32"
|
|
|
|
AC_SUBST(WIN32_LIBS)
|
|
|
|
fi
|
|
|
|
|
2008-03-03 12:50:56 +00:00
|
|
|
dnl disable experimental plug-ins
|
|
|
|
if test "x$BUILD_EXPERIMENTAL" != "xyes"; then
|
|
|
|
AG_GST_DISABLE_PLUGIN(synaesthesia)
|
|
|
|
fi
|
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** ext plug-ins ***
|
|
|
|
dnl keep this list sorted alphabetically !
|
2001-12-21 11:46:15 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
if test "x$BUILD_EXTERNAL" = "xyes"; then
|
|
|
|
|
|
|
|
echo
|
|
|
|
AC_MSG_NOTICE([Checking libraries for plugins in ext/])
|
|
|
|
echo
|
2005-05-07 18:50:39 +00:00
|
|
|
|
2005-10-20 09:00:30 +00:00
|
|
|
dnl *** a52dec ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_A52DEC, true)
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_CHECK_FEATURE(A52DEC, [a52dec], a52dec, [
|
2005-10-20 09:00:30 +00:00
|
|
|
AC_CHECK_A52DEC(HAVE_A52DEC=yes, HAVE_A52DEC=no)
|
|
|
|
])
|
|
|
|
|
2005-07-19 20:51:16 +00:00
|
|
|
dnl *** AMR-NB ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_AMRNB, true)
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_CHECK_FEATURE(AMRNB, [AMR-NB], amrnb, [
|
|
|
|
AG_GST_CHECK_LIBHEADER(AMRNB, amrnb,
|
2005-07-19 20:51:16 +00:00
|
|
|
Decoder_Interface_init, -lm,
|
|
|
|
amrnb/interf_dec.h,
|
|
|
|
AMRNB_LIBS="-lamrnb -lm"
|
|
|
|
AC_SUBST(AMRNB_LIBS))
|
|
|
|
])
|
|
|
|
|
2008-08-12 09:16:13 +00:00
|
|
|
dnl *** cdio ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_CDIO, true)
|
|
|
|
AG_GST_CHECK_FEATURE(CDIO, [cdio library], cdio, [
|
|
|
|
AG_GST_PKG_CHECK_MODULES(CDIO, libcdio >= 0.76)
|
|
|
|
])
|
|
|
|
|
2006-02-09 17:27:57 +00:00
|
|
|
dnl *** dvdread ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DVDREAD, true)
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_CHECK_FEATURE(DVDREAD, [dvdread library], dvdreadsrc, [
|
|
|
|
AG_GST_CHECK_LIBHEADER(DVDREAD, dvdread, DVDOpen, , dvdread/dvd_reader.h, DVDREAD_LIBS="-ldvdread")
|
2006-02-09 17:27:57 +00:00
|
|
|
AC_SUBST(DVDREAD_LIBS)
|
|
|
|
])
|
2005-07-19 20:51:16 +00:00
|
|
|
|
dvdnavsrc ported to 0.10, for the most part at least. Not quite ready for prime time yet though.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/dvdnav/Makefile.am:
* ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_base_init),
(gst_dvd_nav_src_class_init), (gst_dvd_nav_src_check_get_range),
(gst_dvd_nav_src_init), (gst_dvd_nav_src_finalize),
(gst_dvd_nav_src_is_open), (gst_dvd_nav_src_set_property),
(gst_dvd_nav_src_get_property), (gst_dvd_nav_src_set_clock),
(gst_dvd_nav_src_tca_seek), (gst_dvd_nav_src_update_streaminfo),
(gst_dvd_nav_src_set_domain), (gst_dvd_nav_src_update_highlight),
(gst_dvd_nav_src_user_op), (dvdnav_get_event_name),
(dvdnav_get_read_domain_name), (gst_dvd_nav_src_print_event),
(gst_dvd_nav_src_make_dvd_event),
(gst_dvd_nav_src_structure_set_uint64),
(gst_dvd_nav_src_push_dvd_nav_packet_event),
(gst_dvd_nav_src_push_clut_change_event), (read_vts_info),
(gst_dvd_nav_src_push_titlelang_event),
(gst_dvd_nav_src_process_next_block), (gst_dvd_nav_src_create),
(gst_dvd_nav_src_start), (gst_dvd_nav_src_stop),
(gst_dvd_nav_src_handle_navigation_event),
(gst_dvd_nav_src_handle_seek_event), (gst_dvd_nav_src_src_event),
(gst_dvd_nav_src_query_position), (gst_dvd_nav_src_query_duration),
(gst_dvd_nav_src_query), (gst_dvd_nav_src_uri_get_type),
(gst_dvd_nav_src_uri_get_protocols), (gst_dvd_nav_src_uri_get_uri),
(gst_dvd_nav_src_uri_set_uri), (gst_dvd_nav_src_uri_handler_init),
(gst_dvd_nav_src_do_init), (plugin_init):
dvdnavsrc ported to 0.10, for the most part at least. Not quite
ready for prime time yet though.
2006-02-26 17:55:05 +00:00
|
|
|
dnl *** dvdnav ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DVDNAV, true)
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_CHECK_FEATURE(DVDNAV, [dvdnav library], dvdnav, [
|
dvdnavsrc ported to 0.10, for the most part at least. Not quite ready for prime time yet though.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/dvdnav/Makefile.am:
* ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_base_init),
(gst_dvd_nav_src_class_init), (gst_dvd_nav_src_check_get_range),
(gst_dvd_nav_src_init), (gst_dvd_nav_src_finalize),
(gst_dvd_nav_src_is_open), (gst_dvd_nav_src_set_property),
(gst_dvd_nav_src_get_property), (gst_dvd_nav_src_set_clock),
(gst_dvd_nav_src_tca_seek), (gst_dvd_nav_src_update_streaminfo),
(gst_dvd_nav_src_set_domain), (gst_dvd_nav_src_update_highlight),
(gst_dvd_nav_src_user_op), (dvdnav_get_event_name),
(dvdnav_get_read_domain_name), (gst_dvd_nav_src_print_event),
(gst_dvd_nav_src_make_dvd_event),
(gst_dvd_nav_src_structure_set_uint64),
(gst_dvd_nav_src_push_dvd_nav_packet_event),
(gst_dvd_nav_src_push_clut_change_event), (read_vts_info),
(gst_dvd_nav_src_push_titlelang_event),
(gst_dvd_nav_src_process_next_block), (gst_dvd_nav_src_create),
(gst_dvd_nav_src_start), (gst_dvd_nav_src_stop),
(gst_dvd_nav_src_handle_navigation_event),
(gst_dvd_nav_src_handle_seek_event), (gst_dvd_nav_src_src_event),
(gst_dvd_nav_src_query_position), (gst_dvd_nav_src_query_duration),
(gst_dvd_nav_src_query), (gst_dvd_nav_src_uri_get_type),
(gst_dvd_nav_src_uri_get_protocols), (gst_dvd_nav_src_uri_get_uri),
(gst_dvd_nav_src_uri_set_uri), (gst_dvd_nav_src_uri_handler_init),
(gst_dvd_nav_src_do_init), (plugin_init):
dvdnavsrc ported to 0.10, for the most part at least. Not quite
ready for prime time yet though.
2006-02-26 17:55:05 +00:00
|
|
|
translit(dnm, m, l) AC_SUBST(DVDNAV_LIBS)
|
|
|
|
translit(dnm, m, l) AC_SUBST(DVDNAV_CFLAGS)
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_CHECK_CONFIGPROG(DVDNAV, dvdnav-config)
|
dvdnavsrc ported to 0.10, for the most part at least. Not quite ready for prime time yet though.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/dvdnav/Makefile.am:
* ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_base_init),
(gst_dvd_nav_src_class_init), (gst_dvd_nav_src_check_get_range),
(gst_dvd_nav_src_init), (gst_dvd_nav_src_finalize),
(gst_dvd_nav_src_is_open), (gst_dvd_nav_src_set_property),
(gst_dvd_nav_src_get_property), (gst_dvd_nav_src_set_clock),
(gst_dvd_nav_src_tca_seek), (gst_dvd_nav_src_update_streaminfo),
(gst_dvd_nav_src_set_domain), (gst_dvd_nav_src_update_highlight),
(gst_dvd_nav_src_user_op), (dvdnav_get_event_name),
(dvdnav_get_read_domain_name), (gst_dvd_nav_src_print_event),
(gst_dvd_nav_src_make_dvd_event),
(gst_dvd_nav_src_structure_set_uint64),
(gst_dvd_nav_src_push_dvd_nav_packet_event),
(gst_dvd_nav_src_push_clut_change_event), (read_vts_info),
(gst_dvd_nav_src_push_titlelang_event),
(gst_dvd_nav_src_process_next_block), (gst_dvd_nav_src_create),
(gst_dvd_nav_src_start), (gst_dvd_nav_src_stop),
(gst_dvd_nav_src_handle_navigation_event),
(gst_dvd_nav_src_handle_seek_event), (gst_dvd_nav_src_src_event),
(gst_dvd_nav_src_query_position), (gst_dvd_nav_src_query_duration),
(gst_dvd_nav_src_query), (gst_dvd_nav_src_uri_get_type),
(gst_dvd_nav_src_uri_get_protocols), (gst_dvd_nav_src_uri_get_uri),
(gst_dvd_nav_src_uri_set_uri), (gst_dvd_nav_src_uri_handler_init),
(gst_dvd_nav_src_do_init), (plugin_init):
dvdnavsrc ported to 0.10, for the most part at least. Not quite
ready for prime time yet though.
2006-02-26 17:55:05 +00:00
|
|
|
if test x"$HAVE_DVDNAV" = x"yes"; then
|
|
|
|
dnl check version
|
|
|
|
DVDNAV_VERSION=`dvdnav-config --version|head -n 1|sed 's/^.*) //'|sed 's/ (.*)//'`
|
|
|
|
DVDNAV_MAJOR=`echo $DVDNAV_VERSION | cut -d. -f1 | sed s/[a-zA-Z\-].*//g`
|
|
|
|
DVDNAV_MINOR=`echo $DVDNAV_VERSION | cut -d. -f2 | sed s/[a-zA-Z\-].*//g`
|
|
|
|
DVDNAV_MICRO=`echo $DVDNAV_VERSION | cut -d. -f3 | sed s/[a-zA-Z\-].*//g`
|
|
|
|
if [[ "$DVDNAV_MAJOR" -eq "0" ]] && \
|
|
|
|
[[ "$DVDNAV_MINOR" -lt "1" ]]; then
|
|
|
|
AC_MSG_WARN([libdvdnav >= 0.1.7 is required, you have $DVDNAV_VERSION])
|
|
|
|
HAVE_DVDNAV="no"
|
|
|
|
elif [[ "$DVDNAV_MAJOR" -eq "0" ]] && \
|
|
|
|
[[ "$DVDNAV_MINOR" -eq "1" ]] && \
|
|
|
|
[[ "$DVDNAV_MICRO" -lt "7" ]]; then
|
|
|
|
AC_MSG_WARN([libdvdnav >= 0.1.7 is required, you have $DVDNAV_VERSION])
|
|
|
|
HAVE_DVDNAV="no"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
dnl now check for dvdread/nav_print.h - see #133002
|
|
|
|
AC_CHECK_HEADER(dvdread/nav_print.h, , [
|
|
|
|
AC_MSG_WARN([header dvdread/nav_print.h from dvdread missing])
|
|
|
|
HAVE_DVDNAV="no"
|
|
|
|
])
|
|
|
|
AS_SCRUB_INCLUDE(DVDNAV_CFLAGS)
|
2006-02-26 18:01:15 +00:00
|
|
|
|
|
|
|
dnl disabled until plugin is fully functional
|
|
|
|
HAVE_DVDNAV=no
|
|
|
|
], disabled, , [
|
|
|
|
AC_MSG_NOTICE([dvdnavsrc not stable yet, not building])
|
dvdnavsrc ported to 0.10, for the most part at least. Not quite ready for prime time yet though.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/dvdnav/Makefile.am:
* ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_base_init),
(gst_dvd_nav_src_class_init), (gst_dvd_nav_src_check_get_range),
(gst_dvd_nav_src_init), (gst_dvd_nav_src_finalize),
(gst_dvd_nav_src_is_open), (gst_dvd_nav_src_set_property),
(gst_dvd_nav_src_get_property), (gst_dvd_nav_src_set_clock),
(gst_dvd_nav_src_tca_seek), (gst_dvd_nav_src_update_streaminfo),
(gst_dvd_nav_src_set_domain), (gst_dvd_nav_src_update_highlight),
(gst_dvd_nav_src_user_op), (dvdnav_get_event_name),
(dvdnav_get_read_domain_name), (gst_dvd_nav_src_print_event),
(gst_dvd_nav_src_make_dvd_event),
(gst_dvd_nav_src_structure_set_uint64),
(gst_dvd_nav_src_push_dvd_nav_packet_event),
(gst_dvd_nav_src_push_clut_change_event), (read_vts_info),
(gst_dvd_nav_src_push_titlelang_event),
(gst_dvd_nav_src_process_next_block), (gst_dvd_nav_src_create),
(gst_dvd_nav_src_start), (gst_dvd_nav_src_stop),
(gst_dvd_nav_src_handle_navigation_event),
(gst_dvd_nav_src_handle_seek_event), (gst_dvd_nav_src_src_event),
(gst_dvd_nav_src_query_position), (gst_dvd_nav_src_query_duration),
(gst_dvd_nav_src_query), (gst_dvd_nav_src_uri_get_type),
(gst_dvd_nav_src_uri_get_protocols), (gst_dvd_nav_src_uri_get_uri),
(gst_dvd_nav_src_uri_set_uri), (gst_dvd_nav_src_uri_handler_init),
(gst_dvd_nav_src_do_init), (plugin_init):
dvdnavsrc ported to 0.10, for the most part at least. Not quite
ready for prime time yet though.
2006-02-26 17:55:05 +00:00
|
|
|
])
|
|
|
|
|
2005-08-16 16:12:15 +00:00
|
|
|
dnl *** lame ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LAME, true)
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_CHECK_FEATURE(LAME, [lame mp3 encoder library], lame, [
|
|
|
|
AG_GST_CHECK_LIBHEADER(LAME, mp3lame, lame_init, -lm, lame/lame.h,
|
2005-08-16 16:12:15 +00:00
|
|
|
[
|
|
|
|
HAVE_LAME="yes"
|
|
|
|
LAME_LIBS="-lmp3lame -lm"
|
|
|
|
dnl is lame presets available
|
|
|
|
LAME_CFLAGS=""
|
2007-09-08 20:54:54 +00:00
|
|
|
AC_TRY_COMPILE([#include <lame/lame.h>], [ int preset = MEDIUM ],
|
2005-08-16 16:12:15 +00:00
|
|
|
[LAME_CFLAGS="-DGSTLAME_PRESET"],
|
|
|
|
[LAME_CFLAGS=""]
|
|
|
|
)
|
|
|
|
AC_SUBST(LAME_CFLAGS)
|
|
|
|
AC_SUBST(LAME_LIBS)
|
|
|
|
])
|
|
|
|
])
|
2005-07-19 20:51:16 +00:00
|
|
|
|
2006-02-27 18:37:47 +00:00
|
|
|
dnl *** id3tag from the MAD project ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_ID3TAG, true)
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_CHECK_FEATURE(ID3TAG, [id3tag reading and writing from the MAD project],
|
2006-04-01 09:54:39 +00:00
|
|
|
id3tag, [
|
2005-05-06 11:04:30 +00:00
|
|
|
dnl check with pkg-config first
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_PKG_CHECK_MODULES(ID3TAG, id3tag >= 0.15)
|
2006-02-27 18:37:47 +00:00
|
|
|
if test "x$HAVE_ID3TAG" = "xno"; then
|
2005-05-06 11:04:30 +00:00
|
|
|
dnl fall back to oldskool detection
|
2006-02-27 18:37:47 +00:00
|
|
|
AC_CHECK_HEADER(id3tag.h, [
|
2005-05-06 11:04:30 +00:00
|
|
|
save_LIBS=$LIBS
|
|
|
|
LIBS="-lz"
|
2006-04-01 09:54:39 +00:00
|
|
|
AC_CHECK_LIB(id3tag, id3_tag_options,
|
|
|
|
HAVE_ID3TAG="yes" ID3TAG_LIBS="-lid3tag -lz")
|
2005-05-06 11:04:30 +00:00
|
|
|
LIBS=$save_LIBS
|
2006-06-11 17:08:11 +00:00
|
|
|
AC_SUBST(ID3TAG_LIBS)
|
2006-02-27 18:37:47 +00:00
|
|
|
])
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl *** mad ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true)
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [
|
2006-02-27 18:37:47 +00:00
|
|
|
if test "x$HAVE_ID3TAG" = "xyes"; then
|
|
|
|
dnl check with pkg-config first
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_PKG_CHECK_MODULES(MAD, mad >= 0.15 id3tag >= 0.15)
|
2006-02-27 18:37:47 +00:00
|
|
|
if test "x$HAVE_MAD" = "xno"; then
|
|
|
|
dnl fall back to oldskool detection
|
|
|
|
AC_CHECK_HEADER(mad.h, [
|
2006-04-01 09:54:39 +00:00
|
|
|
AC_CHECK_LIB(mad, mad_decoder_finish,
|
|
|
|
HAVE_MAD="yes" MAD_LIBS="-lmad $ID3TAG_LIBS")
|
2006-02-27 18:37:47 +00:00
|
|
|
])
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
HAVE_MAD="no"
|
2006-04-01 09:54:39 +00:00
|
|
|
AC_MSG_WARN([libid3tag not available, cannot build MAD MP3 decoder plugin])
|
2006-02-27 18:37:47 +00:00
|
|
|
fi
|
2005-05-06 11:04:30 +00:00
|
|
|
])
|
|
|
|
AC_SUBST(MAD_LIBS)
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2005-07-19 20:51:16 +00:00
|
|
|
dnl *** mpeg2dec ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2DEC, true)
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_CHECK_FEATURE(MPEG2DEC, [mpeg2dec], mpeg2dec, [
|
|
|
|
AG_GST_PKG_CHECK_MODULES(MPEG2DEC, libmpeg2 >= 0.4.0)
|
2005-07-19 20:51:16 +00:00
|
|
|
])
|
|
|
|
|
2005-08-25 09:30:23 +00:00
|
|
|
dnl *** sidplay : works with libsidplay 1.36.x (not 2.x.x) ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SIDPLAY, true)
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_CHECK_FEATURE(SIDPLAY, [libsidplay], sid, [
|
2005-08-25 09:30:23 +00:00
|
|
|
GST_PATH_SIDPLAY()
|
2005-08-02 11:42:33 +00:00
|
|
|
])
|
|
|
|
|
2009-03-10 00:10:20 +00:00
|
|
|
dnl *** twolame ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_TWOLAME, true)
|
|
|
|
AG_GST_CHECK_FEATURE(TWOLAME, [twolame], twolame, [
|
2009-03-22 20:08:48 +00:00
|
|
|
PKG_CHECK_MODULES(TWOLAME, twolame >= 0.3.10, [
|
2009-03-10 00:10:20 +00:00
|
|
|
HAVE_TWOLAME="yes"], [
|
|
|
|
HAVE_TWOLAME="no"
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
|
|
|
AC_SUBST(TWOLAME_CFLAGS)
|
|
|
|
AC_SUBST(TWOLAME_LIBS)
|
|
|
|
])
|
|
|
|
|
2006-06-17 14:48:04 +00:00
|
|
|
else
|
|
|
|
|
|
|
|
dnl not building plugins with external dependencies,
|
|
|
|
dnl but we still need to set the conditionals
|
|
|
|
|
|
|
|
AM_CONDITIONAL(USE_A52DEC, false)
|
|
|
|
AM_CONDITIONAL(USE_AMRNB, false)
|
2008-08-12 09:16:13 +00:00
|
|
|
AM_CONDITIONAL(USE_CDIO, false)
|
2006-06-17 14:48:04 +00:00
|
|
|
AM_CONDITIONAL(USE_DVDREAD, false)
|
|
|
|
AM_CONDITIONAL(USE_DVDNAV, false)
|
|
|
|
AM_CONDITIONAL(USE_LAME, false)
|
|
|
|
AM_CONDITIONAL(USE_ID3TAG, false)
|
|
|
|
AM_CONDITIONAL(USE_MAD, false)
|
|
|
|
AM_CONDITIONAL(USE_MPEG2DEC, false)
|
|
|
|
AM_CONDITIONAL(USE_SIDPLAY, false)
|
2009-03-10 00:10:20 +00:00
|
|
|
AM_CONDITIONAL(USE_TWOLAME, false)
|
2006-06-17 14:48:04 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
fi dnl of EXT plugins
|
2005-06-29 16:14:30 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** finalize CFLAGS, LDFLAGS, LIBS
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl Overview:
|
|
|
|
dnl GST_OPTION_CFLAGS: common flags for profiling, debugging, errors, ...
|
|
|
|
dnl GST_*: flags shared by built objects to link against GStreamer
|
|
|
|
dnl GST_ALL_LDFLAGS: linker flags shared by all
|
|
|
|
dnl GST_LIB_LDFLAGS: additional linker flags for all libaries
|
|
|
|
dnl GST_LT_LDFLAGS: library versioning of our libraries
|
|
|
|
dnl GST_PLUGIN_LDFLAGS: flags to be used for all plugins
|
2005-08-31 18:33:08 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl GST_OPTION_CFLAGS
|
|
|
|
if test "x$USE_DEBUG" = xyes; then
|
|
|
|
PROFILE_CFLAGS="-g"
|
|
|
|
fi
|
|
|
|
AC_SUBST(PROFILE_CFLAGS)
|
2005-08-31 18:33:08 +00:00
|
|
|
|
2008-02-08 01:09:53 +00:00
|
|
|
if test "x$PACKAGE_VERSION_NANO" = "x1"; then
|
|
|
|
dnl Define _only_ during CVS (not pre-releases or releases)
|
2007-12-09 04:29:35 +00:00
|
|
|
DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED"
|
|
|
|
else
|
|
|
|
DEPRECATED_CFLAGS=""
|
|
|
|
fi
|
2006-04-01 09:54:39 +00:00
|
|
|
AC_SUBST(DEPRECATED_CFLAGS)
|
2003-10-31 20:03:29 +00:00
|
|
|
|
2008-02-23 12:35:53 +00:00
|
|
|
dnl every flag in GST_OPTION_CFLAGS and GST_OPTION_CXXFLAGS can be overridden
|
|
|
|
dnl at make time with e.g. make ERROR_CFLAGS=""
|
2006-04-01 09:54:39 +00:00
|
|
|
GST_OPTION_CFLAGS="\$(ERROR_CFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
|
2008-02-23 12:35:53 +00:00
|
|
|
GST_OPTION_CXXFLAGS="\$(ERROR_CXXFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
|
2006-04-01 09:54:39 +00:00
|
|
|
AC_SUBST(GST_OPTION_CFLAGS)
|
2008-02-23 12:35:53 +00:00
|
|
|
AC_SUBST(GST_OPTION_CXXFLAGS)
|
2006-04-01 09:54:39 +00:00
|
|
|
|
|
|
|
dnl FIXME: do we want to rename to GST_ALL_* ?
|
|
|
|
dnl prefer internal headers to already installed ones
|
|
|
|
dnl also add builddir include for enumtypes and marshal
|
|
|
|
dnl add GST_OPTION_CFLAGS, but overridable
|
|
|
|
GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS \$(GST_OPTION_CFLAGS)"
|
2008-07-08 14:01:51 +00:00
|
|
|
GST_CXXFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CXXFLAGS \$(GST_OPTION_CXXFLAGS)"
|
2006-04-01 09:54:39 +00:00
|
|
|
AC_SUBST(GST_CFLAGS)
|
2008-02-23 12:35:53 +00:00
|
|
|
AC_SUBST(GST_CXXFLAGS)
|
2006-04-01 09:54:39 +00:00
|
|
|
AC_SUBST(GST_LIBS)
|
|
|
|
|
|
|
|
dnl LDFLAGS really should only contain flags, not libs - they get added before
|
|
|
|
dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
|
|
|
|
GST_ALL_LDFLAGS="-no-undefined"
|
|
|
|
AC_SUBST(GST_ALL_LDFLAGS)
|
|
|
|
|
|
|
|
dnl this really should only contain flags, not libs - they get added before
|
|
|
|
dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
|
|
|
|
GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '^[_]*gst_plugin_desc\$\$' $GST_ALL_LDFLAGS"
|
|
|
|
AC_SUBST(GST_PLUGIN_LDFLAGS)
|
|
|
|
|
2009-02-25 20:52:08 +00:00
|
|
|
SHAVE_INIT([common],[enable])
|
2009-02-22 19:19:12 +00:00
|
|
|
|
2006-04-01 09:54:39 +00:00
|
|
|
dnl *** output files ***
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-02-08 20:12:28 +00:00
|
|
|
AC_CONFIG_FILES(
|
2001-12-17 18:37:01 +00:00
|
|
|
Makefile
|
2009-02-22 19:19:12 +00:00
|
|
|
common/Makefile
|
|
|
|
common/m4/Makefile
|
|
|
|
common/shave
|
|
|
|
common/shave-libtool
|
2006-07-31 09:53:05 +00:00
|
|
|
gst-libs/Makefile
|
|
|
|
gst-libs/gst/Makefile
|
2001-12-21 11:46:15 +00:00
|
|
|
gst/Makefile
|
asfdemux ported to 0.10. Does still need a bit of work (seems like there's something funky going on when timestamping...
Original commit message from CVS:
* configure.ac:
* gst/asfdemux/asfheaders.c: (gst_asf_identify_guid),
(gst_asf_get_guid_nick):
* gst/asfdemux/asfheaders.h:
* gst/asfdemux/gstasf.c: (plugin_init):
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
(gst_asf_demux_class_init), (gst_asf_demux_init),
(gst_asf_demux_sink_event), (gst_asf_demux_handle_seek_event),
(gst_asf_demux_handle_src_event),
(gst_asf_demux_get_current_offset), (gst_asf_demux_chain),
(gst_asf_demux_skip_bytes), (gst_asf_demux_identify_guid),
(gst_asf_demux_get_uint8), (gst_asf_demux_get_uint16),
(gst_asf_demux_get_uint32), (gst_asf_demux_get_uint64),
(gst_asf_demux_get_var_length), (gst_asf_demux_get_buffer),
(gst_asf_demux_get_bytes), (gst_asf_demux_get_string),
(gst_asf_demux_get_guid), (gst_asf_demux_get_obj_file),
(gst_asf_demux_get_bitrate_record),
(gst_asf_demux_get_obj_comment), (gst_asf_demux_get_obj_header),
(gst_asf_demux_get_obj_header_ext), (gst_asf_demux_get_obj_stream),
(gst_asf_demux_get_replicated_data), (gst_asf_demux_get_obj_data),
(gst_asf_demux_get_obj_data_correction),
(gst_asf_demux_get_stream_audio),
(gst_asf_demux_get_stream_correction),
(gst_asf_demux_get_stream_video),
(gst_asf_demux_get_stream_video_format),
(gst_asf_demux_get_stream), (gst_asf_demux_setup_pad),
(gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream),
(gst_asf_demux_process_stream),
(gst_asf_demux_get_gst_tag_from_tag_name),
(gst_asf_demux_commit_taglist),
(gst_asf_demux_process_ext_content_desc),
(gst_asf_demux_get_object_header), (gst_asf_demux_process_data),
(gst_asf_demux_process_header), (gst_asf_demux_process_file),
(gst_asf_demux_process_comment),
(gst_asf_demux_process_bitrate_props_object),
(gst_asf_demux_process_header_ext), (gst_asf_demux_process_object),
(gst_asf_demux_descramble_segment),
(gst_asf_demux_element_send_event),
(gst_asf_demux_send_event_unlocked), (gst_asf_demux_push_buffer),
(gst_asf_demux_process_chunk), (gst_asf_demux_process_segment),
(gst_asf_demux_handle_data), (gst_asf_demux_parse_data),
(gst_asf_demux_get_src_query_types),
(gst_asf_demux_handle_src_query), (gst_asf_demux_change_state):
* gst/asfdemux/gstasfdemux.h:
asfdemux ported to 0.10. Does still need a bit of work (seems like
there's something funky going on when timestamping video frames).
The seeking code is likely to make Wim cry, but hey, at least it
compiles.
2006-02-15 15:48:07 +00:00
|
|
|
gst/asfdemux/Makefile
|
2005-08-31 11:53:35 +00:00
|
|
|
gst/dvdlpcmdec/Makefile
|
Port dvdsubdec to 0.10
Original commit message from CVS:
* configure.ac:
* gst/dvdsub/Makefile.am:
* gst/dvdsub/gstdvdsubdec.c: (gst_dvd_sub_dec_base_init),
(gst_dvd_sub_dec_class_init), (gst_dvd_sub_dec_init),
(gst_dvd_sub_dec_finalize), (gst_dvd_sub_dec_src_event),
(gst_dvd_sub_dec_get_event_delay), (gst_dvd_sub_dec_parse_subpic),
(gst_get_nibble), (gst_setup_palette), (gst_get_rle_code),
(gst_draw_rle_line), (gst_dvd_sub_dec_merge_title),
(gst_send_empty_fill), (gst_send_subtitle_frame),
(gst_dvd_sub_dec_advance_time), (gst_dvd_sub_dec_chain),
(gst_dvd_sub_dec_sink_event), (gst_dvd_sub_dec_handle_dvd_event),
(plugin_init):
* gst/dvdsub/gstdvdsubdec.h:
Port dvdsubdec to 0.10
2006-02-22 14:54:54 +00:00
|
|
|
gst/dvdsub/Makefile
|
2005-09-01 17:31:21 +00:00
|
|
|
gst/iec958/Makefile
|
2005-08-31 17:57:35 +00:00
|
|
|
gst/mpegaudioparse/Makefile
|
2005-11-14 21:20:21 +00:00
|
|
|
gst/mpegstream/Makefile
|
2005-06-27 09:16:09 +00:00
|
|
|
gst/realmedia/Makefile
|
2006-09-18 12:29:09 +00:00
|
|
|
gst/synaesthesia/Makefile
|
2005-05-06 11:04:30 +00:00
|
|
|
ext/Makefile
|
2005-10-20 09:00:30 +00:00
|
|
|
ext/a52dec/Makefile
|
2005-08-30 17:59:55 +00:00
|
|
|
ext/amrnb/Makefile
|
2008-08-12 09:16:13 +00:00
|
|
|
ext/cdio/Makefile
|
dvdnavsrc ported to 0.10, for the most part at least. Not quite ready for prime time yet though.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/dvdnav/Makefile.am:
* ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_base_init),
(gst_dvd_nav_src_class_init), (gst_dvd_nav_src_check_get_range),
(gst_dvd_nav_src_init), (gst_dvd_nav_src_finalize),
(gst_dvd_nav_src_is_open), (gst_dvd_nav_src_set_property),
(gst_dvd_nav_src_get_property), (gst_dvd_nav_src_set_clock),
(gst_dvd_nav_src_tca_seek), (gst_dvd_nav_src_update_streaminfo),
(gst_dvd_nav_src_set_domain), (gst_dvd_nav_src_update_highlight),
(gst_dvd_nav_src_user_op), (dvdnav_get_event_name),
(dvdnav_get_read_domain_name), (gst_dvd_nav_src_print_event),
(gst_dvd_nav_src_make_dvd_event),
(gst_dvd_nav_src_structure_set_uint64),
(gst_dvd_nav_src_push_dvd_nav_packet_event),
(gst_dvd_nav_src_push_clut_change_event), (read_vts_info),
(gst_dvd_nav_src_push_titlelang_event),
(gst_dvd_nav_src_process_next_block), (gst_dvd_nav_src_create),
(gst_dvd_nav_src_start), (gst_dvd_nav_src_stop),
(gst_dvd_nav_src_handle_navigation_event),
(gst_dvd_nav_src_handle_seek_event), (gst_dvd_nav_src_src_event),
(gst_dvd_nav_src_query_position), (gst_dvd_nav_src_query_duration),
(gst_dvd_nav_src_query), (gst_dvd_nav_src_uri_get_type),
(gst_dvd_nav_src_uri_get_protocols), (gst_dvd_nav_src_uri_get_uri),
(gst_dvd_nav_src_uri_set_uri), (gst_dvd_nav_src_uri_handler_init),
(gst_dvd_nav_src_do_init), (plugin_init):
dvdnavsrc ported to 0.10, for the most part at least. Not quite
ready for prime time yet though.
2006-02-26 17:55:05 +00:00
|
|
|
ext/dvdnav/Makefile
|
2006-02-09 17:27:57 +00:00
|
|
|
ext/dvdread/Makefile
|
2005-08-16 16:12:15 +00:00
|
|
|
ext/lame/Makefile
|
2005-05-06 11:04:30 +00:00
|
|
|
ext/mad/Makefile
|
2005-07-19 20:51:16 +00:00
|
|
|
ext/mpeg2dec/Makefile
|
2005-08-30 17:59:55 +00:00
|
|
|
ext/sidplay/Makefile
|
2009-03-10 00:10:20 +00:00
|
|
|
ext/twolame/Makefile
|
2005-08-31 18:33:08 +00:00
|
|
|
docs/Makefile
|
|
|
|
docs/plugins/Makefile
|
|
|
|
docs/version.entities
|
add test for amrnbenc, enable test infrastructure, and fix a leak
Original commit message from CVS:
add test for amrnbenc, enable test infrastructure, and fix a leak
* common/check.mak:
allow for specifying more than one suppressions file in SUPPRESSIONS
* Makefile.am:
* tests/Makefile.am:
* tests/check/.cvsignore:
* tests/check/Makefile.am:
* tests/check/elements/.cvsignore:
* configure.ac:
add tests/check
* tests/check/gst-plugins-ugly.supp:
add suppressions for libs used by -ugly
* tests/check/elements/amrnbenc.c: (buffer_new), (buffer_unref),
(setup_amrnbenc), (cleanup_amrnbenc), (push_data),
(GST_START_TEST), (amrnbenc_suite), (main):
add a simple test for encoding amr
* ext/amrnb/amrnbenc.c: (gst_amrnbenc_init):
fix pad template leaks
2006-04-10 14:47:11 +00:00
|
|
|
tests/Makefile
|
|
|
|
tests/check/Makefile
|
2004-03-18 12:38:53 +00:00
|
|
|
m4/Makefile
|
2006-07-28 15:11:42 +00:00
|
|
|
po/Makefile.in
|
2007-04-25 17:23:33 +00:00
|
|
|
win32/common/config.h
|
2005-08-31 18:33:08 +00:00
|
|
|
gst-plugins-ugly.spec
|
2001-12-17 18:37:01 +00:00
|
|
|
)
|
2002-02-08 20:12:28 +00:00
|
|
|
AC_OUTPUT
|
|
|
|
|
2007-02-28 19:30:35 +00:00
|
|
|
AG_GST_OUTPUT_PLUGINS
|