2002-02-06 18:18:16 +00:00
|
|
|
dnl autoconf configuration file for gst-plugins
|
2001-12-17 18:37:01 +00:00
|
|
|
AC_INIT
|
2004-08-02 11:39:17 +00:00
|
|
|
AC_CANONICAL_TARGET
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-02-16 05:44:09 +00:00
|
|
|
dnl We disable static building for development, for time savings
|
|
|
|
dnl this goes before AS_LIBTOOL to appease autoconf
|
|
|
|
dnl *NOTE*: dnl this line before release, so release does static too
|
|
|
|
AM_DISABLE_STATIC
|
|
|
|
|
2002-08-27 09:54:08 +00:00
|
|
|
dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
|
2002-02-06 18:18:16 +00:00
|
|
|
dnl when going to/from release please set the nano (fourth number) right !
|
2002-08-27 09:54:08 +00:00
|
|
|
dnl releases only do Wall, cvs and prerelease does Werror too
|
2004-10-06 17:10:48 +00:00
|
|
|
AS_VERSION(gst-plugins, GST_PLUGINS_VERSION, 0, 8, 5, 1, GST_CVS="no", GST_CVS="yes")
|
2003-09-19 06:24:35 +00:00
|
|
|
|
2002-02-21 17:20:35 +00:00
|
|
|
AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
|
2002-12-08 14:50:09 +00:00
|
|
|
|
|
|
|
dnl our libraries and install dirs use major.minor as a version
|
|
|
|
GST_MAJORMINOR=$GST_PLUGINS_VERSION_MAJOR.$GST_PLUGINS_VERSION_MINOR
|
2004-03-16 12:25:45 +00:00
|
|
|
dnl we override it here if we need to for the release candidate
|
|
|
|
#GST_MAJORMINOR=0.8
|
2002-12-08 14:50:09 +00:00
|
|
|
AC_SUBST(GST_MAJORMINOR)
|
|
|
|
|
|
|
|
dnl CURRENT, REVISION, AGE
|
|
|
|
dnl - library source changed -> increment REVISION
|
|
|
|
dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
|
|
|
|
dnl - interfaces added -> increment AGE
|
|
|
|
dnl - interfaces removed -> AGE = 0
|
2004-07-08 17:34:08 +00:00
|
|
|
dnl for 0.8.3 release, gst_play_get_all_by_interface was added, so update
|
2004-03-15 23:31:46 +00:00
|
|
|
AS_LIBTOOL(GST_PLUGINS, 1, 0, 1)
|
2004-02-04 21:30:15 +00:00
|
|
|
AM_PROG_LIBTOOL
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-02-06 18:18:16 +00:00
|
|
|
dnl FIXME take something else ?
|
|
|
|
AC_CONFIG_SRCDIR([gst/law/alaw.c])
|
|
|
|
AM_CONFIG_HEADER(config.h)
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-02-06 18:18:16 +00:00
|
|
|
dnl Add parameters for aclocal
|
|
|
|
dnl (This must come after AM_INIT_AUTOMAKE, since it modifies ACLOCAL)
|
2004-05-17 00:38:59 +00:00
|
|
|
ACLOCAL_FLAGS="-I m4 -I common/m4"
|
2002-09-18 22:06:14 +00:00
|
|
|
AC_SUBST(ACLOCAL_AMFLAGS, $ACLOCAL_FLAGS)
|
2002-02-06 18:18:16 +00:00
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
AC_PROG_CC
|
|
|
|
AM_PROG_CC_STDC
|
|
|
|
AM_PROG_AS
|
|
|
|
AS="${CC}"
|
2004-07-13 06:36:55 +00:00
|
|
|
AS_PROG_OBJC
|
|
|
|
|
2004-01-19 15:45:55 +00:00
|
|
|
dnl the gettext stuff needed
|
2004-02-11 16:29:22 +00:00
|
|
|
AM_GNU_GETTEXT_VERSION(0.11.5)
|
2004-01-19 15:45:55 +00:00
|
|
|
AM_GNU_GETTEXT([external])
|
|
|
|
|
|
|
|
GETTEXT_PACKAGE=gst-plugins-$GST_MAJORMINOR
|
|
|
|
AC_SUBST(GETTEXT_PACKAGE)
|
|
|
|
AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE",
|
|
|
|
[gettext package name])
|
|
|
|
|
|
|
|
dnl define LOCALEDIR in config.h
|
|
|
|
AS_AC_EXPAND(LOCALEDIR, $datadir/locale)
|
|
|
|
AC_DEFINE_UNQUOTED([LOCALEDIR], "$LOCALEDIR",
|
|
|
|
[gettext locale dir])
|
|
|
|
|
2003-05-21 15:16:51 +00:00
|
|
|
dnl decide on error flags
|
2003-05-21 18:16:30 +00:00
|
|
|
AS_COMPILER_FLAG(-Wall, GST_WALL="yes", GST_WALL="no")
|
2003-05-21 15:16:51 +00:00
|
|
|
|
2003-05-21 18:16:30 +00:00
|
|
|
if test "x$GST_WALL" = "xyes"; then
|
2004-05-19 16:10:22 +00:00
|
|
|
GST_ERROR="$GST_ERROR -Wall"
|
2003-05-21 18:16:30 +00:00
|
|
|
|
|
|
|
if test "x$GST_CVS" = "xyes"; then
|
|
|
|
AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")
|
|
|
|
fi
|
2003-05-21 15:16:51 +00:00
|
|
|
fi
|
|
|
|
|
2002-08-07 00:22:04 +00:00
|
|
|
dnl determine c++ compiler
|
2001-12-17 18:37:01 +00:00
|
|
|
AC_PROG_CXX
|
2002-08-07 00:22:04 +00:00
|
|
|
dnl determine if c++ is available on this system
|
|
|
|
AC_CHECK_PROG(HAVE_CXX, $CXX, yes, no)
|
|
|
|
dnl determine c++ preprocessor
|
2001-12-17 18:37:01 +00:00
|
|
|
AC_PROG_CXXCPP
|
|
|
|
AC_ISC_POSIX
|
|
|
|
|
|
|
|
AC_HEADER_STDC([])
|
2004-01-30 20:23:24 +00:00
|
|
|
AC_C_INLINE
|
2004-02-03 02:40:15 +00:00
|
|
|
AX_CREATE_STDINT_H
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2004-03-15 16:27:29 +00:00
|
|
|
dnl Check for malloc.h
|
|
|
|
AC_CHECK_HEADER(malloc.h,[
|
|
|
|
AC_DEFINE(HAVE_MALLOC_H, 1, [whether malloc.h available])
|
|
|
|
])
|
|
|
|
|
2003-11-11 03:22:53 +00:00
|
|
|
dnl Check for a way to display the function name in debug output
|
|
|
|
GST_CHECK_FUNCTION()
|
|
|
|
|
2003-11-06 02:32:42 +00:00
|
|
|
dnl define correct errorlevel for debugging messages. We want to have GST_ERROR
|
|
|
|
dnl messages printed when running cvs builds
|
|
|
|
if test "x$GST_CVS" = "xyes"; then
|
|
|
|
AC_DEFINE(GST_LEVEL_DEFAULT, GST_LEVEL_ERROR, [Default errorlevel to use])
|
|
|
|
fi
|
|
|
|
|
2004-05-20 19:19:26 +00:00
|
|
|
dnl Check for FIONREAD ioctl declaration :
|
2004-05-20 19:43:25 +00:00
|
|
|
GST_CHECK_FIONREAD()
|
2004-05-20 19:19:26 +00:00
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl ############################################
|
|
|
|
dnl # Super Duper options for plug-in building #
|
|
|
|
dnl ############################################
|
|
|
|
|
|
|
|
dnl ext plug-ins; plug-ins that have external dependencies
|
|
|
|
GST_CHECK_FEATURE(EXTERNAL, [enable building of plug-ins with external deps],,
|
|
|
|
[HAVE_EXTERNAL=yes],enabled,
|
|
|
|
[
|
2002-09-15 21:26:03 +00:00
|
|
|
AC_MSG_WARN(building external plug-ins)
|
2002-06-14 16:44:33 +00:00
|
|
|
BUILD_EXTERNAL="yes"
|
|
|
|
],[
|
|
|
|
AC_MSG_WARN(all plug-ins with external dependencies will not be built)
|
|
|
|
BUILD_EXTERNAL="no"
|
|
|
|
])
|
2002-06-15 17:50:20 +00:00
|
|
|
# make BUILD_EXTERNAL available to Makefile.am
|
|
|
|
AM_CONDITIONAL(BUILD_EXTERNAL, test "x$BUILD_EXTERNAL" = "xyes")
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl experimental plug-ins; stuff that hasn't had the dust settle yet
|
2002-06-10 14:19:30 +00:00
|
|
|
dnl read 'builds, but might not work'UTO
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(EXPERIMENTAL, [enable building of experimental plug-ins],,
|
2001-12-20 21:18:37 +00:00
|
|
|
[HAVE_EXPERIMENTAL=yes],disabled,
|
|
|
|
[
|
2002-06-14 16:44:33 +00:00
|
|
|
AC_MSG_WARN(building experimental plug-ins)
|
2002-02-04 10:51:26 +00:00
|
|
|
USE_TARKIN="yes"
|
2001-12-20 21:18:37 +00:00
|
|
|
],[
|
2002-06-14 16:44:33 +00:00
|
|
|
AC_MSG_NOTICE(not building experimental plug-ins)
|
2002-02-04 10:51:26 +00:00
|
|
|
USE_TARKIN="no"
|
2001-12-20 21:18:37 +00:00
|
|
|
])
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl broken plug-ins; stuff that doesn't seem to build at the moment
|
|
|
|
GST_CHECK_FEATURE(BROKEN, [enable building of broken plug-ins],,
|
2001-12-20 21:18:37 +00:00
|
|
|
HAVE_BROKEN=yes,disabled,
|
|
|
|
[
|
2002-06-14 16:44:33 +00:00
|
|
|
AC_MSG_WARN([building broken plug-ins -- no bug reports on these, only patches :)])
|
2001-12-20 21:18:37 +00:00
|
|
|
],[
|
2002-06-17 17:30:54 +00:00
|
|
|
AC_MSG_NOTICE([not building broken plug-ins])
|
2001-12-20 21:18:37 +00:00
|
|
|
])
|
2001-12-17 18:37:01 +00:00
|
|
|
|
|
|
|
dnl ##############################
|
|
|
|
dnl # Do automated configuration #
|
|
|
|
dnl ##############################
|
|
|
|
|
|
|
|
dnl Check for tools:
|
|
|
|
dnl ================
|
|
|
|
|
2002-05-27 14:01:51 +00:00
|
|
|
dnl allow for different autotools
|
|
|
|
AS_AUTOTOOLS_ALTERNATE()
|
|
|
|
|
2001-12-26 23:14:44 +00:00
|
|
|
dnl modify pkg-config path
|
|
|
|
AC_ARG_WITH(pkg-config-path,
|
|
|
|
AC_HELP_STRING([--with-pkg-config-path],[colon-separated list of pkg-config(1) dirs]),
|
|
|
|
[export PKG_CONFIG_PATH=${withval}])
|
|
|
|
|
2004-02-13 13:09:27 +00:00
|
|
|
dnl check architecture
|
|
|
|
GST_ARCH()
|
|
|
|
|
2002-07-01 15:41:13 +00:00
|
|
|
dnl check for gconftool-2
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_GCONFTOOL, true)
|
|
|
|
GST_CHECK_FEATURE(GCONFTOOL, [GConf schemas], , [
|
2002-06-06 10:36:13 +00:00
|
|
|
AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
|
|
|
|
if test x$GCONFTOOL = xno; then
|
|
|
|
AC_MSG_WARN(Not installing GConf schemas)
|
2002-07-01 15:41:13 +00:00
|
|
|
HAVE_GCONFTOOL="no"
|
2002-06-06 10:36:13 +00:00
|
|
|
else
|
|
|
|
AM_GCONF_SOURCE_2
|
2002-07-01 15:41:13 +00:00
|
|
|
HAVE_GCONFTOOL="yes"
|
2002-06-06 10:36:13 +00:00
|
|
|
fi
|
2002-07-01 15:41:13 +00:00
|
|
|
AC_SUBST(HAVE_GCONFTOOL)
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl check for GConf libraries
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_GCONF, true)
|
|
|
|
GST_CHECK_FEATURE(GCONF, [GConf libraries], , [
|
|
|
|
PKG_CHECK_MODULES(GCONF, gconf-2.0, HAVE_GCONF="yes", HAVE_GCONF="no")
|
|
|
|
AC_SUBST(GCONF_CFLAGS)
|
|
|
|
AC_SUBST(GCONF_LIBS)
|
2002-06-06 10:36:13 +00:00
|
|
|
])
|
2002-05-10 21:56:15 +00:00
|
|
|
|
2004-07-28 12:15:24 +00:00
|
|
|
dnl check for gstreamer
|
|
|
|
dnl uninstalled is selected preferentially -- see pkg-config(1)
|
2004-07-30 13:41:55 +00:00
|
|
|
GST_REQ=0.8.4
|
2004-04-15 15:16:31 +00:00
|
|
|
PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ,
|
2002-02-16 17:53:58 +00:00
|
|
|
HAVE_GST="yes", HAVE_GST="no")
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-01-02 17:07:31 +00:00
|
|
|
if test "x$HAVE_GST" = "xno"; then
|
|
|
|
AC_MSG_ERROR(no GStreamer found)
|
|
|
|
fi
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2002-12-08 14:50:09 +00:00
|
|
|
GST_TOOLS_DIR=`pkg-config --variable=toolsdir gstreamer-$GST_MAJORMINOR`
|
2002-02-16 17:53:58 +00:00
|
|
|
if test -z $GST_TOOLS_DIR; then
|
|
|
|
AC_MSG_ERROR([no tools dir defined in GStreamer pkg-config file; core upgrade needed.])
|
|
|
|
fi
|
|
|
|
AC_SUBST(GST_TOOLS_DIR)
|
|
|
|
|
2003-04-07 21:34:30 +00:00
|
|
|
dnl check for gstreamer-control; uninstalled is selected preferentially
|
2004-04-15 15:16:31 +00:00
|
|
|
PKG_CHECK_MODULES(GST_CONTROL, gstreamer-control-$GST_MAJORMINOR >= $GST_REQ,
|
2003-04-07 21:34:30 +00:00
|
|
|
HAVE_GST_CONTROL="yes", HAVE_GST_CONTROL="no")
|
|
|
|
|
|
|
|
if test "x$HAVE_GST_CONTROL" = "xno"; then
|
|
|
|
AC_MSG_ERROR(no GStreamer Control Libs found)
|
|
|
|
fi
|
|
|
|
|
2002-12-08 14:50:09 +00:00
|
|
|
AC_SUBST(GST_CONTROL_LIBS)
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl Determine endianness
|
|
|
|
AC_C_BIGENDIAN
|
|
|
|
|
2002-04-26 09:22:35 +00:00
|
|
|
dnl Check for fast float to int casting as defined in C99
|
|
|
|
AC_C99_FUNC_LRINT()
|
|
|
|
AC_C99_FUNC_LRINTF()
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl Check for essential libraries first:
|
|
|
|
dnl ====================================
|
|
|
|
|
2002-04-13 00:46:23 +00:00
|
|
|
GST_GLIB2_CHECK()
|
2003-07-28 11:37:49 +00:00
|
|
|
|
2003-11-11 11:11:36 +00:00
|
|
|
dnl Check for additional libraries that we might use:
|
|
|
|
dnl =================================================
|
2003-07-28 11:37:49 +00:00
|
|
|
dnl GTK
|
|
|
|
HAVE_GTK=NO
|
|
|
|
PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.2.0, HAVE_GTK_22=yes, HAVE_GTK_22=no)
|
|
|
|
if test "x$HAVE_GTK_22" = "xyes"; then
|
|
|
|
HAVE_GTK=yes
|
2003-11-05 03:24:53 +00:00
|
|
|
GTK_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0`
|
|
|
|
AC_SUBST(GTK_VERSION)
|
2003-11-22 04:10:10 +00:00
|
|
|
GTK_PREFIX=`$PKG_CONFIG --variable=prefix gdk-pixbuf-2.0`
|
2003-11-24 04:08:48 +00:00
|
|
|
GDK_PIXBUF_LIBDIR=`$PKG_CONFIG --variable=libdir gdk-pixbuf-2.0`
|
|
|
|
GDK_PIXBUF_PREFIXDIR=`$PKG_CONFIG --variable=prefix gdk-pixbuf-2.0`
|
2003-11-05 03:24:53 +00:00
|
|
|
AC_SUBST(GTK_BASE_DIR)
|
2003-07-28 11:37:49 +00:00
|
|
|
else
|
|
|
|
PKG_CHECK_MODULES(GTK2, gtk+-2.0, HAVE_GTK_20=yes, HAVE_GTK_20=no)
|
|
|
|
fi
|
|
|
|
if test "x$HAVE_GTK_20" = "xyes"; then
|
|
|
|
HAVE_GTK=yes
|
|
|
|
fi
|
2002-02-08 20:12:28 +00:00
|
|
|
GTK_CFLAGS=$GTK2_CFLAGS
|
|
|
|
GTK_LIBS=$GTK2_LIBS
|
2002-01-05 00:56:40 +00:00
|
|
|
AC_SUBST(GTK_LIBS)
|
|
|
|
AC_SUBST(GTK_CFLAGS)
|
2003-09-21 13:25:46 +00:00
|
|
|
AC_SUBST(HAVE_GTK)
|
2003-12-16 16:58:59 +00:00
|
|
|
|
|
|
|
# gdk_pixbuf gstreamer loader is considered experimental, so disable
|
|
|
|
# by default
|
|
|
|
if test "x$HAVE_GTK_22" = "xyes"; then
|
|
|
|
HAVE_GDK_LOADERS=yes
|
|
|
|
else
|
|
|
|
HAVE_GDK_LOADERS=no
|
|
|
|
fi
|
|
|
|
|
2004-02-20 15:49:27 +00:00
|
|
|
# we set the defaults always to make sure we have non-empty variables
|
|
|
|
# for the Makefile
|
|
|
|
|
|
|
|
# by default, stick to prefix
|
|
|
|
GDK_PIXBUF_LOADER_DIR=${libdir}/gtk-2.0/\${GTK_VERSION}/loaders
|
|
|
|
GDK_PIXBUF_CONF_DIR=${sysconfdir}/gtk-2.0
|
|
|
|
|
|
|
|
|
2003-12-16 16:58:59 +00:00
|
|
|
AC_ARG_ENABLE(gdk-pixbuf-loader,
|
|
|
|
AC_HELP_STRING([--enable-gdk-pixbuf-loader],
|
|
|
|
[whether to enable building of gdk_pixbuf loader]),
|
|
|
|
:, HAVE_GDK_LOADERS="no")
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2004-02-20 15:49:27 +00:00
|
|
|
if test "x$HAVE_GDK_LOADERS" = "xyes"; then
|
2003-12-16 16:58:59 +00:00
|
|
|
AC_PATH_PROG(QUERYLOADERS, gdk-pixbuf-query-loaders, no)
|
2004-02-20 15:49:27 +00:00
|
|
|
# allow customization of pixbuf loader install location
|
|
|
|
# when nothing specified, adhere to prefix settings
|
|
|
|
# when called without any option with this argument, autodetect
|
|
|
|
# when called with a path, set to the given path
|
|
|
|
|
2003-12-16 16:58:59 +00:00
|
|
|
AC_ARG_WITH(gdk-pixbuf-loader-dir,
|
|
|
|
AC_HELP_STRING([--with-gdk-pixbuf-loader-dir],
|
|
|
|
[directory to install the gdk_pixbuf loader (none for pkg-config default)]),
|
|
|
|
[
|
|
|
|
if test "x${withval}" != xyes ; then
|
|
|
|
GDK_PIXBUF_LOADER_DIR="${withval}"
|
|
|
|
else
|
|
|
|
GDK_PIXBUF_LOADER_DIR="$GDK_PIXBUF_LIBDIR/gtk-2.0/\$GTK_VERSION/loaders"
|
|
|
|
fi
|
2004-02-20 15:49:27 +00:00
|
|
|
]
|
2003-12-16 16:58:59 +00:00
|
|
|
)
|
|
|
|
AS_AC_EXPAND(GDK_PIXBUF_LOADER_DIR, $GDK_PIXBUF_LOADER_DIR)
|
|
|
|
AC_SUBST(GDK_PIXBUF_LOADER_DIR)
|
|
|
|
AC_MSG_NOTICE([Putting GTK+-2 pixbuf loaders in $GDK_PIXBUF_LOADER_DIR])
|
|
|
|
|
|
|
|
# allow customization of pixbuf loader configuration file
|
|
|
|
# when nothing specified, adhere to prefix settings
|
|
|
|
# when called without any option with this argument, autodetect
|
|
|
|
# when called with a path, set to the given path
|
2004-02-20 15:49:27 +00:00
|
|
|
|
2003-12-16 16:58:59 +00:00
|
|
|
AC_ARG_WITH(gdk-pixbuf-conf-dir,
|
|
|
|
AC_HELP_STRING([--with-gdk-pixbuf-conf-dir],
|
|
|
|
[directory to install the gdk_pixbuf config (none for pkg-config default)]),
|
|
|
|
[
|
|
|
|
if test "x${withval}" != xyes ; then
|
|
|
|
GDK_PIXBUF_CONF_DIR="${withval}"
|
|
|
|
else
|
|
|
|
GDK_PIXBUF_CONF_DIR="$GDK_PIXBUF_PREFIXDIR/etc/gtk-2.0/"
|
|
|
|
fi
|
2004-02-20 15:49:27 +00:00
|
|
|
]
|
2003-12-16 16:58:59 +00:00
|
|
|
)
|
|
|
|
AS_AC_EXPAND(GDK_PIXBUF_CONF_DIR, $GDK_PIXBUF_CONF_DIR)
|
|
|
|
AC_SUBST(GDK_PIXBUF_CONF_DIR)
|
|
|
|
AC_MSG_NOTICE([Putting GTK+-2 pixbuf loader config in $GDK_PIXBUF_CONF_DIR])
|
|
|
|
fi
|
|
|
|
AM_CONDITIONAL(HAVE_GDK_LOADERS, test "x$HAVE_GDK_LOADERS" = "xyes")
|
2003-11-22 04:10:10 +00:00
|
|
|
|
2004-10-14 23:19:58 +00:00
|
|
|
PKG_CHECK_MODULES(LIBOIL, liboil-0.2, HAVE_LIBOIL=yes, HAVE_LIBOIL=no)
|
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:50 +00:00
|
|
|
AC_SUBST(LIBOIL_CFLAGS)
|
|
|
|
AC_SUBST(LIBOIL_LIBS)
|
|
|
|
if test "x${HAVE_LIBOIL}" = xyes ; then
|
|
|
|
#AC_DEFINE_UNQUOTED(HAVE_LIBOIL, 1, [Define if liboil is being used])
|
|
|
|
true
|
|
|
|
fi
|
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl ===========================================================================
|
|
|
|
dnl ============================= gst plug-ins ================================
|
|
|
|
dnl ===========================================================================
|
2002-08-13 10:39:26 +00:00
|
|
|
|
2003-08-09 23:40:49 +00:00
|
|
|
plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
|
|
|
|
AC_SUBST(plugindir)
|
|
|
|
|
2004-05-11 02:30:16 +00:00
|
|
|
GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '[_]*(gst_|Gst|GST_).*' $GST_LIBS"
|
2002-01-18 02:05:26 +00:00
|
|
|
AC_SUBST(GST_PLUGIN_LDFLAGS)
|
2001-12-21 11:46:15 +00:00
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl these are all the gst plug-ins, compilable without additional libs
|
2001-12-23 03:25:55 +00:00
|
|
|
GST_PLUGINS_ALL="\
|
2003-11-06 05:36:06 +00:00
|
|
|
ac3parse \
|
|
|
|
adder \
|
A plugin to add an alpha channel to I420 video. Can optionally do chroma keying.
Original commit message from CVS:
* configure.ac:
* gst/alpha/Makefile.am:
* gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
(gst_alpha_get_type), (gst_alpha_base_init),
(gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
(gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
(gst_alpha_chroma_key), (gst_alpha_chain),
(gst_alpha_change_state), (plugin_init):
A plugin to add an alpha channel to I420 video. Can optionally do
chroma keying.
* gst/multipart/Makefile.am:
* gst/multipart/multipart.c: (plugin_init):
* gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
(gst_multipart_demux_class_init), (gst_multipart_demux_init),
(gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
(gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
(gst_multipart_demux_change_state),
(gst_multipart_demux_plugin_init):
* gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
(gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
(gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
(gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
(gst_multipart_mux_pad_unlink),
(gst_multipart_mux_request_new_pad),
(gst_multipart_mux_handle_src_event),
(gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
(gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
(gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
(gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
A Multipart demuxer/muxer. Not sure if it violates specs. Used to
send multipart jpeg images to a browser.
* gst/videobox/Makefile.am:
* gst/videobox/README:
* gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
(gst_video_box_get_type), (gst_video_box_base_init),
(gst_video_box_class_init), (gst_video_box_init),
(gst_video_box_set_property), (gst_video_box_get_property),
(gst_video_box_sink_link), (gst_video_box_i420),
(gst_video_box_ayuv), (gst_video_box_chain),
(gst_video_box_change_state), (plugin_init):
Crops or adds borders around an image. can do alpha channel
borders as well.
* gst/videomixer/Makefile.am:
* gst/videomixer/README:
* gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
(gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
(gst_videomixer_pad_get_sink_event_masks),
(gst_videomixer_pad_get_property),
(gst_videomixer_pad_set_property),
(gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
(gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
(gst_video_mixer_background_get_type), (gst_videomixer_get_type),
(gst_videomixer_base_init), (gst_videomixer_class_init),
(gst_videomixer_init), (gst_videomixer_request_new_pad),
(gst_videomixer_handle_src_event),
(gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
(gst_videomixer_fill_color), (gst_videomixer_fill_queues),
(gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
(gst_videomixer_loop), (gst_videomixer_get_property),
(gst_videomixer_set_property), (gst_videomixer_change_state),
(plugin_init):
Generic video mixer plugin, can handle multiple inputs all with
different framerates and video sizes. Is fully alpha channel
aware.
2004-05-28 18:01:33 +00:00
|
|
|
alpha \
|
2003-11-06 05:36:06 +00:00
|
|
|
asfdemux \
|
|
|
|
audioconvert \
|
|
|
|
audioscale \
|
2004-06-17 13:45:50 +00:00
|
|
|
audiorate \
|
2003-11-06 05:36:06 +00:00
|
|
|
auparse \
|
|
|
|
avi \
|
|
|
|
cdxaparse \
|
|
|
|
chart \
|
2004-01-15 08:58:21 +00:00
|
|
|
colorspace \
|
2003-11-06 05:36:06 +00:00
|
|
|
cutter \
|
|
|
|
debug \
|
|
|
|
deinterlace \
|
|
|
|
effectv \
|
|
|
|
festival \
|
2004-03-15 16:27:29 +00:00
|
|
|
ffmpegcolorspace \
|
2003-11-06 05:36:06 +00:00
|
|
|
filter \
|
|
|
|
flx \
|
|
|
|
goom \
|
2004-02-20 14:17:57 +00:00
|
|
|
interleave \
|
2003-11-06 05:36:06 +00:00
|
|
|
law \
|
|
|
|
level \
|
2003-11-21 21:34:26 +00:00
|
|
|
matroska \
|
2003-11-06 05:36:06 +00:00
|
|
|
median \
|
|
|
|
mixmatrix \
|
|
|
|
mpeg1sys \
|
|
|
|
mpeg1videoparse \
|
|
|
|
mpeg2sub \
|
|
|
|
mpegaudio \
|
|
|
|
mpegaudioparse \
|
|
|
|
mpegstream \
|
|
|
|
monoscope \
|
multifilesink plugin for creating new files every time a new media discontinuity event occurs
Original commit message from CVS:
2004-07-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* configure.ac:
* gst/Makefile.am:
* gst/multifilesink/Makefile.am:
* gst/multifilesink/gstmultifilesink.c:
(gst_multifilesink_get_formats),
(gst_multifilesink_get_query_types), (_do_init),
(gst_multifilesink_base_init), (gst_multifilesink_class_init),
(gst_multifilesink_init), (gst_multifilesink_dispose),
(gst_multifilesink_set_location), (gst_multifilesink_set_property),
(gst_multifilesink_get_property), (gst_multifilesink_open_file),
(gst_multifilesink_close_file), (gst_multifilesink_next_file),
(gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
(gst_multifilesink_chain), (gst_multifilesink_change_state),
(gst_multifilesink_uri_get_type),
(gst_multifilesink_uri_get_protocols),
(gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
(gst_multifilesink_uri_handler_init), (plugin_init):
* gst/multifilesink/gstmultifilesink.h:
* testsuite/Makefile.am:
* testsuite/multifilesink/Makefile.am:
* testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
(gst_newmedia_class_init), (gst_newmedia_init),
(gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
(newfile_signal), (test_signal), (main):
multifilesink plugin for creating new files every time a new media
discontinuity event occurs
2004-07-22 17:57:04 +00:00
|
|
|
multifilesink \
|
A plugin to add an alpha channel to I420 video. Can optionally do chroma keying.
Original commit message from CVS:
* configure.ac:
* gst/alpha/Makefile.am:
* gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
(gst_alpha_get_type), (gst_alpha_base_init),
(gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
(gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
(gst_alpha_chroma_key), (gst_alpha_chain),
(gst_alpha_change_state), (plugin_init):
A plugin to add an alpha channel to I420 video. Can optionally do
chroma keying.
* gst/multipart/Makefile.am:
* gst/multipart/multipart.c: (plugin_init):
* gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
(gst_multipart_demux_class_init), (gst_multipart_demux_init),
(gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
(gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
(gst_multipart_demux_change_state),
(gst_multipart_demux_plugin_init):
* gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
(gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
(gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
(gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
(gst_multipart_mux_pad_unlink),
(gst_multipart_mux_request_new_pad),
(gst_multipart_mux_handle_src_event),
(gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
(gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
(gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
(gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
A Multipart demuxer/muxer. Not sure if it violates specs. Used to
send multipart jpeg images to a browser.
* gst/videobox/Makefile.am:
* gst/videobox/README:
* gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
(gst_video_box_get_type), (gst_video_box_base_init),
(gst_video_box_class_init), (gst_video_box_init),
(gst_video_box_set_property), (gst_video_box_get_property),
(gst_video_box_sink_link), (gst_video_box_i420),
(gst_video_box_ayuv), (gst_video_box_chain),
(gst_video_box_change_state), (plugin_init):
Crops or adds borders around an image. can do alpha channel
borders as well.
* gst/videomixer/Makefile.am:
* gst/videomixer/README:
* gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
(gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
(gst_videomixer_pad_get_sink_event_masks),
(gst_videomixer_pad_get_property),
(gst_videomixer_pad_set_property),
(gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
(gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
(gst_video_mixer_background_get_type), (gst_videomixer_get_type),
(gst_videomixer_base_init), (gst_videomixer_class_init),
(gst_videomixer_init), (gst_videomixer_request_new_pad),
(gst_videomixer_handle_src_event),
(gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
(gst_videomixer_fill_color), (gst_videomixer_fill_queues),
(gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
(gst_videomixer_loop), (gst_videomixer_get_property),
(gst_videomixer_set_property), (gst_videomixer_change_state),
(plugin_init):
Generic video mixer plugin, can handle multiple inputs all with
different framerates and video sizes. Is fully alpha channel
aware.
2004-05-28 18:01:33 +00:00
|
|
|
multipart \
|
2003-11-06 05:36:06 +00:00
|
|
|
overlay \
|
|
|
|
passthrough \
|
Added some playback helper elements and some test apps, very alpha still.
Original commit message from CVS:
* configure.ac:
* gst/playback/Makefile.am:
* gst/playback/decodetest.c: (main):
* gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
(gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
(compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
(find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
(close_link), (type_found), (gst_decode_bin_set_property),
(gst_decode_bin_get_property), (gst_decode_bin_change_state),
(gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
(gst_decode_bin_get_formats), (gst_decode_bin_convert),
(gst_decode_bin_get_query_types), (gst_decode_bin_query),
(plugin_init):
* gst/playback/gstplaybin.c: (gst_play_bin_get_type),
(gst_play_bin_class_init), (gst_play_bin_init),
(gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
(collect_sink_pads), (find_compatibles), (close_pad_link),
(try_to_link_1), (new_pad), (close_link), (type_found),
(setup_source), (gst_play_bin_set_property),
(gst_play_bin_get_property), (gst_play_bin_factory_filter),
(compare_ranks), (gst_play_bin_collect_factories),
(gst_play_bin_change_state), (gst_play_bin_add_element),
(gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
(gst_play_bin_send_event), (gst_play_bin_get_formats),
(gst_play_bin_convert), (gst_play_bin_get_query_types),
(gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
* gst/playback/test.c: (main):
Added some playback helper elements and some test apps, very alpha
still.
2004-07-05 11:14:30 +00:00
|
|
|
playback \
|
2003-11-06 05:36:06 +00:00
|
|
|
playondemand \
|
|
|
|
qtdemux \
|
|
|
|
realmedia \
|
|
|
|
rtjpeg \
|
|
|
|
rtp \
|
|
|
|
silence \
|
|
|
|
sine \
|
|
|
|
smooth \
|
|
|
|
smpte \
|
|
|
|
spectrum \
|
|
|
|
speed \
|
|
|
|
stereo \
|
2003-12-08 20:01:00 +00:00
|
|
|
switch \
|
2003-11-06 05:36:06 +00:00
|
|
|
synaesthesia \
|
2003-11-24 04:08:48 +00:00
|
|
|
tags \
|
2003-11-06 05:36:06 +00:00
|
|
|
tcp \
|
|
|
|
typefind \
|
|
|
|
udp \
|
|
|
|
vbidec \
|
A plugin to add an alpha channel to I420 video. Can optionally do chroma keying.
Original commit message from CVS:
* configure.ac:
* gst/alpha/Makefile.am:
* gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
(gst_alpha_get_type), (gst_alpha_base_init),
(gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
(gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
(gst_alpha_chroma_key), (gst_alpha_chain),
(gst_alpha_change_state), (plugin_init):
A plugin to add an alpha channel to I420 video. Can optionally do
chroma keying.
* gst/multipart/Makefile.am:
* gst/multipart/multipart.c: (plugin_init):
* gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
(gst_multipart_demux_class_init), (gst_multipart_demux_init),
(gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
(gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
(gst_multipart_demux_change_state),
(gst_multipart_demux_plugin_init):
* gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
(gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
(gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
(gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
(gst_multipart_mux_pad_unlink),
(gst_multipart_mux_request_new_pad),
(gst_multipart_mux_handle_src_event),
(gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
(gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
(gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
(gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
A Multipart demuxer/muxer. Not sure if it violates specs. Used to
send multipart jpeg images to a browser.
* gst/videobox/Makefile.am:
* gst/videobox/README:
* gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
(gst_video_box_get_type), (gst_video_box_base_init),
(gst_video_box_class_init), (gst_video_box_init),
(gst_video_box_set_property), (gst_video_box_get_property),
(gst_video_box_sink_link), (gst_video_box_i420),
(gst_video_box_ayuv), (gst_video_box_chain),
(gst_video_box_change_state), (plugin_init):
Crops or adds borders around an image. can do alpha channel
borders as well.
* gst/videomixer/Makefile.am:
* gst/videomixer/README:
* gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
(gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
(gst_videomixer_pad_get_sink_event_masks),
(gst_videomixer_pad_get_property),
(gst_videomixer_pad_set_property),
(gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
(gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
(gst_video_mixer_background_get_type), (gst_videomixer_get_type),
(gst_videomixer_base_init), (gst_videomixer_class_init),
(gst_videomixer_init), (gst_videomixer_request_new_pad),
(gst_videomixer_handle_src_event),
(gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
(gst_videomixer_fill_color), (gst_videomixer_fill_queues),
(gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
(gst_videomixer_loop), (gst_videomixer_get_property),
(gst_videomixer_set_property), (gst_videomixer_change_state),
(plugin_init):
Generic video mixer plugin, can handle multiple inputs all with
different framerates and video sizes. Is fully alpha channel
aware.
2004-05-28 18:01:33 +00:00
|
|
|
videobox \
|
2003-11-06 05:36:06 +00:00
|
|
|
videocrop \
|
|
|
|
videodrop \
|
|
|
|
videoflip \
|
|
|
|
videofilter \
|
A plugin to add an alpha channel to I420 video. Can optionally do chroma keying.
Original commit message from CVS:
* configure.ac:
* gst/alpha/Makefile.am:
* gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
(gst_alpha_get_type), (gst_alpha_base_init),
(gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
(gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
(gst_alpha_chroma_key), (gst_alpha_chain),
(gst_alpha_change_state), (plugin_init):
A plugin to add an alpha channel to I420 video. Can optionally do
chroma keying.
* gst/multipart/Makefile.am:
* gst/multipart/multipart.c: (plugin_init):
* gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
(gst_multipart_demux_class_init), (gst_multipart_demux_init),
(gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
(gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
(gst_multipart_demux_change_state),
(gst_multipart_demux_plugin_init):
* gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
(gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
(gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
(gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
(gst_multipart_mux_pad_unlink),
(gst_multipart_mux_request_new_pad),
(gst_multipart_mux_handle_src_event),
(gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
(gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
(gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
(gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
A Multipart demuxer/muxer. Not sure if it violates specs. Used to
send multipart jpeg images to a browser.
* gst/videobox/Makefile.am:
* gst/videobox/README:
* gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
(gst_video_box_get_type), (gst_video_box_base_init),
(gst_video_box_class_init), (gst_video_box_init),
(gst_video_box_set_property), (gst_video_box_get_property),
(gst_video_box_sink_link), (gst_video_box_i420),
(gst_video_box_ayuv), (gst_video_box_chain),
(gst_video_box_change_state), (plugin_init):
Crops or adds borders around an image. can do alpha channel
borders as well.
* gst/videomixer/Makefile.am:
* gst/videomixer/README:
* gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
(gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
(gst_videomixer_pad_get_sink_event_masks),
(gst_videomixer_pad_get_property),
(gst_videomixer_pad_set_property),
(gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
(gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
(gst_video_mixer_background_get_type), (gst_videomixer_get_type),
(gst_videomixer_base_init), (gst_videomixer_class_init),
(gst_videomixer_init), (gst_videomixer_request_new_pad),
(gst_videomixer_handle_src_event),
(gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
(gst_videomixer_fill_color), (gst_videomixer_fill_queues),
(gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
(gst_videomixer_loop), (gst_videomixer_get_property),
(gst_videomixer_set_property), (gst_videomixer_change_state),
(plugin_init):
Generic video mixer plugin, can handle multiple inputs all with
different framerates and video sizes. Is fully alpha channel
aware.
2004-05-28 18:01:33 +00:00
|
|
|
videomixer \
|
2004-06-17 13:45:50 +00:00
|
|
|
videorate \
|
2003-11-06 05:36:06 +00:00
|
|
|
videoscale \
|
|
|
|
videotestsrc \
|
|
|
|
volenv \
|
|
|
|
volume \
|
|
|
|
wavenc \
|
|
|
|
wavparse \
|
|
|
|
y4m"
|
2002-08-07 00:22:04 +00:00
|
|
|
|
|
|
|
dnl see if we can build C++ plug-ins
|
|
|
|
if test "x$HAVE_CXX" = "xyes"; then
|
|
|
|
GST_PLUGINS_ALL="$GST_PLUGINS_ALL \
|
2003-07-07 22:40:55 +00:00
|
|
|
modplug"
|
2002-08-07 00:22:04 +00:00
|
|
|
else
|
2002-08-13 10:39:26 +00:00
|
|
|
AC_MSG_WARN([Not compiling plug-ins requiring C++ compiler])
|
2002-08-07 00:22:04 +00:00
|
|
|
fi
|
2001-12-23 03:25:55 +00:00
|
|
|
|
|
|
|
AC_SUBST(GST_PLUGINS_ALL)
|
|
|
|
|
|
|
|
GST_PLUGINS_SELECTED=""
|
|
|
|
|
|
|
|
AC_ARG_WITH(plugins,
|
2002-06-14 16:44:33 +00:00
|
|
|
AC_HELP_STRING([--with-plugins],[comma-separated list of plug-ins to compile]),
|
2001-12-23 03:25:55 +00:00
|
|
|
[for i in `echo $withval | tr , ' '`; do
|
2004-03-02 18:32:27 +00:00
|
|
|
if echo $GST_PLUGINS_ALL | grep $i > /dev/null
|
|
|
|
then
|
2001-12-23 03:25:55 +00:00
|
|
|
GST_PLUGINS_SELECTED="$GST_PLUGINS_SELECTED $i"
|
|
|
|
else
|
2002-06-14 16:44:33 +00:00
|
|
|
echo "plug-in $i not recognized, ignoring..."
|
2001-12-23 03:25:55 +00:00
|
|
|
fi
|
|
|
|
done],
|
|
|
|
[GST_PLUGINS_SELECTED=$GST_PLUGINS_ALL])
|
|
|
|
|
|
|
|
AC_SUBST(GST_PLUGINS_SELECTED)
|
2001-12-21 11:46:15 +00:00
|
|
|
|
2001-12-20 20:16:57 +00:00
|
|
|
dnl ==========================================================================
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl ============================= sys plug-ins ================================
|
2001-12-20 20:16:57 +00:00
|
|
|
dnl ==========================================================================
|
|
|
|
|
2002-03-29 00:23:16 +00:00
|
|
|
dnl *** DXR3 card ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DXR3, true)
|
2003-05-29 14:35:23 +00:00
|
|
|
GST_CHECK_FEATURE(DXR3, [DXR3 hardware MPEG DVD decoder],
|
|
|
|
dxr3videosink dxr3audiosink dxr3spusink, [
|
|
|
|
HAVE_DXR3=yes
|
|
|
|
AC_CHECK_HEADER(linux/em8300.h, ,
|
|
|
|
[ AC_MSG_WARN([DXR3/em8300 header file not found]) &&
|
|
|
|
HAVE_DXR3=no ] )
|
|
|
|
AC_CHECK_HEADER(linux/soundcard.h, ,
|
|
|
|
[ AC_MSG_WARN([Generic sound header file not found]) &&
|
|
|
|
HAVE_DXR3=no ] )
|
2002-03-29 00:23:16 +00:00
|
|
|
])
|
|
|
|
|
2004-06-07 13:40:07 +00:00
|
|
|
dnl *** OSS audio *** (Linux, *BSD)
|
2001-12-20 20:16:57 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_OSS, true)
|
|
|
|
GST_CHECK_FEATURE(OSS, [OSS audio], osssrc osssink, [
|
2004-06-07 13:40:07 +00:00
|
|
|
HAVE_OSS="yes"
|
|
|
|
dnl Linux and newer BSD versions :
|
|
|
|
AC_CHECK_HEADER(sys/soundcard.h, [
|
|
|
|
AC_DEFINE(HAVE_OSS_INCLUDE_IN_SYS,, [Define if OSS includes are in /sys/])
|
|
|
|
] , [
|
|
|
|
dnl Some old BSD versions :
|
|
|
|
AC_CHECK_HEADER(soundcard.h, [
|
|
|
|
AC_DEFINE(HAVE_OSS_INCLUDE_IN_ROOT,, [Define if OSS includes are in /])
|
|
|
|
], [
|
|
|
|
dnl Some old BSD versions :
|
|
|
|
AC_CHECK_HEADER(machine/soundcard.h, [
|
|
|
|
AC_DEFINE(HAVE_OSS_INCLUDE_IN_MACHINE,, [Define if OSS includes are in /machine/])
|
|
|
|
], [
|
|
|
|
HAVE_OSS="no"
|
|
|
|
])
|
|
|
|
])
|
|
|
|
])
|
2001-12-20 20:16:57 +00:00
|
|
|
])
|
|
|
|
|
2004-05-20 19:56:27 +00:00
|
|
|
dnl *** OS X audio ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_OSX_AUDIO, true)
|
|
|
|
GST_CHECK_FEATURE(OSX_AUDIO, [OSX audio], osxaudiosrc osxaudiosink, [
|
|
|
|
AC_CHECK_HEADER(CoreAudio/CoreAudio.h, HAVE_OSX_AUDIO="yes", HAVE_OSX_AUDIO="no")
|
|
|
|
])
|
|
|
|
|
2004-06-22 00:21:51 +00:00
|
|
|
dnl *** OS X video ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_OSX_VIDEO, true)
|
|
|
|
HAVE_OSX_VIDEO="no"
|
2004-06-22 06:27:37 +00:00
|
|
|
GST_CHECK_FEATURE(OSX_VIDEO, [OSX video], osxvideosink, [
|
|
|
|
AC_CHECK_HEADER(OpenGL/gl.h, HAVE_OSX_VIDEO="yes", HAVE_OSX_VIDEO="no")
|
|
|
|
])
|
|
|
|
dnl in case header OpenGL/gl.h is found on other platforms
|
2004-06-22 00:21:51 +00:00
|
|
|
case "$host" in
|
|
|
|
*-*darwin*)
|
2004-06-22 06:27:37 +00:00
|
|
|
dnl do nothing
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
HAVE_OSX_VIDEO="no"
|
2004-06-22 00:21:51 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2001-12-20 21:03:18 +00:00
|
|
|
dnl *** QuickCam ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_QCAM, true)
|
2002-01-17 13:03:04 +00:00
|
|
|
GST_CHECK_FEATURE(QCAM, [QuickCam], qcamsrc, [
|
2003-04-05 20:09:05 +00:00
|
|
|
if test "x$HAVE_CPU_I386" != "xyes";
|
2002-01-17 13:03:04 +00:00
|
|
|
then
|
|
|
|
HAVE_QCAM="no"
|
|
|
|
else
|
2003-06-11 06:14:29 +00:00
|
|
|
AC_CHECK_HEADER(sys/io.h, HAVE_QCAM="yes", HAVE_QCAM="no")
|
|
|
|
fi
|
|
|
|
if test "x$HAVE_QCAM" != "xyes";
|
|
|
|
then
|
|
|
|
AC_MSG_WARN([QuickCam only works on i386-linux])
|
2002-01-17 13:03:04 +00:00
|
|
|
fi
|
|
|
|
])
|
2001-12-20 21:03:18 +00:00
|
|
|
|
2004-05-19 06:10:49 +00:00
|
|
|
dnl *** Sun Audio ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SUNAUDIO, true)
|
configure.ac: Minor cosmetic change to convince the buildbot to reautogen.
Original commit message from CVS:
* configure.ac: Minor cosmetic change to convince the buildbot to
reautogen.
* sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
(gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
(gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
(gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
(gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
(gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
More hacking. Plays audio now.
2004-05-20 21:53:49 +00:00
|
|
|
GST_CHECK_FEATURE(SUNAUDIO, [Sun Audio], sunaudiosink, [
|
2004-05-19 06:10:49 +00:00
|
|
|
AC_CHECK_HEADER(sys/audioio.h, HAVE_SUNAUDIO="yes", HAVE_SUNAUDIO="no")
|
|
|
|
])
|
|
|
|
|
2001-12-20 20:44:05 +00:00
|
|
|
dnl *** Video CD ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_VCD, true)
|
|
|
|
GST_CHECK_FEATURE(VCD, [Video CD], vcdsrc, [
|
|
|
|
AC_CHECK_HEADER(linux/cdrom.h, HAVE_VCD="yes", HAVE_VCD="no")
|
|
|
|
])
|
|
|
|
|
2004-08-09 20:14:50 +00:00
|
|
|
dnl *** OpenGL ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_OPENGL, true)
|
|
|
|
GST_CHECK_FEATURE(OPENGL, [Open GL], glsink, [
|
|
|
|
AC_CHECK_HEADER(GL/gl.h, HAVE_OPENGL="yes", HAVE_OPENGL="no")
|
|
|
|
])
|
|
|
|
|
2002-07-28 13:21:37 +00:00
|
|
|
dnl *** CDROM Audio ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_CDROM, true)
|
|
|
|
GST_CHECK_FEATURE(CDROM, [CDROM Audio], cdrom, [
|
2002-07-28 22:45:45 +00:00
|
|
|
AC_CHECK_HEADERS(linux/cdrom.h) dnl linux
|
|
|
|
AC_CHECK_HEADERS(sys/cdio.h) dnl almost everything else
|
|
|
|
dnl AC_CHECK_HEADERS(dmedia/cdaudio.h) dnl irix
|
|
|
|
|
|
|
|
if test "${ac_cv_header_linux_cdrom_h}" = "yes" || test "${ac_cv_header_sys_cdio_h}" = "yes" || test "${ac_cv_header_dmedia_cdaudio_h}" = "yes"; then
|
|
|
|
case "$host" in
|
|
|
|
*-sun-* | *-*-linux*)
|
|
|
|
AC_DEFINE(HAVE_CDROM_SOLARIS,, [Define if cdrom access is in Solaris style])
|
|
|
|
;;
|
|
|
|
*-*-freebsd*)
|
|
|
|
AC_DEFINE(HAVE_CDROM_BSD,, [Define if cdrom access is in BSD style])
|
|
|
|
;;
|
|
|
|
*-*-netbsd* | *-*-openbsd*)
|
|
|
|
AC_DEFINE(HAVE_CDROM_BSD,, [Define if cdrom access is in BSD style])
|
|
|
|
AC_DEFINE(HAVE_CDROM_BSD_NETBSD,, [Define if cdrom access uses NetBSD variant])
|
|
|
|
;;
|
|
|
|
*-*darwin*)
|
|
|
|
AC_DEFINE(HAVE_CDROM_BSD,, [Define if cdrom access is in BSD style])
|
|
|
|
AC_DEFINE(HAVE_CDROM_BSD_DARWIN,, [Define if cdrom access uses Darwin variant])
|
|
|
|
;;
|
|
|
|
dnl *-irix-*)
|
|
|
|
dnl AC_DEFINE(HAVE_CDROM_IRIX,, [Define if cdrom access is in Irix DMedia style])
|
|
|
|
dnl ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
HAVE_CDROM="yes"
|
|
|
|
else
|
|
|
|
HAVE_CDROM="no"
|
|
|
|
fi
|
2002-07-28 13:21:37 +00:00
|
|
|
])
|
|
|
|
|
2003-11-12 03:06:07 +00:00
|
|
|
dnl Check for X11
|
2003-12-03 12:23:37 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_X, true)
|
|
|
|
GST_CHECK_FEATURE(X, [X libraries and plugins],
|
|
|
|
[ximagesink], [
|
|
|
|
AC_PATH_XTRA
|
2004-03-16 18:00:18 +00:00
|
|
|
dnl now try to find the HEADER
|
|
|
|
AC_CHECK_HEADER(X11/Xlib.h, HAVE_X="yes", HAVE_X="no")
|
|
|
|
|
|
|
|
if test "x$HAVE_X" = "xno"
|
2003-12-03 12:23:37 +00:00
|
|
|
then
|
|
|
|
AC_MSG_NOTICE([cannot find X11 development files])
|
|
|
|
else
|
|
|
|
dnl this is much more than we want
|
|
|
|
X_LIBS="$X_LIBS $X_PRE_LIBS $X_EXTRA_LIBS"
|
2004-03-16 18:00:18 +00:00
|
|
|
dnl AC_PATH_XTRA only defines the path needed to find the X libs,
|
|
|
|
dnl it does not add the libs; therefore we add them here
|
2003-12-03 12:23:37 +00:00
|
|
|
X_LIBS="$X_LIBS -lX11"
|
|
|
|
AC_SUBST(X_CFLAGS)
|
|
|
|
AC_SUBST(X_LIBS)
|
|
|
|
fi
|
|
|
|
AC_SUBST(HAVE_X)
|
|
|
|
])
|
|
|
|
|
2001-12-20 21:03:18 +00:00
|
|
|
dnl *** XVideo ***
|
2002-01-12 02:51:02 +00:00
|
|
|
dnl Look for the PIC library first, Debian requires it.
|
|
|
|
dnl Check debian-devel archives for gory details.
|
|
|
|
dnl 20020110:
|
|
|
|
dnl At the moment XFree86 doesn't distribute shared libXv due
|
|
|
|
dnl to unstable API. On many platforms you CAN NOT link a shared
|
|
|
|
dnl lib to a static non-PIC lib. This is what the xvideo GStreamer
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl plug-in wants to do. So Debian distributes a PIC compiled
|
|
|
|
dnl version of the static lib for plug-ins to link to when it is
|
2002-01-12 02:51:02 +00:00
|
|
|
dnl inappropriate to link the main application to libXv directly.
|
|
|
|
dnl FIXME: add check if this platform can support linking to a
|
|
|
|
dnl non-PIC libXv, if not then don not use Xv.
|
|
|
|
dnl FIXME: perhaps warn user if they have a shared libXv since
|
|
|
|
dnl this is an error until XFree86 starts shipping one
|
2003-07-03 15:56:49 +00:00
|
|
|
|
|
|
|
dnl Check for Xv extension
|
2003-07-06 20:49:52 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_XVIDEO, true)
|
2003-11-11 11:11:36 +00:00
|
|
|
GST_CHECK_FEATURE(XVIDEO, [X11 XVideo extensions],
|
2004-03-09 13:10:14 +00:00
|
|
|
[xvimagesink], [
|
2003-11-12 03:06:07 +00:00
|
|
|
if test x$HAVE_X = xyes; then
|
2003-07-06 20:49:52 +00:00
|
|
|
AC_CHECK_LIB(Xv_pic, XvQueryExtension,
|
|
|
|
HAVE_XVIDEO="yes", HAVE_XVIDEO="no",
|
2003-11-12 03:06:07 +00:00
|
|
|
$X_LIBS -lXext)
|
2003-07-06 20:49:52 +00:00
|
|
|
|
2003-07-15 12:39:39 +00:00
|
|
|
if test x$HAVE_XVIDEO = xyes; then
|
|
|
|
XVIDEO_LIBS="-lXv_pic -lXext"
|
|
|
|
AC_SUBST(XVIDEO_LIBS)
|
|
|
|
else
|
|
|
|
dnl try again using something else if we didn't find it first
|
|
|
|
if test x$HAVE_XVIDEO = xno; then
|
|
|
|
AC_CHECK_LIB(Xv, XvQueryExtension,
|
2003-07-06 20:49:52 +00:00
|
|
|
HAVE_XVIDEO="yes", HAVE_XVIDEO="no",
|
2003-11-12 03:06:07 +00:00
|
|
|
$X_LIBS -lXext)
|
2003-07-06 20:49:52 +00:00
|
|
|
|
2003-07-15 12:39:39 +00:00
|
|
|
if test x$HAVE_XVIDEO = xyes; then
|
|
|
|
XVIDEO_LIBS="-lXv -lXext"
|
|
|
|
AC_SUBST(XVIDEO_LIBS)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
2003-07-03 15:56:49 +00:00
|
|
|
fi
|
2003-07-06 20:49:52 +00:00
|
|
|
])
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2003-11-12 03:06:07 +00:00
|
|
|
dnl check for X Shm
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_XSHM, true)
|
|
|
|
GST_CHECK_FEATURE(XSHM, [X Shared Memory extension], xshm, [
|
|
|
|
if test x$HAVE_X = xyes; then
|
|
|
|
AC_CHECK_LIB(Xext, XShmAttach,
|
|
|
|
HAVE_XSHM="yes", HAVE_XSHM="no",
|
|
|
|
$X_LIBS)
|
|
|
|
if test "x$HAVE_XSHM" = "xyes"; then
|
|
|
|
XSHM_LIBS="-lXext"
|
|
|
|
else
|
|
|
|
dnl On AIX, it is in XextSam instead, but we still need -lXext
|
|
|
|
AC_CHECK_LIB(XextSam, XShmAttach,
|
|
|
|
HAVE_XSHM="yes", HAVE_XSHM="no",
|
|
|
|
$X_LIBS)
|
|
|
|
if test "x$HAVE_XSHM" = "xyes"; then
|
|
|
|
XSHM_LIBS="-lXext -lXextSam"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
], , [
|
|
|
|
AC_SUBST(HAVE_XSHM)
|
|
|
|
AC_SUBST(XSHM_LIBS)
|
|
|
|
] )
|
2003-11-07 00:53:32 +00:00
|
|
|
|
2003-12-07 11:51:06 +00:00
|
|
|
dnl v4l/v4l2 checks have been moved down because they require X
|
|
|
|
|
|
|
|
dnl *** Video 4 Linux ***
|
|
|
|
dnl for information about the header/define, see sys/v4l/gstv4lelement.h
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_V4L, true)
|
|
|
|
GST_CHECK_FEATURE(V4L, [Video 4 Linux], v4lsrc v4lmjpegsrc v4lmjpegsink, [
|
|
|
|
# first check X
|
|
|
|
HAVE_V4L="no"
|
2004-04-04 23:38:15 +00:00
|
|
|
if test "$HAVE_X" = "yes"
|
2003-12-07 11:51:06 +00:00
|
|
|
then
|
|
|
|
AC_CHECK_DECL(VID_TYPE_MPEG_ENCODER, HAVE_V4L="yes", HAVE_V4L="no", [
|
|
|
|
#include <sys/types.h>
|
|
|
|
#define _LINUX_TIME_H
|
|
|
|
#include <linux/videodev.h>
|
|
|
|
])
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2003-12-21 20:51:14 +00:00
|
|
|
dnl *** Video 4 Linux 2 ***
|
2003-12-07 11:51:06 +00:00
|
|
|
dnl for information about the header/define, see sys/v4l2/gstv4l2element.h
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_V4L2, true)
|
2004-08-30 10:26:52 +00:00
|
|
|
GST_CHECK_FEATURE(GST_V4L2, [Video 4 Linux 2], v4l2src, [
|
|
|
|
HAVE_GST_V4L2="no"
|
2004-04-04 23:38:15 +00:00
|
|
|
if test "$HAVE_X" = "yes"
|
2003-12-07 11:51:06 +00:00
|
|
|
then
|
|
|
|
AC_MSG_CHECKING([Checking for uptodate v4l2 installation])
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#define _LINUX_TIME_H
|
|
|
|
#include <linux/videodev2.h>
|
|
|
|
#if defined(V4L2_MAJOR_VERSION) || defined(V4L2_MINOR_VERSION)
|
|
|
|
#error too early v4l2 version or no v4l2 at all
|
|
|
|
#endif
|
|
|
|
], [
|
|
|
|
return 0;
|
2004-08-30 10:26:52 +00:00
|
|
|
], [ HAVE_GST_V4L2="yes" && AC_MSG_RESULT(yes)],
|
|
|
|
[ HAVE_GST_V4L2="no" && AC_MSG_RESULT(no) &&
|
2003-12-07 11:51:06 +00:00
|
|
|
AC_CHECK_HEADER(linux/videodev2.h,
|
|
|
|
[ AC_MSG_WARN([video4linux2 headers were found, but they're old. Please update v4l2 to compile the v4l2 plugins])],
|
2003-12-21 20:51:14 +00:00
|
|
|
[ AC_MSG_WARN([video4linux2 was not found])])
|
|
|
|
])
|
2003-12-07 11:51:06 +00:00
|
|
|
fi
|
2004-04-10 13:27:16 +00:00
|
|
|
dnl check for missing v4l2_buffer declaration (see #135919)
|
2004-08-30 10:26:52 +00:00
|
|
|
if [ test x$HAVE_GST_V4L2 = xyes ]; then
|
2004-04-10 13:27:16 +00:00
|
|
|
MISSING_DECL=0
|
|
|
|
AC_MSG_CHECKING(struct v4l2_buffer declaration)
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#define _LINUX_TIME_H
|
|
|
|
#include <linux/videodev2.h>
|
|
|
|
],[
|
|
|
|
struct v4l2_buffer buf;
|
2004-05-17 16:58:24 +00:00
|
|
|
buf.index = 0;
|
2004-04-10 13:27:16 +00:00
|
|
|
return 0;
|
|
|
|
], [ AC_MSG_RESULT(yes) ], [ MISSING_DECL=1 && AC_MSG_RESULT(no) ])
|
|
|
|
if [ test x$MISSING_DECL = x1 ]; then
|
|
|
|
AC_DEFINE(GST_V4L2_MISSING_BUFDECL, 1, [struct v4l2_buffer missing])
|
|
|
|
fi
|
|
|
|
fi
|
2003-12-07 11:51:06 +00:00
|
|
|
])
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl Next, check for the optional libraries:
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl These are all libraries used in building plug-ins
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl ================================================
|
|
|
|
dnl let's try and sort them alphabetically, shall we ?
|
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
if test "x$BUILD_EXTERNAL" = "xyes"; then
|
|
|
|
|
|
|
|
AC_MSG_NOTICE(Checking for plug-in dependency libraries)
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2001-12-26 21:45:22 +00:00
|
|
|
dnl *** a52dec ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_A52DEC, true)
|
|
|
|
GST_CHECK_FEATURE(A52DEC, [a52dec], a52dec, [
|
2002-03-31 03:32:58 +00:00
|
|
|
AC_CHECK_A52DEC(HAVE_A52DEC=yes, HAVE_A52DEC=no)
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl *** aalib ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_AALIB, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(AALIB, [aasink plug-in], aasink, [
|
2001-12-17 18:37:01 +00:00
|
|
|
AM_PATH_AALIB(, HAVE_AALIB=yes, HAVE_AALIB=no)
|
2002-10-19 14:41:50 +00:00
|
|
|
AS_SCRUB_INCLUDE(AALIB_CFLAGS)
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl *** alsa ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_ALSA, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(ALSA, [alsa plug-ins], gstalsa, [
|
2004-03-10 17:21:14 +00:00
|
|
|
PKG_CHECK_MODULES(ALSA, alsa >= 0.9.1, [
|
|
|
|
HAVE_ALSA="yes"
|
|
|
|
AC_SUBST(ALSA_CFLAGS)
|
|
|
|
AC_SUBST(ALSA_LIBS)
|
|
|
|
], [
|
|
|
|
AM_PATH_ALSA(0.9.1, HAVE_ALSA="yes", HAVE_ALSA="no")
|
|
|
|
])
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl *** arts ***
|
2002-01-03 18:12:13 +00:00
|
|
|
dnl if mcopidl can't be found there's no use in compiling it
|
|
|
|
AC_CHECK_PROG(MCOPIDL, mcopidl, yes, no)
|
2003-05-30 10:53:14 +00:00
|
|
|
if test "x$HAVE_MCOPIDL" = "xno";
|
2002-01-03 18:12:13 +00:00
|
|
|
then
|
|
|
|
USE_ARTS=no
|
|
|
|
fi
|
|
|
|
|
2001-12-20 21:18:37 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_ARTS, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(ARTS, [arts plug-ins], arts, [
|
2001-12-20 21:18:37 +00:00
|
|
|
AM_PATH_ARTS(, HAVE_ARTS=yes, HAVE_ARTS=no)
|
|
|
|
])
|
2001-12-17 18:37:01 +00:00
|
|
|
|
|
|
|
dnl *** artsc ***
|
2001-12-20 21:18:37 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_ARTSC, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(ARTSC, [artsd plug-ins], artsdsink, [
|
2001-12-20 21:18:37 +00:00
|
|
|
GST_CHECK_ARTSC()
|
|
|
|
])
|
2001-12-17 18:37:01 +00:00
|
|
|
|
|
|
|
dnl *** audiofile ***
|
|
|
|
dnl this check uses the GST_CHECK_CONFIGPROG macro
|
2001-12-21 11:46:15 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_AUDIOFILE, true)
|
|
|
|
GST_CHECK_FEATURE(AUDIOFILE, [audiofile], afsink afsrc, [
|
|
|
|
translit(dnm, m, l) AC_SUBST(AUDIOFILE_LIBS)
|
|
|
|
translit(dnm, m, l) AC_SUBST(AUDIOFILE_CFLAGS)
|
2003-05-30 10:53:14 +00:00
|
|
|
dnl check with pkg-config first
|
|
|
|
PKG_CHECK_MODULES(AUDIOFILE, audiofile, HAVE_AUDIOFILE="yes", HAVE_AUDIOFILE="no")
|
|
|
|
if test "x$HAVE_AUDIOFILE" = "xno"; then
|
|
|
|
GST_CHECK_CONFIGPROG(AUDIOFILE, audiofile-config)
|
|
|
|
dnl we need this function
|
|
|
|
AC_CHECK_LIB(audiofile, afOpenVirtualFile, , HAVE_AUDIOFILE="no")
|
2004-07-30 04:03:34 +00:00
|
|
|
AC_CHECK_LIB(audiofile, af_virtual_file_new, , HAVE_AUDIOFILE="no")
|
2003-06-16 14:56:34 +00:00
|
|
|
fi])
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2004-10-20 16:48:57 +00:00
|
|
|
dnl *** cdaudio ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_CDAUDIO, true)
|
|
|
|
GST_CHECK_FEATURE(CDAUDIO, [cdaudio], cdaudio, [
|
|
|
|
GST_CHECK_CONFIGPROG(CDAUDIO, libcdaudio-config)
|
|
|
|
AC_SUBST(CDAUDIO_CFLAGS)
|
|
|
|
AC_SUBST(CDAUDIO_LIBS)
|
|
|
|
])
|
|
|
|
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl *** CDParanoia ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_CDPARANOIA, true)
|
|
|
|
GST_CHECK_FEATURE(CDPARANOIA, [CDParanoia], cdparanoia, [
|
2002-06-22 08:21:31 +00:00
|
|
|
GST_CHECK_LIBHEADER(CDPARANOIA, cdda_interface,
|
|
|
|
cdda_open, -lm,
|
|
|
|
cdda_interface.h,
|
|
|
|
CDPARANOIA_LIBS="-lcdda_interface -lcdda_paranoia"
|
2002-07-04 19:38:06 +00:00
|
|
|
HEADER_DIR="no"
|
|
|
|
FOUND_CDPARANOIA="yes")
|
|
|
|
if test "x$FOUND_CDPARANOIA" != "xyes";
|
|
|
|
then
|
|
|
|
GST_CHECK_LIBHEADER(CDPARANOIA, cdda_interface,
|
|
|
|
cdda_open, -lm,
|
|
|
|
cdda/cdda_interface.h,
|
|
|
|
CDPARANOIA_LIBS="-lcdda_interface -lcdda_paranoia"
|
|
|
|
HEADER_DIR="yes"
|
|
|
|
FOUND_CDPARANOIA="yes")
|
|
|
|
fi
|
2002-06-22 08:21:31 +00:00
|
|
|
if test "x$HEADER_DIR" = "xyes";
|
|
|
|
then
|
|
|
|
AC_DEFINE_UNQUOTED(CDPARANOIA_HEADERS_IN_DIR, ,
|
|
|
|
defined if cdda headers are in a cdda/ directory)
|
|
|
|
fi
|
2001-12-23 13:06:22 +00:00
|
|
|
AC_SUBST(CDPARANOIA_LIBS)
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
dnl FIXME : add second check somehow if that is necessary
|
|
|
|
dnl AC_CHECK_LIB(cdda_paranoia, paranoia_init, : , HAVE_CDPARANOIA=no, -lcdda_interface )
|
|
|
|
dnl AC_CHECK_HEADER(cdda_paranoia.h, :, HAVE_CDPARANOIA=no)
|
|
|
|
|
2004-05-11 02:30:16 +00:00
|
|
|
dnl *** dirac ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DIRAC, true)
|
|
|
|
GST_CHECK_FEATURE(DIRAC, [dirac plug-ins], dirac, [
|
2004-09-15 19:29:24 +00:00
|
|
|
PKG_CHECK_MODULES(DIRAC, dirac-pic >= 0.4, HAVE_DIRAC="yes", HAVE_DIRAC="no")
|
|
|
|
if test x$HAVE_DIRAC = xno ; then
|
|
|
|
PKG_CHECK_MODULES(DIRAC, dirac >= 0.4, HAVE_DIRAC="yes", HAVE_DIRAC="no")
|
|
|
|
fi
|
2004-05-11 02:30:16 +00:00
|
|
|
AC_SUBST(DIRAC_CFLAGS)
|
|
|
|
AC_SUBST(DIRAC_LIBS)
|
|
|
|
])
|
|
|
|
|
2003-04-21 21:54:26 +00:00
|
|
|
dnl *** DIVX ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DIVX, true)
|
|
|
|
GST_CHECK_FEATURE(DIVX, [divx plugins], divx, [
|
|
|
|
HAVE_DIVX=yes
|
|
|
|
AC_CHECK_HEADER(encore2.h, ,
|
2003-04-22 14:55:09 +00:00
|
|
|
[ AC_MSG_WARN([Divx4linux encore headers not found]) &&
|
|
|
|
HAVE_DIVX=no ] )
|
2003-05-30 21:44:52 +00:00
|
|
|
if [ test x$HAVE_DIVX = xyes ]; then
|
|
|
|
AC_MSG_CHECKING([Checking for valid divx4linux encore version])
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <encore2.h>
|
|
|
|
#if ENCORE_VERSION != 20021024
|
|
|
|
#error Wrong version of divx encore libraries
|
|
|
|
#endif
|
|
|
|
], [
|
|
|
|
return 0;
|
|
|
|
], [ HAVE_DIVX=yes && AC_MSG_RESULT(yes)],
|
|
|
|
[ HAVE_DIVX=no && AC_MSG_RESULT(no) &&
|
|
|
|
AC_MSG_WARN([Wrong version of divx4linux installed]) ])
|
|
|
|
fi
|
|
|
|
if [ test x$HAVE_DIVX = xyes ]; then
|
|
|
|
AC_CHECK_HEADER(decore.h, ,
|
|
|
|
[ AC_MSG_WARN([Divx4linux decoder headers not found]) &&
|
|
|
|
HAVE_DIVX=no ] )
|
|
|
|
fi
|
|
|
|
if [ test x$HAVE_DIVX = xyes ]; then
|
|
|
|
AC_MSG_CHECKING([Checking for valid divx4linux decore version])
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <decore.h>
|
|
|
|
#if DECORE_VERSION != 20021112
|
|
|
|
#error Wrong version of divx decore libraries
|
|
|
|
#endif
|
|
|
|
], [
|
|
|
|
return 0;
|
|
|
|
], [ HAVE_DIVX=yes && AC_MSG_RESULT(yes)],
|
|
|
|
[ HAVE_DIVX=no && AC_MSG_RESULT(no) &&
|
|
|
|
AC_MSG_WARN([Wrong version of divx4linux installed]) ])
|
|
|
|
fi
|
2003-04-21 21:54:26 +00:00
|
|
|
LIBS="-lm"
|
2003-05-30 21:44:52 +00:00
|
|
|
if test x$HAVE_DIVX = xyes; then
|
|
|
|
AC_CHECK_LIB(divxencore, encore, ,
|
|
|
|
[ AC_MSG_WARN([Divx4linux encore libs not found]) &&
|
|
|
|
HAVE_DIVX=no ] )
|
|
|
|
fi
|
|
|
|
if test x$HAVE_DIVX = xyes; then
|
|
|
|
AC_CHECK_LIB(divxdecore, decore, ,
|
|
|
|
[ AC_MSG_WARN([Divx4linux decore libs not found]) &&
|
|
|
|
HAVE_DIVX=no ] )
|
|
|
|
fi
|
2003-04-22 14:55:09 +00:00
|
|
|
if test x$HAVE_DIVX = xyes; then
|
|
|
|
DIVXENC_LIBS="-ldivxencore -lm"
|
|
|
|
DIVXDEC_LIBS="-ldivxdecore -lm"
|
|
|
|
AC_SUBST(DIVXENC_LIBS)
|
|
|
|
AC_SUBST(DIVXDEC_LIBS)
|
|
|
|
fi
|
2003-04-21 21:54:26 +00:00
|
|
|
])
|
|
|
|
|
New DTS decoder.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/dts/Makefile.am:
* ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
(gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
(gst_dtsdec_channels), (gst_dtsdec_renegotiate),
(gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
(gst_dtsdec_loop), (gst_dtsdec_change_state),
(gst_dtsdec_set_property), (gst_dtsdec_get_property),
(plugin_init):
* ext/dts/gstdtsdec.h:
New DTS decoder.
* ext/faad/gstfaad.c: (gst_faad_sinkconnect),
(gst_faad_srcconnect):
Add ESDS atom handling (.m4a).
2004-04-29 00:00:25 +00:00
|
|
|
dnl *** DTS ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DTS, true)
|
|
|
|
GST_CHECK_FEATURE(DTS, [dts library], dtsdec, [
|
|
|
|
GST_CHECK_LIBHEADER(DTS, dts_pic, dts_init, -lm, dts.h, DTS_LIBS="-ldts_pic -lm")
|
|
|
|
AC_SUBST(DTS_LIBS)
|
|
|
|
])
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl *** dvdread ***
|
2001-12-23 12:29:33 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DVDREAD, true)
|
2002-05-26 17:39:45 +00:00
|
|
|
GST_CHECK_FEATURE(DVDREAD, [dvdread library], dvdreadsrc, [
|
2001-12-23 12:29:33 +00:00
|
|
|
GST_CHECK_LIBHEADER(DVDREAD, dvdread, DVDOpen, , dvdread/dvd_reader.h, DVDREAD_LIBS="-ldvdread")
|
|
|
|
AC_SUBST(DVDREAD_LIBS)
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
|
2002-05-26 17:39:45 +00:00
|
|
|
dnl *** dvdnav ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DVDNAV, true)
|
|
|
|
GST_CHECK_FEATURE(DVDNAV, [dvdnav library], dvdnavsrc, [
|
|
|
|
translit(dnm, m, l) AC_SUBST(DVDNAV_LIBS)
|
|
|
|
translit(dnm, m, l) AC_SUBST(DVDNAV_CFLAGS)
|
|
|
|
GST_CHECK_CONFIGPROG(DVDNAV, dvdnav-config)
|
2003-04-13 11:24:54 +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
|
2004-06-12 10:59:57 +00:00
|
|
|
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"
|
|
|
|
])
|
2002-10-19 14:41:50 +00:00
|
|
|
AS_SCRUB_INCLUDE(DVDNAV_CFLAGS)
|
2002-05-26 17:39:45 +00:00
|
|
|
])
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl **** ESound ****
|
2001-12-20 23:13:50 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_ESD, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(ESD, [esound plug-ins], esdsink esdmon, [
|
2004-03-10 17:21:14 +00:00
|
|
|
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)
|
|
|
|
])
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
|
2003-11-22 12:40:19 +00:00
|
|
|
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)
|
|
|
|
])
|
|
|
|
|
2003-11-21 21:20:42 +00:00
|
|
|
dnl **** Free AAC Decoder (FAAD) ****
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_FAAD, true)
|
|
|
|
GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [
|
2004-04-26 18:03:19 +00:00
|
|
|
HAVE_FAAD="yes"
|
|
|
|
GST_CHECK_LIBHEADER(FAAD, faad, faacDecOpen, -lm, faad.h, FAAD_LIBS="-lfaad -lm", HAVE_FAAD="no")
|
|
|
|
if test $HAVE_FAAD = "yes"; then
|
|
|
|
AC_MSG_CHECKING([Checking for FAAD >= 2])
|
|
|
|
AC_TRY_COMPILE([
|
2003-11-29 22:43:23 +00:00
|
|
|
#include <faad.h>
|
2003-12-09 15:23:08 +00:00
|
|
|
#if !defined(FAAD2_VERSION) || !defined(FAAD_FMT_DOUBLE)
|
2003-11-29 22:43:23 +00:00
|
|
|
#error Not faad2
|
|
|
|
#endif
|
2004-04-26 18:03:19 +00:00
|
|
|
], [ return 0; ],
|
|
|
|
[ HAVE_FAAD="yes" && AC_MSG_RESULT(yes)],
|
|
|
|
[ HAVE_FAAD="no" && AC_MSG_RESULT(no)])
|
|
|
|
fi;
|
2003-11-21 21:20:42 +00:00
|
|
|
AS_SCRUB_INCLUDE(FAAD_CFLAGS)
|
|
|
|
AC_SUBST(FAAD_LIBS)
|
|
|
|
])
|
|
|
|
|
2002-01-03 18:12:13 +00:00
|
|
|
dnl **** festival ****
|
2002-05-03 09:59:10 +00:00
|
|
|
dnl translit(dnm, m, l) AM_CONDITIONAL(USE_FESTIVAL, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl GST_CHECK_FEATURE(FESTIVAL, [festival plug-ins], festivalsrc, [
|
2002-01-12 02:51:02 +00:00
|
|
|
dnl NOTE: just using local net connection now, add this lib check
|
|
|
|
dnl in the future if needed
|
|
|
|
dnl AC_LANG_PUSH(C++)
|
|
|
|
dnl dnl FIXME: took out func to check for
|
|
|
|
dnl dnl This check puts festival_tidy_up in extern "C".
|
|
|
|
dnl dnl But, at least on Debian as of 20020110, it is compiled with name
|
|
|
|
dnl dnl mangling C++ nonsense and symbols can't resolve
|
|
|
|
dnl dnl GST_CHECK_LIBHEADER(FESTIVAL, Festival, festival_tidy_up, , festival/festival.h, FESTIVAL_LIBS="-lFestival")
|
|
|
|
dnl GST_CHECK_LIBHEADER(FESTIVAL, Festival, , , festival/festival.h, FESTIVAL_LIBS="-lFestival")
|
|
|
|
dnl AC_LANG_POP(C++)
|
|
|
|
dnl AC_SUBST(FESTIVAL_LIBS)
|
2002-05-03 09:59:10 +00:00
|
|
|
dnl HAVE_FESTIVAL=yes
|
|
|
|
dnl])
|
2002-01-03 18:12:13 +00:00
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl *** FLAC ***
|
2001-12-23 14:15:30 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_FLAC, true)
|
|
|
|
GST_CHECK_FEATURE(FLAC, [FLAC lossless audio], flacenc flacdec, [
|
2003-05-19 18:36:53 +00:00
|
|
|
GST_CHECK_LIBHEADER(FLAC, FLAC, FLAC__seekable_stream_encoder_new, -lm, FLAC/all.h, FLAC_LIBS="-lFLAC")
|
2001-12-23 14:15:30 +00:00
|
|
|
AC_SUBST(FLAC_LIBS)
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
|
2003-06-25 03:19:20 +00:00
|
|
|
dnl *** GDK pixbuf ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_GDK_PIXBUF, true)
|
|
|
|
GST_CHECK_FEATURE(GDK_PIXBUF, [GDK pixbuf], gdkpixbufsrc, [
|
2003-07-28 11:37:49 +00:00
|
|
|
if test $HAVE_GTK_22 = "yes"; then HAVE_GDK_PIXBUF=yes; fi;
|
2003-06-25 03:19:20 +00:00
|
|
|
])
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl *** Gnome VFS ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_GNOME_VFS, true)
|
|
|
|
GST_CHECK_FEATURE(GNOME_VFS, [Gnome VFS], gnomevfssrc, [
|
2002-02-02 15:50:36 +00:00
|
|
|
PKG_CHECK_MODULES(GNOME_VFS, gnome-vfs-2.0, HAVE_GNOME_VFS="yes", HAVE_GNOME_VFS="no")
|
|
|
|
AC_SUBST(GNOME_VFS_CFLAGS)
|
|
|
|
AC_SUBST(GNOME_VFS_LIBS)
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl *** gsm ***
|
2001-12-23 14:29:43 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_GSM, true)
|
|
|
|
GST_CHECK_FEATURE(GSM, [GSM library], gsmenc gsmdec, [
|
2002-01-02 17:07:31 +00:00
|
|
|
GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm.h, GSM_LIBS="-lgsm")
|
2002-01-07 10:28:29 +00:00
|
|
|
if test $HAVE_GSM != "yes"; then
|
|
|
|
GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm/gsm.h, GSM_LIBS="-lgsm")
|
|
|
|
if test $HAVE_GSM = "yes"; then
|
2002-03-21 23:44:14 +00:00
|
|
|
AC_DEFINE(GSM_HEADER_IN_SUBDIR, 1, [Define if GSM header in gsm/ subdir])
|
2002-01-07 10:28:29 +00:00
|
|
|
fi
|
|
|
|
fi
|
2001-12-23 14:29:43 +00:00
|
|
|
AC_SUBST(GSM_LIBS)
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl *** Hermes ***
|
2001-12-23 14:15:30 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_HERMES, true)
|
2004-03-13 00:19:26 +00:00
|
|
|
GST_CHECK_FEATURE(HERMES, [Hermes library], hermescolorspace, [
|
2001-12-23 14:15:30 +00:00
|
|
|
GST_CHECK_LIBHEADER(HERMES, Hermes, Hermes_ConverterInstance, , Hermes/Hermes.h, HERMES_LIBS="-lHermes")
|
|
|
|
], AC_SUBST(HERMES_LIBS))
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2001-12-24 22:36:46 +00:00
|
|
|
dnl *** http ***
|
2003-05-12 13:17:11 +00:00
|
|
|
dnl translit(dnm, m, l) AM_CONDITIONAL(USE_HTTP, true)
|
|
|
|
dnl GST_CHECK_FEATURE(HTTP, [http plug-ins], gsthttpsrc, [
|
|
|
|
dnl dnl FIXME: need to check for header
|
|
|
|
dnl GHTTP_LIBS=
|
|
|
|
dnl GST_HTTPSRC_GET_TYPE=
|
|
|
|
dnl if test x$USE_GLIB2 = xyes; then
|
|
|
|
dnl AC_MSG_WARN(ghttp disabled for glib2.0)
|
|
|
|
dnl else
|
|
|
|
dnl AC_CHECK_LIB(ghttp, ghttp_request_new,
|
|
|
|
dnl [HTTP_LIBS="-lghttp"
|
|
|
|
dnl GST_HTTPSRC_GET_TYPE="gst_httpsrc_get_type"
|
|
|
|
dnl HAVE_HTTP=yes
|
|
|
|
dnl ], :, $LIBS)
|
|
|
|
dnl fi
|
|
|
|
dnl AC_SUBST(HTTP_LIBS)
|
|
|
|
dnl AC_SUBST(GST_HTTPSRC_GET_TYPE)
|
|
|
|
dnl ])
|
2001-12-24 22:36:46 +00:00
|
|
|
|
2003-02-23 17:35:35 +00:00
|
|
|
dnl *** ivorbis ***
|
|
|
|
dnl AM_PATH_IVORBIS only takes two options
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_IVORBIS, true)
|
|
|
|
GST_CHECK_FEATURE(IVORBIS, [integer vorbis plug-in], ivorbisdec, [
|
2003-07-17 04:27:01 +00:00
|
|
|
IVORBIS_LIBS=
|
|
|
|
IVORBIS_CFLAGS=
|
|
|
|
AC_CHECK_LIB(vorbisidec, vorbis_block_init,
|
|
|
|
[IVORBIS_LIBS=-lvorbisidec
|
|
|
|
HAVE_IVORBIS=yes],
|
|
|
|
HAVE_IVORBIS=no)
|
|
|
|
AC_SUBST(IVORBIS_LIBS)
|
|
|
|
AC_SUBST(IVORBIS_CFLAGS)
|
2003-02-23 17:35:35 +00:00
|
|
|
])
|
|
|
|
|
2002-03-18 04:41:34 +00:00
|
|
|
dnl *** Jack ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_JACK, true)
|
2002-05-13 18:11:42 +00:00
|
|
|
GST_CHECK_FEATURE(JACK, Jack, jack, [
|
|
|
|
PKG_CHECK_MODULES(JACK, jack >= 0.29.0, HAVE_JACK="yes", HAVE_JACK="no")
|
2002-03-18 04:41:34 +00:00
|
|
|
AC_SUBST(JACK_CFLAGS)
|
|
|
|
AC_SUBST(JACK_LIBS)
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl *** jpeg ***
|
|
|
|
dnl FIXME: we could use header checks here as well IMO
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_JPEG, true)
|
|
|
|
GST_CHECK_FEATURE(JPEG, [jpeg], jpegenc jpegdec, [
|
2003-06-25 19:17:59 +00:00
|
|
|
AC_ARG_WITH(jpeg-mmx,
|
|
|
|
[ --with-jpeg-mmx, path to MMX'ified JPEG library])
|
|
|
|
OLD_LIBS="$LIBS"
|
|
|
|
if test x$with_jpeg_mmx != x; then
|
|
|
|
LIBS="$LIBS -L$with_jpeg_mmx"
|
|
|
|
fi
|
|
|
|
AC_CHECK_LIB(jpeg-mmx, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
|
|
|
|
JPEG_LIBS="$LIBS -ljpeg-mmx"
|
|
|
|
LIBS="$OLD_LIBS"
|
|
|
|
if test x$HAVE_JPEG != xyes; then
|
|
|
|
AC_CHECK_LIB(jpeg, jpeg_set_defaults, HAVE_JPEG="yes", HAVE_JPEG="no")
|
|
|
|
JPEG_LIBS="-ljpeg"
|
|
|
|
fi
|
2002-03-18 04:41:34 +00:00
|
|
|
AC_SUBST(JPEG_LIBS)
|
|
|
|
])
|
|
|
|
|
2004-03-30 05:51:31 +00:00
|
|
|
dnl *** KDE / Qt ***
|
|
|
|
|
|
|
|
dnl * Qt *
|
|
|
|
|
|
|
|
qt_dirs="$QTDIR /usr/lib/qt3 /usr/lib/qt /usr/share/qt3 /usr/local/qt"
|
|
|
|
|
|
|
|
dnl Build include path search path from the list of Qt dirs
|
|
|
|
|
|
|
|
qt_include_dirs=""
|
|
|
|
for dir in $qt_dirs; do
|
|
|
|
qt_include_dirs="$qt_include_dirs $dir/include $dir"
|
|
|
|
done
|
|
|
|
|
|
|
|
qt_include_dirs="$qt_include_dirs /usr/include/qt /usr/include /usr/X11R6/include/X11/qt /usr/X11R6/include/qt /usr/include/qt3"
|
|
|
|
|
|
|
|
for dir in $qt_include_dirs; do
|
|
|
|
if test -r "$dir/qglobal.h"; then
|
|
|
|
qt_include_dir=$dir
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
for dir in $qt_dirs; do
|
|
|
|
qt_lib_dirs="$qt_lib_dirs $dir/lib $dir"
|
|
|
|
done
|
|
|
|
|
|
|
|
qt_lib_dirs="$qt_lib_dirs /usr/X11R6/lib /usr/lib"
|
|
|
|
|
|
|
|
for dir in $qt_lib_dirs; do
|
|
|
|
try="ls -1 $dir/libqt-mt.*"
|
|
|
|
if test -n "`$try 2> /dev/null`"; then
|
|
|
|
qt_lib_dir=$dir
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2002-06-04 15:54:58 +00:00
|
|
|
dnl *** ladspa ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LADSPA, true)
|
|
|
|
GST_CHECK_FEATURE(LADSPA, [ladspa], ladspa, [
|
|
|
|
AC_CHECK_HEADER(ladspa.h, HAVE_LADSPA="yes", HAVE_LADSPA="no")
|
|
|
|
])
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl *** lame ***
|
2001-12-20 23:48:55 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LAME, true)
|
|
|
|
GST_CHECK_FEATURE(LAME, [lame mp3 encoder library], lame, [
|
2004-08-19 22:44:50 +00:00
|
|
|
GST_CHECK_LIBHEADER(LAME, mp3lame, lame_init, -lm, lame/lame.h, HAVE_LAME="yes" LAME_LIBS="-lmp3lame -lm")
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
2004-08-19 22:44:50 +00:00
|
|
|
dnl is lame presets available
|
|
|
|
LAME_CFLAGS=""
|
2004-08-30 10:03:18 +00:00
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <lame/lame.h>
|
|
|
|
int main (int argc, char *argv[])
|
|
|
|
{
|
|
|
|
printf("%d\n", MEDIUM);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
],[LAME_CFLAGS="-DGSTLAME_PRESET"],[LAME_CFLAGS=""])
|
2004-08-19 22:44:50 +00:00
|
|
|
AC_SUBST(LAME_CFLAGS)
|
2001-12-20 23:48:55 +00:00
|
|
|
AC_SUBST(LAME_LIBS)
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2004-09-02 22:46:30 +00:00
|
|
|
dnl *** MAS (TODO) ***
|
2004-09-10 00:40:24 +00:00
|
|
|
dnl translit(dnm, m, l) AM_CONDITIONAL(USE_MAS, true)
|
|
|
|
dnl GST_CHECK_FEATURE(MAS, [mas], mas, [
|
|
|
|
dnl GST_CHECK_CONFIGPROG(MAS, mas-config)
|
|
|
|
dnl AC_SUBST(MAS_CFLAGS)
|
|
|
|
dnl AC_SUBST(MAS_LIBS)
|
|
|
|
dnl ])
|
2004-09-02 22:46:30 +00:00
|
|
|
|
2004-06-12 10:59:57 +00:00
|
|
|
dnl *** libcaca ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LIBCACA, true)
|
|
|
|
GST_CHECK_FEATURE(LIBCACA, [libcaca], libcaca, [
|
|
|
|
GST_CHECK_CONFIGPROG(LIBCACA, caca-config)
|
|
|
|
AC_SUBST(LIBCACA_CFLAGS)
|
|
|
|
AC_SUBST(LIBCACA_LIBS)
|
|
|
|
])
|
|
|
|
|
2002-03-30 21:07:51 +00:00
|
|
|
dnl *** libcolorspace ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LCS, true)
|
|
|
|
GST_CHECK_FEATURE(LCS, Lcs, lcs, [
|
|
|
|
PKG_CHECK_MODULES(LCS, lcs, HAVE_LCS="yes", HAVE_LCS="no")
|
|
|
|
AC_SUBST(LCS_CFLAGS)
|
|
|
|
AC_SUBST(LCS_LIBS)
|
|
|
|
])
|
|
|
|
|
2002-11-18 22:30:52 +00:00
|
|
|
dnl *** libdv ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LIBDV, true)
|
|
|
|
GST_CHECK_FEATURE(LIBDV, [libdv DV/video decoder], dvdec, [
|
2004-06-07 12:01:51 +00:00
|
|
|
PKG_CHECK_MODULES(LIBDV, libdv >= 0.100, HAVE_LIBDV="yes", HAVE_LIBDV="no")
|
2002-11-18 22:30:52 +00:00
|
|
|
AC_SUBST(LIBDV_CFLAGS)
|
|
|
|
AC_SUBST(LIBDV_LIBS)
|
|
|
|
])
|
|
|
|
|
2002-06-01 10:52:57 +00:00
|
|
|
dnl *** libfame ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LIBFAME, true)
|
|
|
|
GST_CHECK_FEATURE(LIBFAME, [libfame MPEG1/4 encoder], libfame, [
|
|
|
|
AM_PATH_LIBFAME(0.9.0, HAVE_LIBFAME="yes", HAVE_LIBFAME="no")
|
|
|
|
AC_SUBST(LIBFAME_CFLAGS)
|
|
|
|
AC_SUBST(LIBFAME_LIBS)
|
|
|
|
])
|
|
|
|
|
2002-11-18 22:30:52 +00:00
|
|
|
dnl *** libpng ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LIBPNG, true)
|
|
|
|
GST_CHECK_FEATURE(LIBPNG, [libpng PNG encoder], pngenc, [
|
|
|
|
PKG_CHECK_MODULES(LIBPNG, libpng12, HAVE_LIBPNG="yes", HAVE_LIBPNG="no")
|
|
|
|
AC_SUBST(LIBPNG_CFLAGS)
|
|
|
|
AC_SUBST(LIBPNG_LIBS)
|
|
|
|
])
|
|
|
|
|
2004-10-04 16:38:45 +00:00
|
|
|
dnl *** libmng ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LIBMNG, true)
|
|
|
|
GST_CHECK_FEATURE(LIBMNG, [libmng library], mngdec, [
|
|
|
|
GST_CHECK_LIBHEADER(LIBMNG, mng, mng_initialize,, libmng.h, LIBMNG_LIBS="-lmng")
|
|
|
|
AC_SUBST(LIBMNG_LIBS)
|
|
|
|
])
|
|
|
|
|
2004-01-07 10:51:05 +00:00
|
|
|
dnl *** librfb ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LIBRFB, true)
|
|
|
|
GST_CHECK_FEATURE(LIBRFB, [librfb Remote Framebuffer], rfbsrc, [
|
|
|
|
PKG_CHECK_MODULES(LIBRFB, librfb-0.1, HAVE_LIBRFB="yes", HAVE_LIBRFB="no")
|
|
|
|
AC_SUBST(LIBRFB_CFLAGS)
|
|
|
|
AC_SUBST(LIBRFB_LIBS)
|
|
|
|
])
|
2002-11-18 22:30:52 +00:00
|
|
|
|
2004-04-30 02:25:09 +00:00
|
|
|
dnl *** libvisual ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LIBVISUAL, true)
|
|
|
|
GST_CHECK_FEATURE(LIBVISUAL, [libvisual visualization plugins], libvisual, [
|
2004-05-13 20:21:39 +00:00
|
|
|
PKG_CHECK_MODULES(LIBVISUAL, libvisual = 0.1.1, HAVE_LIBVISUAL="yes", HAVE_LIBVISUAL="no")
|
2004-04-30 02:25:09 +00:00
|
|
|
AC_SUBST(LIBVISUAL_CFLAGS)
|
|
|
|
AC_SUBST(LIBVISUAL_LIBS)
|
|
|
|
])
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl *** mad ***
|
|
|
|
dnl FIXME: we could use header checks here as well IMO
|
2001-12-20 23:13:50 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true)
|
|
|
|
GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [
|
2003-05-30 10:53:14 +00:00
|
|
|
dnl check with pkg-config first
|
2003-11-24 04:08:48 +00:00
|
|
|
PKG_CHECK_MODULES(MAD, mad >= 0.15 id3tag >= 0.15, HAVE_MAD="yes", HAVE_MAD="no")
|
2003-05-30 10:53:14 +00:00
|
|
|
if test "x$HAVE_MAD" = "xno"; then
|
|
|
|
dnl fall back to oldskool detection
|
|
|
|
AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad")
|
|
|
|
if test "x$HAVE_MAD" = "xyes"; then
|
|
|
|
HAVE_MAD="no"
|
2004-04-14 15:42:03 +00:00
|
|
|
save_LIBS=$LIBS
|
2003-05-30 10:53:14 +00:00
|
|
|
LIBS="-lz"
|
2003-11-24 04:08:48 +00:00
|
|
|
AC_CHECK_LIB(id3tag, id3_tag_options, HAVE_MAD="yes" MAD_LIBS="-lmad -lid3tag -lz")
|
2003-05-30 10:53:14 +00:00
|
|
|
LIBS=$save_LIBS
|
|
|
|
fi
|
2002-02-08 20:12:28 +00:00
|
|
|
fi
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
2001-12-20 23:13:50 +00:00
|
|
|
AC_SUBST(MAD_LIBS)
|
2001-12-17 18:37:01 +00:00
|
|
|
|
|
|
|
dnl *** mikmod ***
|
2001-12-23 18:00:34 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MIKMOD, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(MIKMOD, [mikmod plug-in], mikmod, [
|
2001-12-23 18:00:34 +00:00
|
|
|
AM_PATH_LIBMIKMOD(, HAVE_MIKMOD=yes, HAVE_MIKMOD=no)
|
|
|
|
AC_SUBST(MIKMOD_LIBS, "$LIBMIKMOD_LIBS")
|
2004-08-02 23:00:21 +00:00
|
|
|
AC_SUBST(MIKMOD_CFLAGS, "$LIBMIKMOD_CFLAGS")
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl *** mpeg2dec ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2DEC, true)
|
2002-03-31 03:32:58 +00:00
|
|
|
GST_CHECK_FEATURE(MPEG2DEC, [mpeg2dec], mpeg2dec, [
|
2004-04-17 03:40:37 +00:00
|
|
|
PKG_CHECK_MODULES(MPEG2DEC, libmpeg2 >= 0.4.0,
|
2002-12-15 21:48:33 +00:00
|
|
|
HAVE_MPEG2DEC="yes", HAVE_MPEG2DEC="no")
|
|
|
|
AC_SUBST(MPEG2DEC_CFLAGS)
|
|
|
|
AC_SUBST(MPEG2DEC_LIBS)
|
2002-03-31 03:32:58 +00:00
|
|
|
])
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2003-12-11 21:07:25 +00:00
|
|
|
dnl *** mpeg2enc ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2ENC, true)
|
|
|
|
GST_CHECK_FEATURE(MPEG2ENC, [mpeg2enc], mpeg2enc, [
|
configure.ac: Improve mpeg2enc detection. This is for distributions that do ship mjpegtools, but without mpeg2enc. Al...
Original commit message from CVS:
2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
* configure.ac:
Improve mpeg2enc detection. This is for distributions that do
ship mjpegtools, but without mpeg2enc. Also does object check
for might there ever be ABI incompatibility.
* ext/mpeg2enc/gstmpeg2enc.cc:
Add Andrew as second maintainer (he's helping me), and also add
an error if no caps was set. This happens if I pull before capsnego
and that's something I should solve sometime else.
* gst/matroska/matroska-demux.c:
(gst_matroska_demux_parse_blockgroup):
Fix time parsing.
* gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
(gst_matroska_mux_track_header):
Add caps to templates.
* gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
Add mpegversion=1 to prevent confusion with MPEG/AAC.
* gst/mpegstream/gstmpegdemux.c:
Remove layer since it causes warnings about unfixed caps.
* gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
Fix obvious typo (we error out if caps were set, we should of
course error out if *no* caps were set).
* sys/oss/gstosselement.c: (gst_osselement_convert):
Fix format conversion, we confused bits/bytes.
* sys/oss/gstosselement.h:
Improve documentation for 'bps'.
* sys/v4l/TODO:
Remove stuff about plugins that need removing - this was done
ages ago.
* sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
(gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
(gst_v4lsrc_src_query):
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
(gst_v4l2src_src_convert), (gst_v4l2src_src_query):
Add get_query_types(), get_formats() and query() functions.
2003-12-21 18:44:34 +00:00
|
|
|
HAVE_MPEG2ENC="no"
|
|
|
|
dnl we require a c++ compiler for this one
|
|
|
|
if [ test x$HAVE_CXX = xyes ]; then
|
|
|
|
dnl libmpeg2enc was first included in mjpegtools-1.6.2-rc3 (1.6.1.92)
|
|
|
|
dnl since many distros include mjpegtools specifically without mplex
|
|
|
|
dnl and mpeg2enc, we check for mpeg2enc on its own, too.
|
configure.ac: Fix configure check for mpeg2enc. We need 1.6.1.93 instead of 1.6.1.92, since the pkg-config file of 1....
Original commit message from CVS:
2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
* configure.ac:
Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
it therefore uses the wrong include paths. Too bad... Note
that 1.6.1.93 is not release yet. ;).
Also add a check for mplex, which is now using the lib'ified
mplex from mjpegtools, too.
* ext/ffmpeg/gstffmpegcodecmap.c:
Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
issues. I don't think ffmpeg handles 3ivx correctly, so this
probably won't work. But it won't hurt either.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
(gst_ffmpegenc_chain_audio):
Fix memleak in audio encoding. Close codec if open fails, this
calls the cleanup routines so we can re-use the context.
* ext/mpeg2enc/gstmpeg2enc.cc:
Fix pad template names/types, fix memory issue with getcaps().
* ext/mpeg2enc/gstmpeg2encoder.cc:
* ext/mpeg2enc/gstmpeg2encoder.hh:
Fix compile issue with new caps system (const thingy).
* ext/mpeg2enc/gstmpeg2encpicturereader.cc:
* ext/mpeg2enc/gstmpeg2encpicturereader.hh:
We read a first frame right on initing, so that we have a caps
when we init the output. This caps is cached in padprivate and
read as first frame.
* ext/mplex/Makefile.am:
* ext/mplex/gstmplex.cc:
* ext/mplex/gstmplex.h:
* ext/mplex/gstmplex.hh:
* ext/mplex/gstmplexibitstream.cc:
* ext/mplex/gstmplexibitstream.hh:
* ext/mplex/gstmplexjob.cc:
* ext/mplex/gstmplexjob.hh:
* ext/mplex/gstmplexoutputstream.cc:
* ext/mplex/gstmplexoutputstream.hh:
We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
had issues, didn't do capsnego, supported only a subset of the
mplex features and required a mplex fork in our local CVS. Plus
that it worked agaist a very old mplex version. Rewriting was
faster than updating it.
* gst-libs/ext/Makefile.am:
* gst-libs/ext/mplex/INSTRUCT:
* gst-libs/ext/mplex/Makefile.am:
* gst-libs/ext/mplex/README:
* gst-libs/ext/mplex/TODO:
* gst-libs/ext/mplex/ac3strm_in.cc:
* gst-libs/ext/mplex/audiostrm.hh:
* gst-libs/ext/mplex/audiostrm_out.cc:
* gst-libs/ext/mplex/aunit.hh:
* gst-libs/ext/mplex/bits.cc:
* gst-libs/ext/mplex/bits.hh:
* gst-libs/ext/mplex/buffer.cc:
* gst-libs/ext/mplex/buffer.hh:
* gst-libs/ext/mplex/fastintfns.h:
* gst-libs/ext/mplex/format_codes.h:
* gst-libs/ext/mplex/inputstrm.cc:
* gst-libs/ext/mplex/inputstrm.hh:
* gst-libs/ext/mplex/lpcmstrm_in.cc:
* gst-libs/ext/mplex/mjpeg_logging.cc:
* gst-libs/ext/mplex/mjpeg_logging.h:
* gst-libs/ext/mplex/mjpeg_types.h:
* gst-libs/ext/mplex/mpastrm_in.cc:
* gst-libs/ext/mplex/mpegconsts.cc:
* gst-libs/ext/mplex/mpegconsts.h:
* gst-libs/ext/mplex/mplexconsts.hh:
* gst-libs/ext/mplex/multplex.cc:
* gst-libs/ext/mplex/outputstream.hh:
* gst-libs/ext/mplex/padstrm.cc:
* gst-libs/ext/mplex/padstrm.hh:
* gst-libs/ext/mplex/stillsstream.cc:
* gst-libs/ext/mplex/stillsstream.hh:
* gst-libs/ext/mplex/systems.cc:
* gst-libs/ext/mplex/systems.hh:
* gst-libs/ext/mplex/vector.cc:
* gst-libs/ext/mplex/vector.hh:
* gst-libs/ext/mplex/videostrm.hh:
* gst-libs/ext/mplex/videostrm_in.cc:
* gst-libs/ext/mplex/videostrm_out.cc:
* gst-libs/ext/mplex/yuv4mpeg.cc:
* gst-libs/ext/mplex/yuv4mpeg.h:
* gst-libs/ext/mplex/yuv4mpeg_intern.h:
* gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
We don't fork mjpegtools' mplex in our CVS anymore.
* gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
(gst_avi_demux_add_stream):
* gst/avi/gstavidemux.h:
Add getcaps() function for proper caps nego. This makes some
parts of AVI playback/reading work.
* sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
Resize window on new capsnego. This is probably wrong, but
I'm still committing it because with current capsnego, the
first successfull capsnego is auto-fixated, therefore rounded
down to the lowest values in the caps. this results in a 16x16
XWindow that is not reized when real capsnego finishes.
Dave, I see more cases of this, do you know a proper solution?
* tools/gst-launch-ext.in:
Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
2004-01-01 22:45:57 +00:00
|
|
|
PKG_CHECK_MODULES(MPEG2ENC, mjpegtools >= 1.6.1.93, [
|
configure.ac: Improve mpeg2enc detection. This is for distributions that do ship mjpegtools, but without mpeg2enc. Al...
Original commit message from CVS:
2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
* configure.ac:
Improve mpeg2enc detection. This is for distributions that do
ship mjpegtools, but without mpeg2enc. Also does object check
for might there ever be ABI incompatibility.
* ext/mpeg2enc/gstmpeg2enc.cc:
Add Andrew as second maintainer (he's helping me), and also add
an error if no caps was set. This happens if I pull before capsnego
and that's something I should solve sometime else.
* gst/matroska/matroska-demux.c:
(gst_matroska_demux_parse_blockgroup):
Fix time parsing.
* gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
(gst_matroska_mux_track_header):
Add caps to templates.
* gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
Add mpegversion=1 to prevent confusion with MPEG/AAC.
* gst/mpegstream/gstmpegdemux.c:
Remove layer since it causes warnings about unfixed caps.
* gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
Fix obvious typo (we error out if caps were set, we should of
course error out if *no* caps were set).
* sys/oss/gstosselement.c: (gst_osselement_convert):
Fix format conversion, we confused bits/bytes.
* sys/oss/gstosselement.h:
Improve documentation for 'bps'.
* sys/v4l/TODO:
Remove stuff about plugins that need removing - this was done
ages ago.
* sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
(gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
(gst_v4lsrc_src_query):
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
(gst_v4l2src_src_convert), (gst_v4l2src_src_query):
Add get_query_types(), get_formats() and query() functions.
2003-12-21 18:44:34 +00:00
|
|
|
dnl switch over to c++ to test things
|
|
|
|
AC_LANG_CPLUSPLUS
|
|
|
|
OLD_CPPFLAGS="$CPPFLAGS"
|
|
|
|
CPPFLAGS="$CPPFLAGS $MPEG2ENC_CFLAGS"
|
|
|
|
AC_CHECK_HEADER(mpeg2encoder.hh, [
|
|
|
|
MPEG2ENC_LIBS="$MPEG2ENC_LIBS -lmpeg2encpp -lm -lpthread"
|
|
|
|
OLD_LIBS="$LIBS"
|
|
|
|
LIBS="$LIBS $MPEG2ENC_LIBS"
|
|
|
|
AC_MSG_CHECKING([for valid mpeg2enc objects])
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <mpeg2encoder.hh>
|
|
|
|
#include <mpeg2encoptions.hh>
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
MPEG2EncOptions *options = new MPEG2EncOptions ();
|
|
|
|
MPEG2Encoder encoder (*options);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
],[
|
|
|
|
HAVE_MPEG2ENC="yes"
|
|
|
|
AC_SUBST(MPEG2ENC_CFLAGS)
|
|
|
|
AC_SUBST(MPEG2ENC_LIBS)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
], AC_MSG_RESULT(no))
|
|
|
|
LIBS="$OLD_LIBS"
|
|
|
|
])
|
|
|
|
CPPFLAGS="$OLD_CPPFLAGS"
|
|
|
|
AC_LANG_C
|
2003-12-21 20:51:14 +00:00
|
|
|
],
|
|
|
|
HAVE_MPEG2ENC="no")
|
configure.ac: Improve mpeg2enc detection. This is for distributions that do ship mjpegtools, but without mpeg2enc. Al...
Original commit message from CVS:
2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
* configure.ac:
Improve mpeg2enc detection. This is for distributions that do
ship mjpegtools, but without mpeg2enc. Also does object check
for might there ever be ABI incompatibility.
* ext/mpeg2enc/gstmpeg2enc.cc:
Add Andrew as second maintainer (he's helping me), and also add
an error if no caps was set. This happens if I pull before capsnego
and that's something I should solve sometime else.
* gst/matroska/matroska-demux.c:
(gst_matroska_demux_parse_blockgroup):
Fix time parsing.
* gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
(gst_matroska_mux_track_header):
Add caps to templates.
* gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
Add mpegversion=1 to prevent confusion with MPEG/AAC.
* gst/mpegstream/gstmpegdemux.c:
Remove layer since it causes warnings about unfixed caps.
* gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
Fix obvious typo (we error out if caps were set, we should of
course error out if *no* caps were set).
* sys/oss/gstosselement.c: (gst_osselement_convert):
Fix format conversion, we confused bits/bytes.
* sys/oss/gstosselement.h:
Improve documentation for 'bps'.
* sys/v4l/TODO:
Remove stuff about plugins that need removing - this was done
ages ago.
* sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
(gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
* sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
(gst_v4lsrc_src_query):
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
(gst_v4l2src_src_convert), (gst_v4l2src_src_query):
Add get_query_types(), get_formats() and query() functions.
2003-12-21 18:44:34 +00:00
|
|
|
fi
|
2003-12-11 21:07:25 +00:00
|
|
|
])
|
|
|
|
|
2003-07-27 05:28:17 +00:00
|
|
|
dnl *** mplex ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MPLEX, true)
|
configure.ac: Fix configure check for mpeg2enc. We need 1.6.1.93 instead of 1.6.1.92, since the pkg-config file of 1....
Original commit message from CVS:
2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
* configure.ac:
Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
it therefore uses the wrong include paths. Too bad... Note
that 1.6.1.93 is not release yet. ;).
Also add a check for mplex, which is now using the lib'ified
mplex from mjpegtools, too.
* ext/ffmpeg/gstffmpegcodecmap.c:
Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
issues. I don't think ffmpeg handles 3ivx correctly, so this
probably won't work. But it won't hurt either.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
(gst_ffmpegenc_chain_audio):
Fix memleak in audio encoding. Close codec if open fails, this
calls the cleanup routines so we can re-use the context.
* ext/mpeg2enc/gstmpeg2enc.cc:
Fix pad template names/types, fix memory issue with getcaps().
* ext/mpeg2enc/gstmpeg2encoder.cc:
* ext/mpeg2enc/gstmpeg2encoder.hh:
Fix compile issue with new caps system (const thingy).
* ext/mpeg2enc/gstmpeg2encpicturereader.cc:
* ext/mpeg2enc/gstmpeg2encpicturereader.hh:
We read a first frame right on initing, so that we have a caps
when we init the output. This caps is cached in padprivate and
read as first frame.
* ext/mplex/Makefile.am:
* ext/mplex/gstmplex.cc:
* ext/mplex/gstmplex.h:
* ext/mplex/gstmplex.hh:
* ext/mplex/gstmplexibitstream.cc:
* ext/mplex/gstmplexibitstream.hh:
* ext/mplex/gstmplexjob.cc:
* ext/mplex/gstmplexjob.hh:
* ext/mplex/gstmplexoutputstream.cc:
* ext/mplex/gstmplexoutputstream.hh:
We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
had issues, didn't do capsnego, supported only a subset of the
mplex features and required a mplex fork in our local CVS. Plus
that it worked agaist a very old mplex version. Rewriting was
faster than updating it.
* gst-libs/ext/Makefile.am:
* gst-libs/ext/mplex/INSTRUCT:
* gst-libs/ext/mplex/Makefile.am:
* gst-libs/ext/mplex/README:
* gst-libs/ext/mplex/TODO:
* gst-libs/ext/mplex/ac3strm_in.cc:
* gst-libs/ext/mplex/audiostrm.hh:
* gst-libs/ext/mplex/audiostrm_out.cc:
* gst-libs/ext/mplex/aunit.hh:
* gst-libs/ext/mplex/bits.cc:
* gst-libs/ext/mplex/bits.hh:
* gst-libs/ext/mplex/buffer.cc:
* gst-libs/ext/mplex/buffer.hh:
* gst-libs/ext/mplex/fastintfns.h:
* gst-libs/ext/mplex/format_codes.h:
* gst-libs/ext/mplex/inputstrm.cc:
* gst-libs/ext/mplex/inputstrm.hh:
* gst-libs/ext/mplex/lpcmstrm_in.cc:
* gst-libs/ext/mplex/mjpeg_logging.cc:
* gst-libs/ext/mplex/mjpeg_logging.h:
* gst-libs/ext/mplex/mjpeg_types.h:
* gst-libs/ext/mplex/mpastrm_in.cc:
* gst-libs/ext/mplex/mpegconsts.cc:
* gst-libs/ext/mplex/mpegconsts.h:
* gst-libs/ext/mplex/mplexconsts.hh:
* gst-libs/ext/mplex/multplex.cc:
* gst-libs/ext/mplex/outputstream.hh:
* gst-libs/ext/mplex/padstrm.cc:
* gst-libs/ext/mplex/padstrm.hh:
* gst-libs/ext/mplex/stillsstream.cc:
* gst-libs/ext/mplex/stillsstream.hh:
* gst-libs/ext/mplex/systems.cc:
* gst-libs/ext/mplex/systems.hh:
* gst-libs/ext/mplex/vector.cc:
* gst-libs/ext/mplex/vector.hh:
* gst-libs/ext/mplex/videostrm.hh:
* gst-libs/ext/mplex/videostrm_in.cc:
* gst-libs/ext/mplex/videostrm_out.cc:
* gst-libs/ext/mplex/yuv4mpeg.cc:
* gst-libs/ext/mplex/yuv4mpeg.h:
* gst-libs/ext/mplex/yuv4mpeg_intern.h:
* gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
We don't fork mjpegtools' mplex in our CVS anymore.
* gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
(gst_avi_demux_add_stream):
* gst/avi/gstavidemux.h:
Add getcaps() function for proper caps nego. This makes some
parts of AVI playback/reading work.
* sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
Resize window on new capsnego. This is probably wrong, but
I'm still committing it because with current capsnego, the
first successfull capsnego is auto-fixated, therefore rounded
down to the lowest values in the caps. this results in a 16x16
XWindow that is not reized when real capsnego finishes.
Dave, I see more cases of this, do you know a proper solution?
* tools/gst-launch-ext.in:
Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
2004-01-01 22:45:57 +00:00
|
|
|
GST_CHECK_FEATURE(MPLEX, [mplex], mplex, [
|
|
|
|
HAVE_MPLEX="no"
|
|
|
|
dnl we require a c++ compiler for this one
|
|
|
|
if [ test x$HAVE_CXX = xyes ]; then
|
|
|
|
dnl libmplex was first included in mjpegtools-1.6.2-rc4 (1.6.1.93)
|
|
|
|
dnl since many distros include mjpegtools specifically without mplex
|
|
|
|
dnl and mpeg2enc, we check for mplex on its own, too.
|
|
|
|
PKG_CHECK_MODULES(MPLEX, mjpegtools >= 1.6.1.93, [
|
|
|
|
dnl switch over to c++ to test things
|
|
|
|
AC_LANG_CPLUSPLUS
|
|
|
|
OLD_CPPFLAGS="$CPPFLAGS"
|
|
|
|
CPPFLAGS="$CPPFLAGS $MPLEX_CFLAGS"
|
|
|
|
AC_CHECK_HEADER(interact.hpp, [
|
|
|
|
MPLEX_LIBS="$MPLEX_LIBS -lmplex2 -lm"
|
|
|
|
OLD_LIBS="$LIBS"
|
|
|
|
LIBS="$LIBS $MPLEX_LIBS"
|
|
|
|
AC_MSG_CHECKING([for valid mplex objects])
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <interact.hpp>
|
|
|
|
#include <outputstrm.hpp>
|
|
|
|
#include <multiplexor.hpp>
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
class TestOutputStream : public OutputStream {
|
|
|
|
public:
|
|
|
|
TestOutputStream () : OutputStream () { }
|
|
|
|
void Write (uint8_t *a, unsigned int b) { }
|
|
|
|
void NextSegment () { }
|
|
|
|
off_t SegmentSize () { }
|
|
|
|
void Close () { }
|
|
|
|
int Open () { }
|
|
|
|
};
|
|
|
|
MultiplexJob *job = new MultiplexJob ();
|
|
|
|
vector<IBitStream *> inputs;
|
|
|
|
job->SetupInputStreams (inputs);
|
|
|
|
TestOutputStream *out = new TestOutputStream ();
|
|
|
|
Multiplexor mux (*job, *out);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
],[
|
|
|
|
HAVE_MPLEX="yes"
|
|
|
|
AC_SUBST(MPLEX_CFLAGS)
|
|
|
|
AC_SUBST(MPLEX_LIBS)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
], AC_MSG_RESULT(no))
|
|
|
|
LIBS="$OLD_LIBS"
|
|
|
|
])
|
|
|
|
CPPFLAGS="$OLD_CPPFLAGS"
|
|
|
|
AC_LANG_C
|
|
|
|
], HAVE_MPLEX="no")
|
|
|
|
fi
|
|
|
|
])
|
2003-07-27 05:28:17 +00:00
|
|
|
|
2004-01-18 20:19:44 +00:00
|
|
|
dnl *** musicbrainz ***
|
2004-01-19 15:33:17 +00:00
|
|
|
dnl libmusicbrainz <= 2.0.2 has symbol clashes with ffmpeg
|
2004-06-01 12:10:37 +00:00
|
|
|
dnl however, our ffmpeg patch was accepted upstream
|
2004-01-18 20:19:44 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MUSICBRAINZ, true)
|
|
|
|
GST_CHECK_FEATURE(MUSICBRAINZ, [musicbrainz], musicbrainz, [
|
2004-06-01 12:10:37 +00:00
|
|
|
PKG_CHECK_MODULES(MUSICBRAINZ, libmusicbrainz >= 2.0.2,
|
2004-01-18 20:19:44 +00:00
|
|
|
HAVE_MUSICBRAINZ="yes", HAVE_MUSICBRAINZ="no")
|
|
|
|
AC_SUBST(MUSICBRAINZ_CFLAGS)
|
|
|
|
AC_SUBST(MUSICBRAINZ_LIBS)
|
|
|
|
])
|
|
|
|
|
2004-01-21 06:57:30 +00:00
|
|
|
dnl *** nas ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_NAS, true)
|
|
|
|
GST_CHECK_FEATURE(NAS, [nas plug-in], nassink, [
|
|
|
|
HAVE_NAS="no"
|
|
|
|
if test "x$HAVE_X" = "xyes"; then
|
|
|
|
save_cppflags=$CFLAGS
|
|
|
|
CPPFLAGS="$CPPFLAGS $X_CFLAGS"
|
|
|
|
GST_CHECK_LIBHEADER(NAS, audio, AuOpenServer, $X_LIBS, audio/audiolib.h,
|
|
|
|
NAS_LIBS="$X_LIBS -laudio" NAS_CFLAGS="$X_CFLAGS")
|
|
|
|
CPPFLAGS="$save_cppflags"
|
|
|
|
fi
|
|
|
|
AC_SUBST(NAS_CFLAGS)
|
|
|
|
AC_SUBST(NAS_LIBS)
|
|
|
|
])
|
|
|
|
|
2003-07-02 08:15:01 +00:00
|
|
|
dnl *** pango ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_PANGO, true)
|
|
|
|
GST_CHECK_FEATURE(PANGO, [pango], pango, [
|
|
|
|
PKG_CHECK_MODULES(PANGO, pango pangoft2,
|
|
|
|
HAVE_PANGO="yes", HAVE_PANGO="no")
|
|
|
|
AC_SUBST(PANGO_CFLAGS)
|
|
|
|
AC_SUBST(PANGO_LIBS)
|
|
|
|
])
|
|
|
|
|
2004-10-20 13:51:27 +00:00
|
|
|
dnl *** dv1394 ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DV1394, true)
|
|
|
|
GST_CHECK_FEATURE(DV1394, [raw1394 and avc1394 library], dv1394src, [
|
|
|
|
dnl we need to test three headers and three libs
|
|
|
|
GST_CHECK_LIBHEADER(RAW1394,
|
|
|
|
raw1394, raw1394_new_handle,,
|
|
|
|
libraw1394/raw1394.h, RAW1394_LIBS="-lraw1394")
|
|
|
|
GST_CHECK_LIBHEADER(AVC1394,
|
|
|
|
avc1394, avc1394_send_command, $RAW1394_LIBS,
|
|
|
|
libavc1394/avc1394.h, AVC1394_LIBS="-lavc1394")
|
|
|
|
GST_CHECK_LIBHEADER(ROM1394,
|
|
|
|
rom1394, rom1394_free_directory, $RAW1394_LIBS,
|
|
|
|
libavc1394/rom1394.h, ROM1394_LIBS="-lrom1394")
|
|
|
|
|
|
|
|
dnl now see how far we got
|
|
|
|
if test x$HAVE_RAW1394 = xyes && \
|
|
|
|
test x$HAVE_AVC1394 = xyes && \
|
|
|
|
test x$HAVE_ROM1394 = xyes; then
|
|
|
|
HAVE_DV1394=yes
|
|
|
|
DV1394_LIBS="$RAW1394_LIBS $AVC1394_LIBS $ROM1394_LIBS"
|
|
|
|
AC_SUBST(DV1394_LIBS)
|
|
|
|
else
|
|
|
|
HAVE_DV1394=no
|
|
|
|
fi
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl *** SDL ***
|
2001-12-20 23:21:14 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SDL, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(SDL, [SDL plug-in], sdlvideosink, [
|
2003-12-14 23:28:34 +00:00
|
|
|
dnl sdlvideosink depends on the xoverlay interface, which depends on X
|
|
|
|
if test x$HAVE_X = xyes; then
|
|
|
|
AM_PATH_SDL(, HAVE_SDL=yes, HAVE_SDL=no)
|
|
|
|
fi
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl *** shout ***
|
2001-12-23 15:24:07 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SHOUT, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(SHOUT, [shout plug-in], icecastsend, [
|
2001-12-23 15:24:07 +00:00
|
|
|
GST_CHECK_LIBHEADER(SHOUT, shout, shout_init_connection,, shout/shout.h, SHOUT_LIBS="-lshout")
|
|
|
|
AC_SUBST(SHOUT_LIBS)
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
|
|
|
|
2002-10-27 19:32:03 +00:00
|
|
|
dnl *** shout2 ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SHOUT2, true)
|
2002-10-29 15:36:33 +00:00
|
|
|
GST_CHECK_FEATURE(SHOUT2, [shout2 plug-in], shout2send, [
|
2004-03-10 17:21:14 +00:00
|
|
|
PKG_CHECK_MODULES(SHOUT2, shout >= 2.0, [
|
|
|
|
HAVE_SHOUT2="yes"
|
|
|
|
AC_SUBST(SHOUT2_CFLAGS)
|
|
|
|
AC_SUBST(SHOUT2_LIBS)
|
|
|
|
], [
|
|
|
|
AM_PATH_SHOUT2(HAVE_SHOUT2="yes", HAVE_SHOUT2="no")
|
|
|
|
AC_SUBST(SHOUT2_CFLAGS)
|
|
|
|
AC_SUBST(SHOUT2_LIBS)
|
|
|
|
])
|
2002-10-27 19:32:03 +00:00
|
|
|
])
|
|
|
|
|
2004-09-17 20:52:31 +00:00
|
|
|
dnl *** sidplay : works with libsidplay 1.36.x (not 2.x.x) ***
|
2002-01-03 18:12:13 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SIDPLAY, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(SIDPLAY, [sidplay plug-in], sidplay, [
|
2002-01-06 21:52:21 +00:00
|
|
|
GST_PATH_SIDPLAY()
|
2002-01-03 18:12:13 +00:00
|
|
|
])
|
|
|
|
|
2001-12-26 06:49:47 +00:00
|
|
|
dnl *** smoothwave ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SMOOTHWAVE, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(SMOOTHWAVE, [smoothwave plug-in], smoothwave, [
|
2001-12-26 06:49:47 +00:00
|
|
|
if test $HAVE_GTK = "yes"; then HAVE_SMOOTHWAVE=yes; fi;
|
|
|
|
])
|
|
|
|
|
2002-05-07 22:27:32 +00:00
|
|
|
|
|
|
|
dnl *** snapshot ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LIBPNG, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(LIBPNG, [snapshot plug-in], snapshot, [
|
2002-10-30 04:14:35 +00:00
|
|
|
GST_CHECK_LIBHEADER(LIBPNG, png, png_read_info, -lz -lm, png.h, LIBPNG_LIBS="-lpng -lz -lm")
|
2002-05-07 22:27:32 +00:00
|
|
|
AC_SUBST(LIBPNG_LIBS)
|
|
|
|
])
|
|
|
|
|
2004-10-04 15:11:49 +00:00
|
|
|
dnl *** speex >= 1.0.4 or >= 1.1.5 ***
|
2004-09-12 13:35:52 +00:00
|
|
|
dnl 1.1.4 and earlier were not API/ABI compatible with 1.0
|
|
|
|
dnl 1.1.6 is the first to use a .pc/pkg-config file ***
|
|
|
|
dnl speex_jitter.h is 1.1.x only
|
2003-07-17 04:27:01 +00:00
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SPEEX, true)
|
|
|
|
GST_CHECK_FEATURE(SPEEX, [speex plug-in], speex, [
|
2004-09-12 13:35:52 +00:00
|
|
|
PKG_CHECK_MODULES(SPEEX, speex >= 1.1.6, [
|
|
|
|
HAVE_SPEEX="yes"
|
|
|
|
AC_SUBST(SPEEX_CFLAGS)
|
|
|
|
AC_SUBST(SPEEX_LIBS)
|
|
|
|
], [
|
|
|
|
GST_CHECK_LIBHEADER(SPEEX, speex, speex_bits_init, , speex.h, [
|
|
|
|
AC_CHECK_HEADER(speex_jitter.h, [
|
|
|
|
dnl speex 1.1.x :
|
|
|
|
GST_CHECK_LIBHEADER(SPEEX, speex, speex_encode_int, , speex.h, [
|
|
|
|
dnl speex 1.1.5 or + :
|
|
|
|
HAVE_SPEEX="yes"
|
|
|
|
SPEEX_LIBS="-lspeex"
|
|
|
|
AC_SUBST(SPEEX_CFLAGS)
|
|
|
|
AC_SUBST(SPEEX_LIBS)
|
|
|
|
],[
|
|
|
|
HAVE_SPEEX="no"
|
|
|
|
])
|
2004-10-04 15:11:49 +00:00
|
|
|
],[
|
2004-09-12 13:35:52 +00:00
|
|
|
dnl speex 1.0.x :
|
2004-10-04 15:11:49 +00:00
|
|
|
AC_CHECK_DECL(SPEEX_GET_LOOKAHEAD, [
|
|
|
|
dnl speex 1.0.4
|
|
|
|
HAVE_SPEEX="yes"
|
|
|
|
SPEEX_LIBS="-lspeex"
|
|
|
|
AC_SUBST(SPEEX_CFLAGS)
|
|
|
|
AC_SUBST(SPEEX_LIBS)
|
|
|
|
],[
|
2004-10-04 15:21:18 +00:00
|
|
|
HAVE_SPEEX="no"
|
2004-10-04 15:11:49 +00:00
|
|
|
AC_MSG_NOTICE(You need at least 1.0.4 to compile the speex plugin)
|
|
|
|
])
|
2004-05-20 21:57:11 +00:00
|
|
|
])
|
2004-03-15 22:34:48 +00:00
|
|
|
])
|
2004-03-10 17:21:14 +00:00
|
|
|
])
|
2003-07-17 04:27:01 +00:00
|
|
|
])
|
|
|
|
|
2003-06-16 14:56:34 +00:00
|
|
|
dnl *** sndfile ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SNDFILE, true)
|
|
|
|
GST_CHECK_FEATURE(SNDFILE, [sndfile plug-in], sfsrc sfsink, [
|
|
|
|
PKG_CHECK_MODULES(SNDFILE, sndfile >= 1.0.0, HAVE_SNDFILE="yes", HAVE_SNDFILE="no")
|
|
|
|
AC_SUBST(SNDFILE_CFLAGS)
|
|
|
|
AC_SUBST(SNDFILE_LIBS)
|
|
|
|
])
|
|
|
|
|
2002-09-15 21:33:53 +00:00
|
|
|
dnl *** swfdec ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SWFDEC, true)
|
|
|
|
GST_CHECK_FEATURE(SWFDEC, [swfdec plug-in], swfdec, [
|
2004-10-14 23:19:58 +00:00
|
|
|
PKG_CHECK_MODULES(SWFDEC, swfdec-0.3 >= 0.3.0, HAVE_SWFDEC=yes, HAVE_SWFDEC=no)
|
2002-09-15 21:33:53 +00:00
|
|
|
AC_SUBST(SWFDEC_CFLAGS)
|
|
|
|
AC_SUBST(SWFDEC_LIBS)
|
|
|
|
])
|
|
|
|
|
2002-02-04 13:47:09 +00:00
|
|
|
dnl *** tarkin ***
|
2002-06-14 16:44:33 +00:00
|
|
|
dnl for now the sources are included in the plug-in
|
2002-02-04 13:47:09 +00:00
|
|
|
dnl and should be moved to ext-libs/ perhaps
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_TARKIN, true)
|
|
|
|
GST_CHECK_FEATURE(TARKIN, [tarkinenc tarkindec], tarkin, [
|
|
|
|
HAVE_TARKIN="yes"
|
|
|
|
])
|
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
dnl *** ogg ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_OGG, true)
|
|
|
|
GST_CHECK_FEATURE(OGG, [ogg de/encoder], oggdemux oggmux, [
|
2004-03-10 17:21:14 +00:00
|
|
|
PKG_CHECK_MODULES(OGG, ogg >= 1.0, [
|
|
|
|
HAVE_OGG="yes"
|
|
|
|
AC_SUBST(OGG_CFLAGS)
|
|
|
|
AC_SUBST(OGG_LIBS)
|
|
|
|
], [
|
|
|
|
XIPH_PATH_OGG(HAVE_OGG="yes", HAVE_OGG="no")
|
|
|
|
AS_SCRUB_INCLUDE(OGG_CFLAGS)
|
|
|
|
])
|
2003-11-24 04:08:48 +00:00
|
|
|
])
|
|
|
|
|
2004-01-30 20:23:24 +00:00
|
|
|
dnl *** theora ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_THEORA, true)
|
2004-06-11 15:24:43 +00:00
|
|
|
GST_CHECK_FEATURE(THEORA, [ogg theora codec], theoradec theoraenc, [
|
2004-06-07 12:01:51 +00:00
|
|
|
PKG_CHECK_MODULES(THEORA, theora, [
|
|
|
|
HAVE_THEORA="yes"
|
|
|
|
AC_SUBST(THEORA_LIBS)
|
|
|
|
AC_SUBST(THEORA_CFLAGS)
|
|
|
|
], [
|
2004-06-12 10:30:59 +00:00
|
|
|
GST_CHECK_LIBHEADER(THEORA, theora, theora_version_string, "-logg", theora/theora.h, THEORA_LIBS="-ltheora -logg")
|
2004-06-07 12:01:51 +00:00
|
|
|
AC_SUBST(THEORA_LIBS)
|
|
|
|
])
|
2004-01-30 20:23:24 +00:00
|
|
|
])
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl *** vorbis ***
|
|
|
|
dnl AM_PATH_VORBIS only takes two options
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_VORBIS, true)
|
2002-06-14 16:44:33 +00:00
|
|
|
GST_CHECK_FEATURE(VORBIS, [vorbis plug-in], vorbisenc vorbisdec, [
|
2004-03-14 10:33:44 +00:00
|
|
|
PKG_CHECK_MODULES(VORBIS, vorbis >= 1.0 vorbisenc >= 1.0, [
|
|
|
|
HAVE_VORBIS="yes"
|
|
|
|
], [
|
|
|
|
XIPH_PATH_VORBIS(HAVE_VORBIS="yes", HAVE_VORBIS="no")
|
|
|
|
AS_SCRUB_INCLUDE(VORBIS_CFLAGS)
|
|
|
|
])
|
2001-12-17 18:37:01 +00:00
|
|
|
])
|
2004-02-01 19:21:01 +00:00
|
|
|
if test "x$HAVE_VORBIS" = "xyes"; then
|
|
|
|
ac_cflags_save="$CFLAGS"
|
2004-03-14 10:33:44 +00:00
|
|
|
dnl FIXME: does this work on non-gcc? -- Company
|
2004-02-01 19:21:01 +00:00
|
|
|
CFLAGS="-Wall -Werror"
|
|
|
|
AC_COMPILE_IFELSE(
|
|
|
|
AC_LANG_PROGRAM([
|
|
|
|
#include <vorbis/codec.h>
|
|
|
|
],[
|
|
|
|
vorbis_dsp_state *v;
|
|
|
|
|
|
|
|
vorbis_synthesis_restart (v);
|
|
|
|
]), HAVE_VSR=yes, HAVE_VSR=no)
|
|
|
|
if test "x$HAVE_VSR" = "xyes"; then
|
|
|
|
AC_DEFINE_UNQUOTED(HAVE_VORBIS_SYNTHESIS_RESTART, 1,
|
|
|
|
[defined if vorbis_synthesis_restart is present])
|
|
|
|
fi
|
|
|
|
CFLAGS="$ac_cflags_save"
|
|
|
|
fi
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2004-02-20 00:52:06 +00:00
|
|
|
dnl *** xine ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_XINE, true)
|
|
|
|
GST_CHECK_FEATURE(XINE, [xine wrapper], xine, [
|
|
|
|
PKG_CHECK_MODULES(XINE, libxine >= 1.0.0, HAVE_XINE=yes, HAVE_XINE=no)
|
|
|
|
AC_SUBST(XINE_CFLAGS)
|
|
|
|
AC_SUBST(XINE_LIBS)
|
|
|
|
],disabled)
|
|
|
|
|
2003-04-21 21:54:26 +00:00
|
|
|
dnl *** XVID ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_XVID, true)
|
|
|
|
GST_CHECK_FEATURE(XVID, [xvid plugins], xvid, [
|
Update xvid plugin to latest xvid (1.0.0-beta3) API.
Original commit message from CVS:
2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
reviewed by: <delete if not using a buddy>
* configure.ac:
* ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
(gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
* ext/xvid/gstxvid.h:
* ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
(gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
(gst_xviddec_src_link), (gst_xviddec_sink_link),
(gst_xviddec_change_state):
* ext/xvid/gstxviddec.h:
* ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
(gst_xvidenc_base_init), (gst_xvidenc_class_init),
(gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
(gst_xvidenc_link), (gst_xvidenc_set_property),
(gst_xvidenc_get_property), (gst_xvidenc_change_state):
* ext/xvid/gstxvidenc.h:
Update xvid plugin to latest xvid (1.0.0-beta3) API.
2004-01-03 19:38:40 +00:00
|
|
|
HAVE_XVID=no
|
|
|
|
AC_CHECK_HEADER(xvid.h, [
|
|
|
|
OLD_LIBS="$LIBS"
|
|
|
|
LIBS="-lm"
|
|
|
|
AC_CHECK_LIB(xvidcore, xvid_encore, [
|
|
|
|
AC_CHECK_LIB(xvidcore, xvid_decore, [
|
|
|
|
AC_CHECK_LIB(xvidcore, xvid_global, [
|
|
|
|
AC_MSG_CHECKING([for uptodate XviD API version])
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <xvid.h>
|
|
|
|
#if XVID_API != XVID_MAKE_API(4,0)
|
|
|
|
#error "Incompatible XviD API version"
|
|
|
|
#endif
|
|
|
|
int main () { return 0; }
|
|
|
|
],[ AC_MSG_RESULT(yes)
|
|
|
|
XVID_LIBS="-lxvidcore -lm"
|
|
|
|
AC_SUBST(XVID_LIBS)
|
|
|
|
HAVE_XVID=yes
|
|
|
|
], AC_MSG_RESULT(no) )
|
|
|
|
], )
|
|
|
|
], )
|
|
|
|
], )
|
|
|
|
LIBS="$OLD_LIBS"
|
|
|
|
], )
|
2003-04-21 21:54:26 +00:00
|
|
|
])
|
|
|
|
|
|
|
|
|
2002-06-14 16:44:33 +00:00
|
|
|
fi dnl of EXT plugins
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl Check for atomic.h
|
|
|
|
dnl Note: use AC_CHECK_HEADER not AC_CHECK_HEADERS, because the latter
|
|
|
|
dnl defines the wrong default symbol as well (HAVE_ASM_ATOMIC_H)
|
|
|
|
AC_CHECK_HEADER(asm/atomic.h, HAVE_ATOMIC_H=yes, HAVE_ATOMIC_H=no)
|
|
|
|
dnl Do a compile to check that it has atomic_set (eg, linux 2.0 didn't)
|
|
|
|
if test x$HAVE_ATOMIC_H = xyes; then
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include "asm/atomic.h"
|
|
|
|
main() { atomic_t t; atomic_set(&t,0); atomic_inc(&t); atomic_add(1,&t);return 0;}
|
|
|
|
],, [
|
|
|
|
# Not successful
|
|
|
|
if test x$HAVE_ATOMIC_H = xyes; then
|
|
|
|
AC_MSG_WARN(Atomic reference counting is out of date: doing without.)
|
|
|
|
fi
|
|
|
|
HAVE_ATOMIC_H=no
|
|
|
|
], [
|
|
|
|
# Cross compiling
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
AC_MSG_WARN(Can't check properly for atomic reference counting. Assuming OK.)
|
|
|
|
])
|
|
|
|
fi
|
|
|
|
|
2002-04-25 19:43:31 +00:00
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl ######################################################################
|
|
|
|
dnl # Check command line parameters, and set shell variables accordingly #
|
|
|
|
dnl ######################################################################
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(libmmx,
|
2002-05-27 20:37:17 +00:00
|
|
|
AC_HELP_STRING([--enable-libmmx],[use libmmx, if available]),
|
2001-12-17 18:37:01 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) USE_LIBMMX=$HAVE_LIBMMX ;;
|
|
|
|
no) USE_LIBMMX=no ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-libmmx) ;;
|
|
|
|
esac],
|
|
|
|
[USE_LIBMMX=$HAVE_LIBMMX]) dnl Default value
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(atomic,
|
2002-05-27 20:37:17 +00:00
|
|
|
AC_HELP_STRING([--enable-atomic],[use atomic reference counting header]),
|
2001-12-17 18:37:01 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
|
|
|
|
noset) USE_ATOMIC_H=$HAVE_ATOMIC_H;;
|
|
|
|
no) USE_ATOMIC_H=no;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-atomic) ;;
|
|
|
|
esac],
|
|
|
|
[USE_ATOMIC_H=$HAVE_ATOMIC_H]) dnl Default value
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(profiling,
|
2002-05-27 20:37:17 +00:00
|
|
|
AC_HELP_STRING([--enable-profiling],
|
|
|
|
[-pg to compiler commandline, for profiling]),
|
2001-12-17 18:37:01 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) USE_PROFILING=yes ;;
|
|
|
|
no) UES_PROFILING=no ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-profiling) ;;
|
|
|
|
esac],
|
|
|
|
[USE_PROFILING=no]) dnl Default value
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(tests,
|
2002-05-27 20:37:17 +00:00
|
|
|
AC_HELP_STRING([--disable-tests],[disable building test apps]),
|
2001-12-17 18:37:01 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) BUILD_TESTS=yes ;;
|
|
|
|
no) BUILD_TESTS=no ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
|
|
|
|
esac],
|
|
|
|
[BUILD_TESTS=yes]) dnl Default value
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(examples,
|
2002-05-27 20:37:17 +00:00
|
|
|
AC_HELP_STRING([--disable-examples],[disable building examples]),
|
2001-12-17 18:37:01 +00:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) BUILD_EXAMPLES=yes ;;
|
|
|
|
no) BUILD_EXAMPLES=no ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --disable-examples) ;;
|
|
|
|
esac],
|
|
|
|
[BUILD_EXAMPLES=yes]) dnl Default value
|
|
|
|
|
2002-08-17 17:57:38 +00:00
|
|
|
dnl seeking needs freetype, so check for it here
|
2004-03-10 17:21:14 +00:00
|
|
|
PKG_CHECK_MODULES(FT2, freetype2 >= 2.0.9, HAVE_FT2="yes", [
|
|
|
|
AC_CHECK_FT2(2.0.9, HAVE_FT2="yes", HAVE_FT2="no")
|
|
|
|
])
|
2002-08-17 17:57:38 +00:00
|
|
|
dnl make the HAVE_FT2 variable available to automake and Makefile.am
|
|
|
|
AM_CONDITIONAL(HAVE_FT2, test "x$HAVE_FT2" = "xyes")
|
|
|
|
AC_SUBST(FT2_CFLAGS)
|
|
|
|
AC_SUBST(FT2_LIBS)
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl ################################################
|
|
|
|
dnl # Set defines according to variables set above #
|
|
|
|
dnl ################################################
|
|
|
|
|
|
|
|
|
|
|
|
if test "x$USE_LIBMMX" = xyes; then
|
|
|
|
AC_DEFINE(HAVE_LIBMMX, 1, [Define if libmmx is available])
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "x$USE_ATOMIC_H" = xyes; then
|
|
|
|
AC_DEFINE(HAVE_ATOMIC_H, 1, [Define if atomic.h header file is available])
|
|
|
|
fi
|
|
|
|
|
2003-01-10 10:22:25 +00:00
|
|
|
# do not use deprecated stuff
|
|
|
|
GST_CFLAGS="$GST_CFLAGS -DGST_DISABLE_DEPRECATED"
|
|
|
|
|
2002-07-09 10:45:37 +00:00
|
|
|
if test "x$USE_DEBUG" = xyes; then
|
|
|
|
GST_CFLAGS="$GST_CFLAGS -g"
|
|
|
|
fi
|
2001-12-17 18:37:01 +00:00
|
|
|
|
|
|
|
dnl #############################
|
|
|
|
dnl # Set automake conditionals #
|
|
|
|
dnl #############################
|
|
|
|
|
|
|
|
dnl These should be "USE_*" instead of "HAVE_*", but some packages expect
|
|
|
|
dnl HAVE_ and it is likely to be easier to stick with the old name
|
|
|
|
AM_CONDITIONAL(HAVE_LIBMMX, test "x$USE_LIBMMX" = "xyes")
|
|
|
|
|
|
|
|
AM_CONDITIONAL(HAVE_ATOMIC_H, test "x$USE_ATOMIC_H" = "xyes")
|
|
|
|
|
|
|
|
AM_CONDITIONAL(EXPERIMENTAL, test "$EXPERIMENTAL" = "$xyes")
|
|
|
|
AM_CONDITIONAL(BROKEN, test "$BROKEN" = "$xyes")
|
|
|
|
|
|
|
|
AM_CONDITIONAL(HAVE_NASM, test "x$HAVE_NASM" = "xyes")
|
|
|
|
AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
|
|
|
|
AM_CONDITIONAL(HAVE_GTK_DOC, $HAVE_GTK_DOC)
|
|
|
|
AM_CONDITIONAL(BUILD_DOCS, test "x$BUILD_DOCS" = "xyes")
|
|
|
|
AM_CONDITIONAL(BUILD_TESTS, test "x$BUILD_TESTS" = "xyes")
|
|
|
|
AM_CONDITIONAL(BUILD_EXAMPLES, test "x$BUILD_EXAMPLES" = "xyes")
|
|
|
|
AM_CONDITIONAL(BUILD_PLUGIN_DOCS, test "x$BUILD_PLUGIN_DOCS" = "xyes")
|
|
|
|
AM_CONDITIONAL(HAVE_FIG2DEV_PNG, $HAVE_FIG2DEV_PNG)
|
|
|
|
AM_CONDITIONAL(HAVE_FIG2DEV_PDF, $HAVE_FIG2DEV_PDF)
|
|
|
|
AM_CONDITIONAL(HAVE_RAW1394, test "x$HAVE_RAW1394" = "xyes")
|
|
|
|
|
2003-01-16 09:54:28 +00:00
|
|
|
dnl prefer internal headers to already installed ones
|
2004-07-06 15:32:08 +00:00
|
|
|
dnl also add builddir include for enumtypes and marshal
|
|
|
|
GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GST_ERROR"
|
2003-01-16 09:54:28 +00:00
|
|
|
|
2001-12-21 12:46:50 +00:00
|
|
|
AC_SUBST(GST_LIBS)
|
|
|
|
AC_SUBST(GST_CFLAGS)
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2003-01-05 11:53:32 +00:00
|
|
|
dnl ###########################
|
|
|
|
dnl # Configure external libs #
|
|
|
|
dnl ###########################
|
|
|
|
|
2003-10-31 20:03:29 +00:00
|
|
|
dnl ############################
|
|
|
|
dnl # Set up some more defines #
|
|
|
|
dnl ############################
|
|
|
|
|
|
|
|
dnl set license and copyright notice
|
|
|
|
AC_DEFINE(GST_LICENSE, "LGPL", [GStreamer license])
|
2004-08-12 12:00:31 +00:00
|
|
|
|
2003-10-31 20:03:29 +00:00
|
|
|
dnl package name in plugins
|
|
|
|
AC_ARG_WITH(package-name,
|
|
|
|
AC_HELP_STRING([--with-package-name],[specify package name to use in plugins]),
|
|
|
|
[case "${withval}" in
|
|
|
|
yes) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
|
|
|
|
no) AC_MSG_ERROR(bad value ${withval} for --with-package-name) ;;
|
|
|
|
*) GST_PACKAGE="${withval}" ;;
|
|
|
|
esac],
|
2004-08-12 12:00:31 +00:00
|
|
|
[
|
|
|
|
dnl default value
|
|
|
|
if test "x$GST_CVS" = "xyes"
|
|
|
|
then
|
|
|
|
dnl nano >= 1
|
|
|
|
GST_PACKAGE="GStreamer CVS/prerelease"
|
|
|
|
else
|
|
|
|
GST_PACKAGE="GStreamer source release"
|
|
|
|
fi
|
|
|
|
]
|
|
|
|
)
|
2003-10-31 20:03:29 +00:00
|
|
|
AC_MSG_NOTICE(Using $GST_PACKAGE as package name)
|
|
|
|
AC_DEFINE_UNQUOTED(GST_PACKAGE, "$GST_PACKAGE", [package name in plugins])
|
2004-08-12 12:00:31 +00:00
|
|
|
|
2003-10-31 20:03:29 +00:00
|
|
|
dnl package origin URL
|
|
|
|
AC_ARG_WITH(package-origin,
|
|
|
|
AC_HELP_STRING([--with-package-origin],[specify package origin URL to use in plugins]),
|
|
|
|
[case "${withval}" in
|
|
|
|
yes) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
|
|
|
|
no) AC_MSG_ERROR(bad value ${withval} for --with-package-origin) ;;
|
|
|
|
*) GST_ORIGIN="${withval}" ;;
|
|
|
|
esac],
|
2004-08-12 12:00:31 +00:00
|
|
|
[GST_ORIGIN="http://gstreamer.freedesktop.org/"]) dnl Default value
|
2003-10-31 20:03:29 +00:00
|
|
|
AC_MSG_NOTICE(Using $GST_ORIGIN as package origin)
|
|
|
|
AC_DEFINE_UNQUOTED(GST_ORIGIN, "$GST_ORIGIN", [package origin])
|
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl #########################
|
|
|
|
dnl # Make the output files #
|
|
|
|
dnl #########################
|
|
|
|
|
2002-02-08 20:12:28 +00:00
|
|
|
AC_CONFIG_FILES(
|
2001-12-17 18:37:01 +00:00
|
|
|
Makefile
|
2002-01-07 02:14:35 +00:00
|
|
|
gst-plugins.spec
|
2001-12-21 11:46:15 +00:00
|
|
|
gst/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/ac3parse/Makefile
|
|
|
|
gst/adder/Makefile
|
A plugin to add an alpha channel to I420 video. Can optionally do chroma keying.
Original commit message from CVS:
* configure.ac:
* gst/alpha/Makefile.am:
* gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
(gst_alpha_get_type), (gst_alpha_base_init),
(gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
(gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
(gst_alpha_chroma_key), (gst_alpha_chain),
(gst_alpha_change_state), (plugin_init):
A plugin to add an alpha channel to I420 video. Can optionally do
chroma keying.
* gst/multipart/Makefile.am:
* gst/multipart/multipart.c: (plugin_init):
* gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
(gst_multipart_demux_class_init), (gst_multipart_demux_init),
(gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
(gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
(gst_multipart_demux_change_state),
(gst_multipart_demux_plugin_init):
* gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
(gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
(gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
(gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
(gst_multipart_mux_pad_unlink),
(gst_multipart_mux_request_new_pad),
(gst_multipart_mux_handle_src_event),
(gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
(gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
(gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
(gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
A Multipart demuxer/muxer. Not sure if it violates specs. Used to
send multipart jpeg images to a browser.
* gst/videobox/Makefile.am:
* gst/videobox/README:
* gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
(gst_video_box_get_type), (gst_video_box_base_init),
(gst_video_box_class_init), (gst_video_box_init),
(gst_video_box_set_property), (gst_video_box_get_property),
(gst_video_box_sink_link), (gst_video_box_i420),
(gst_video_box_ayuv), (gst_video_box_chain),
(gst_video_box_change_state), (plugin_init):
Crops or adds borders around an image. can do alpha channel
borders as well.
* gst/videomixer/Makefile.am:
* gst/videomixer/README:
* gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
(gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
(gst_videomixer_pad_get_sink_event_masks),
(gst_videomixer_pad_get_property),
(gst_videomixer_pad_set_property),
(gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
(gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
(gst_video_mixer_background_get_type), (gst_videomixer_get_type),
(gst_videomixer_base_init), (gst_videomixer_class_init),
(gst_videomixer_init), (gst_videomixer_request_new_pad),
(gst_videomixer_handle_src_event),
(gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
(gst_videomixer_fill_color), (gst_videomixer_fill_queues),
(gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
(gst_videomixer_loop), (gst_videomixer_get_property),
(gst_videomixer_set_property), (gst_videomixer_change_state),
(plugin_init):
Generic video mixer plugin, can handle multiple inputs all with
different framerates and video sizes. Is fully alpha channel
aware.
2004-05-28 18:01:33 +00:00
|
|
|
gst/alpha/Makefile
|
2003-04-14 01:20:30 +00:00
|
|
|
gst/audioconvert/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/audioscale/Makefile
|
2004-06-17 13:45:50 +00:00
|
|
|
gst/audiorate/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/auparse/Makefile
|
|
|
|
gst/avi/Makefile
|
2003-01-26 00:25:04 +00:00
|
|
|
gst/asfdemux/Makefile
|
2002-04-20 21:42:51 +00:00
|
|
|
gst/cdxaparse/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/chart/Makefile
|
2004-01-15 08:58:21 +00:00
|
|
|
gst/colorspace/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/cutter/Makefile
|
2003-06-25 03:19:20 +00:00
|
|
|
gst/debug/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/deinterlace/Makefile
|
2002-05-08 20:18:13 +00:00
|
|
|
gst/effectv/Makefile
|
2002-05-03 09:59:10 +00:00
|
|
|
gst/festival/Makefile
|
2004-03-15 16:27:29 +00:00
|
|
|
gst/ffmpegcolorspace/Makefile
|
2002-06-04 12:29:12 +00:00
|
|
|
gst/filter/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/flx/Makefile
|
2002-02-03 20:10:04 +00:00
|
|
|
gst/goom/Makefile
|
2004-02-20 14:17:57 +00:00
|
|
|
gst/interleave/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/law/Makefile
|
|
|
|
gst/level/Makefile
|
2003-11-21 21:34:26 +00:00
|
|
|
gst/matroska/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/median/Makefile
|
2002-07-23 20:23:06 +00:00
|
|
|
gst/mixmatrix/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/mpeg1sys/Makefile
|
2001-12-28 01:49:03 +00:00
|
|
|
gst/mpeg1videoparse/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/mpeg2sub/Makefile
|
|
|
|
gst/mpegaudio/Makefile
|
|
|
|
gst/mpegaudioparse/Makefile
|
|
|
|
gst/mpegstream/Makefile
|
2002-02-28 21:10:42 +00:00
|
|
|
gst/modplug/Makefile
|
|
|
|
gst/modplug/libmodplug/Makefile
|
2002-03-02 12:36:07 +00:00
|
|
|
gst/monoscope/Makefile
|
multifilesink plugin for creating new files every time a new media discontinuity event occurs
Original commit message from CVS:
2004-07-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* configure.ac:
* gst/Makefile.am:
* gst/multifilesink/Makefile.am:
* gst/multifilesink/gstmultifilesink.c:
(gst_multifilesink_get_formats),
(gst_multifilesink_get_query_types), (_do_init),
(gst_multifilesink_base_init), (gst_multifilesink_class_init),
(gst_multifilesink_init), (gst_multifilesink_dispose),
(gst_multifilesink_set_location), (gst_multifilesink_set_property),
(gst_multifilesink_get_property), (gst_multifilesink_open_file),
(gst_multifilesink_close_file), (gst_multifilesink_next_file),
(gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
(gst_multifilesink_chain), (gst_multifilesink_change_state),
(gst_multifilesink_uri_get_type),
(gst_multifilesink_uri_get_protocols),
(gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
(gst_multifilesink_uri_handler_init), (plugin_init):
* gst/multifilesink/gstmultifilesink.h:
* testsuite/Makefile.am:
* testsuite/multifilesink/Makefile.am:
* testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
(gst_newmedia_class_init), (gst_newmedia_init),
(gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
(newfile_signal), (test_signal), (main):
multifilesink plugin for creating new files every time a new media
discontinuity event occurs
2004-07-22 17:57:04 +00:00
|
|
|
gst/multifilesink/Makefile
|
A plugin to add an alpha channel to I420 video. Can optionally do chroma keying.
Original commit message from CVS:
* configure.ac:
* gst/alpha/Makefile.am:
* gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
(gst_alpha_get_type), (gst_alpha_base_init),
(gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
(gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
(gst_alpha_chroma_key), (gst_alpha_chain),
(gst_alpha_change_state), (plugin_init):
A plugin to add an alpha channel to I420 video. Can optionally do
chroma keying.
* gst/multipart/Makefile.am:
* gst/multipart/multipart.c: (plugin_init):
* gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
(gst_multipart_demux_class_init), (gst_multipart_demux_init),
(gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
(gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
(gst_multipart_demux_change_state),
(gst_multipart_demux_plugin_init):
* gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
(gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
(gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
(gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
(gst_multipart_mux_pad_unlink),
(gst_multipart_mux_request_new_pad),
(gst_multipart_mux_handle_src_event),
(gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
(gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
(gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
(gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
A Multipart demuxer/muxer. Not sure if it violates specs. Used to
send multipart jpeg images to a browser.
* gst/videobox/Makefile.am:
* gst/videobox/README:
* gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
(gst_video_box_get_type), (gst_video_box_base_init),
(gst_video_box_class_init), (gst_video_box_init),
(gst_video_box_set_property), (gst_video_box_get_property),
(gst_video_box_sink_link), (gst_video_box_i420),
(gst_video_box_ayuv), (gst_video_box_chain),
(gst_video_box_change_state), (plugin_init):
Crops or adds borders around an image. can do alpha channel
borders as well.
* gst/videomixer/Makefile.am:
* gst/videomixer/README:
* gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
(gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
(gst_videomixer_pad_get_sink_event_masks),
(gst_videomixer_pad_get_property),
(gst_videomixer_pad_set_property),
(gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
(gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
(gst_video_mixer_background_get_type), (gst_videomixer_get_type),
(gst_videomixer_base_init), (gst_videomixer_class_init),
(gst_videomixer_init), (gst_videomixer_request_new_pad),
(gst_videomixer_handle_src_event),
(gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
(gst_videomixer_fill_color), (gst_videomixer_fill_queues),
(gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
(gst_videomixer_loop), (gst_videomixer_get_property),
(gst_videomixer_set_property), (gst_videomixer_change_state),
(plugin_init):
Generic video mixer plugin, can handle multiple inputs all with
different framerates and video sizes. Is fully alpha channel
aware.
2004-05-28 18:01:33 +00:00
|
|
|
gst/multipart/Makefile
|
2003-07-14 08:26:54 +00:00
|
|
|
gst/overlay/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/passthrough/Makefile
|
Added some playback helper elements and some test apps, very alpha still.
Original commit message from CVS:
* configure.ac:
* gst/playback/Makefile.am:
* gst/playback/decodetest.c: (main):
* gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
(gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
(compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
(find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
(close_link), (type_found), (gst_decode_bin_set_property),
(gst_decode_bin_get_property), (gst_decode_bin_change_state),
(gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
(gst_decode_bin_get_formats), (gst_decode_bin_convert),
(gst_decode_bin_get_query_types), (gst_decode_bin_query),
(plugin_init):
* gst/playback/gstplaybin.c: (gst_play_bin_get_type),
(gst_play_bin_class_init), (gst_play_bin_init),
(gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
(collect_sink_pads), (find_compatibles), (close_pad_link),
(try_to_link_1), (new_pad), (close_link), (type_found),
(setup_source), (gst_play_bin_set_property),
(gst_play_bin_get_property), (gst_play_bin_factory_filter),
(compare_ranks), (gst_play_bin_collect_factories),
(gst_play_bin_change_state), (gst_play_bin_add_element),
(gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
(gst_play_bin_send_event), (gst_play_bin_get_formats),
(gst_play_bin_convert), (gst_play_bin_get_query_types),
(gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
* gst/playback/test.c: (main):
Added some playback helper elements and some test apps, very alpha
still.
2004-07-05 11:14:30 +00:00
|
|
|
gst/playback/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/playondemand/Makefile
|
2002-05-01 18:41:59 +00:00
|
|
|
gst/qtdemux/Makefile
|
2003-06-25 03:19:20 +00:00
|
|
|
gst/realmedia/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/rtjpeg/Makefile
|
2003-03-02 10:16:24 +00:00
|
|
|
gst/rtp/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/silence/Makefile
|
|
|
|
gst/sine/Makefile
|
|
|
|
gst/smooth/Makefile
|
2002-10-29 22:50:54 +00:00
|
|
|
gst/smpte/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/spectrum/Makefile
|
|
|
|
gst/speed/Makefile
|
|
|
|
gst/stereo/Makefile
|
2003-12-08 20:01:00 +00:00
|
|
|
gst/switch/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/synaesthesia/Makefile
|
2003-11-24 04:08:48 +00:00
|
|
|
gst/tags/Makefile
|
2003-07-25 17:06:43 +00:00
|
|
|
gst/tcp/Makefile
|
2003-10-28 20:52:41 +00:00
|
|
|
gst/typefind/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/udp/Makefile
|
2002-12-19 21:34:56 +00:00
|
|
|
gst/vbidec/Makefile
|
A plugin to add an alpha channel to I420 video. Can optionally do chroma keying.
Original commit message from CVS:
* configure.ac:
* gst/alpha/Makefile.am:
* gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
(gst_alpha_get_type), (gst_alpha_base_init),
(gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
(gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
(gst_alpha_chroma_key), (gst_alpha_chain),
(gst_alpha_change_state), (plugin_init):
A plugin to add an alpha channel to I420 video. Can optionally do
chroma keying.
* gst/multipart/Makefile.am:
* gst/multipart/multipart.c: (plugin_init):
* gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
(gst_multipart_demux_class_init), (gst_multipart_demux_init),
(gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
(gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
(gst_multipart_demux_change_state),
(gst_multipart_demux_plugin_init):
* gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
(gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
(gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
(gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
(gst_multipart_mux_pad_unlink),
(gst_multipart_mux_request_new_pad),
(gst_multipart_mux_handle_src_event),
(gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
(gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
(gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
(gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
A Multipart demuxer/muxer. Not sure if it violates specs. Used to
send multipart jpeg images to a browser.
* gst/videobox/Makefile.am:
* gst/videobox/README:
* gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
(gst_video_box_get_type), (gst_video_box_base_init),
(gst_video_box_class_init), (gst_video_box_init),
(gst_video_box_set_property), (gst_video_box_get_property),
(gst_video_box_sink_link), (gst_video_box_i420),
(gst_video_box_ayuv), (gst_video_box_chain),
(gst_video_box_change_state), (plugin_init):
Crops or adds borders around an image. can do alpha channel
borders as well.
* gst/videomixer/Makefile.am:
* gst/videomixer/README:
* gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
(gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
(gst_videomixer_pad_get_sink_event_masks),
(gst_videomixer_pad_get_property),
(gst_videomixer_pad_set_property),
(gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
(gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
(gst_video_mixer_background_get_type), (gst_videomixer_get_type),
(gst_videomixer_base_init), (gst_videomixer_class_init),
(gst_videomixer_init), (gst_videomixer_request_new_pad),
(gst_videomixer_handle_src_event),
(gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
(gst_videomixer_fill_color), (gst_videomixer_fill_queues),
(gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
(gst_videomixer_loop), (gst_videomixer_get_property),
(gst_videomixer_set_property), (gst_videomixer_change_state),
(plugin_init):
Generic video mixer plugin, can handle multiple inputs all with
different framerates and video sizes. Is fully alpha channel
aware.
2004-05-28 18:01:33 +00:00
|
|
|
gst/videobox/Makefile
|
2003-06-13 05:38:16 +00:00
|
|
|
gst/videocrop/Makefile
|
2003-09-30 21:44:53 +00:00
|
|
|
gst/videodrop/Makefile
|
2003-07-02 08:15:01 +00:00
|
|
|
gst/videofilter/Makefile
|
2003-06-13 05:38:16 +00:00
|
|
|
gst/videoflip/Makefile
|
A plugin to add an alpha channel to I420 video. Can optionally do chroma keying.
Original commit message from CVS:
* configure.ac:
* gst/alpha/Makefile.am:
* gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
(gst_alpha_get_type), (gst_alpha_base_init),
(gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
(gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
(gst_alpha_chroma_key), (gst_alpha_chain),
(gst_alpha_change_state), (plugin_init):
A plugin to add an alpha channel to I420 video. Can optionally do
chroma keying.
* gst/multipart/Makefile.am:
* gst/multipart/multipart.c: (plugin_init):
* gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
(gst_multipart_demux_class_init), (gst_multipart_demux_init),
(gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
(gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
(gst_multipart_demux_change_state),
(gst_multipart_demux_plugin_init):
* gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
(gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
(gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
(gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
(gst_multipart_mux_pad_unlink),
(gst_multipart_mux_request_new_pad),
(gst_multipart_mux_handle_src_event),
(gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
(gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
(gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
(gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
A Multipart demuxer/muxer. Not sure if it violates specs. Used to
send multipart jpeg images to a browser.
* gst/videobox/Makefile.am:
* gst/videobox/README:
* gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
(gst_video_box_get_type), (gst_video_box_base_init),
(gst_video_box_class_init), (gst_video_box_init),
(gst_video_box_set_property), (gst_video_box_get_property),
(gst_video_box_sink_link), (gst_video_box_i420),
(gst_video_box_ayuv), (gst_video_box_chain),
(gst_video_box_change_state), (plugin_init):
Crops or adds borders around an image. can do alpha channel
borders as well.
* gst/videomixer/Makefile.am:
* gst/videomixer/README:
* gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
(gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
(gst_videomixer_pad_get_sink_event_masks),
(gst_videomixer_pad_get_property),
(gst_videomixer_pad_set_property),
(gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
(gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
(gst_video_mixer_background_get_type), (gst_videomixer_get_type),
(gst_videomixer_base_init), (gst_videomixer_class_init),
(gst_videomixer_init), (gst_videomixer_request_new_pad),
(gst_videomixer_handle_src_event),
(gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
(gst_videomixer_fill_color), (gst_videomixer_fill_queues),
(gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
(gst_videomixer_loop), (gst_videomixer_get_property),
(gst_videomixer_set_property), (gst_videomixer_change_state),
(plugin_init):
Generic video mixer plugin, can handle multiple inputs all with
different framerates and video sizes. Is fully alpha channel
aware.
2004-05-28 18:01:33 +00:00
|
|
|
gst/videomixer/Makefile
|
2004-06-17 13:45:50 +00:00
|
|
|
gst/videorate/Makefile
|
2004-06-17 14:33:19 +00:00
|
|
|
gst/videoscale/Makefile
|
2002-07-26 22:20:45 +00:00
|
|
|
gst/videotestsrc/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/volenv/Makefile
|
|
|
|
gst/volume/Makefile
|
2002-10-21 17:06:52 +00:00
|
|
|
gst/wavenc/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst/wavparse/Makefile
|
|
|
|
gst/y4m/Makefile
|
2001-12-20 20:16:57 +00:00
|
|
|
sys/Makefile
|
2002-07-27 01:37:25 +00:00
|
|
|
sys/cdrom/Makefile
|
2002-03-29 00:23:16 +00:00
|
|
|
sys/dxr3/Makefile
|
2003-11-12 03:06:07 +00:00
|
|
|
sys/glsink/Makefile
|
2001-12-20 20:16:57 +00:00
|
|
|
sys/oss/Makefile
|
2004-05-20 19:56:27 +00:00
|
|
|
sys/osxaudio/Makefile
|
2004-06-22 00:21:51 +00:00
|
|
|
sys/osxvideo/Makefile
|
2001-12-20 20:16:57 +00:00
|
|
|
sys/qcam/Makefile
|
2004-05-19 06:10:49 +00:00
|
|
|
sys/sunaudio/Makefile
|
2001-12-20 20:16:57 +00:00
|
|
|
sys/v4l/Makefile
|
2002-09-09 07:15:56 +00:00
|
|
|
sys/v4l2/Makefile
|
2001-12-20 20:33:15 +00:00
|
|
|
sys/vcd/Makefile
|
2003-11-07 00:53:32 +00:00
|
|
|
sys/ximage/Makefile
|
2003-11-12 03:06:07 +00:00
|
|
|
sys/xvimage/Makefile
|
2001-12-20 23:13:50 +00:00
|
|
|
ext/Makefile
|
2001-12-26 21:51:41 +00:00
|
|
|
ext/a52dec/Makefile
|
2001-12-22 23:57:40 +00:00
|
|
|
ext/aalib/Makefile
|
2001-12-23 00:25:30 +00:00
|
|
|
ext/alsa/Makefile
|
2001-12-24 22:36:46 +00:00
|
|
|
ext/arts/Makefile
|
|
|
|
ext/artsd/Makefile
|
2001-12-21 11:46:15 +00:00
|
|
|
ext/audiofile/Makefile
|
2004-10-18 14:20:10 +00:00
|
|
|
ext/cdaudio/Makefile
|
2001-12-23 13:06:22 +00:00
|
|
|
ext/cdparanoia/Makefile
|
2004-05-11 02:30:16 +00:00
|
|
|
ext/dirac/Makefile
|
2003-04-21 21:54:26 +00:00
|
|
|
ext/divx/Makefile
|
New DTS decoder.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/dts/Makefile.am:
* ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
(gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
(gst_dtsdec_channels), (gst_dtsdec_renegotiate),
(gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
(gst_dtsdec_loop), (gst_dtsdec_change_state),
(gst_dtsdec_set_property), (gst_dtsdec_get_property),
(plugin_init):
* ext/dts/gstdtsdec.h:
New DTS decoder.
* ext/faad/gstfaad.c: (gst_faad_sinkconnect),
(gst_faad_srcconnect):
Add ESDS atom handling (.m4a).
2004-04-29 00:00:25 +00:00
|
|
|
ext/dts/Makefile
|
2001-12-23 18:23:32 +00:00
|
|
|
ext/dv/Makefile
|
2001-12-23 12:42:48 +00:00
|
|
|
ext/dvdread/Makefile
|
2002-05-26 17:39:45 +00:00
|
|
|
ext/dvdnav/Makefile
|
2001-12-20 23:13:50 +00:00
|
|
|
ext/esd/Makefile
|
2003-11-22 12:40:19 +00:00
|
|
|
ext/faac/Makefile
|
2003-11-21 21:20:42 +00:00
|
|
|
ext/faad/Makefile
|
2001-12-23 14:15:30 +00:00
|
|
|
ext/flac/Makefile
|
2003-06-25 03:19:20 +00:00
|
|
|
ext/gdk_pixbuf/Makefile
|
2001-12-23 16:42:33 +00:00
|
|
|
ext/gnomevfs/Makefile
|
2001-12-23 14:29:43 +00:00
|
|
|
ext/gsm/Makefile
|
|
|
|
ext/hermes/Makefile
|
2003-05-12 13:17:11 +00:00
|
|
|
dnl ext/http/Makefile
|
2002-03-18 04:41:34 +00:00
|
|
|
ext/jack/Makefile
|
2001-12-23 15:24:07 +00:00
|
|
|
ext/jpeg/Makefile
|
2001-12-23 18:23:32 +00:00
|
|
|
ext/ladspa/Makefile
|
2001-12-20 23:48:55 +00:00
|
|
|
ext/lame/Makefile
|
2003-02-23 19:58:50 +00:00
|
|
|
ext/ivorbis/Makefile
|
2002-06-01 10:52:57 +00:00
|
|
|
ext/lcs/Makefile
|
2004-01-12 03:37:48 +00:00
|
|
|
ext/libcaca/Makefile
|
2002-06-01 10:52:57 +00:00
|
|
|
ext/libfame/Makefile
|
2004-10-04 16:38:45 +00:00
|
|
|
ext/libmng/Makefile
|
2004-10-05 15:29:37 +00:00
|
|
|
ext/libpng/Makefile
|
2004-01-07 10:51:05 +00:00
|
|
|
ext/librfb/Makefile
|
2004-04-30 02:25:09 +00:00
|
|
|
ext/libvisual/Makefile
|
2001-12-20 23:13:50 +00:00
|
|
|
ext/mad/Makefile
|
2004-09-10 00:40:24 +00:00
|
|
|
dnl ext/mas/Makefile
|
2001-12-23 18:23:32 +00:00
|
|
|
ext/mikmod/Makefile
|
2001-12-23 06:56:55 +00:00
|
|
|
ext/mpeg2dec/Makefile
|
2003-12-11 21:07:25 +00:00
|
|
|
ext/mpeg2enc/Makefile
|
2003-07-22 22:08:13 +00:00
|
|
|
ext/mplex/Makefile
|
2004-01-18 20:19:44 +00:00
|
|
|
ext/musicbrainz/Makefile
|
2004-01-21 06:57:30 +00:00
|
|
|
ext/nas/Makefile
|
2003-11-24 04:08:48 +00:00
|
|
|
ext/ogg/Makefile
|
2003-07-02 08:15:01 +00:00
|
|
|
ext/pango/Makefile
|
2001-12-23 16:42:33 +00:00
|
|
|
ext/raw1394/Makefile
|
2001-12-20 23:21:14 +00:00
|
|
|
ext/sdl/Makefile
|
2001-12-23 18:23:32 +00:00
|
|
|
ext/shout/Makefile
|
2002-10-27 19:32:03 +00:00
|
|
|
ext/shout2/Makefile
|
2001-12-23 18:23:32 +00:00
|
|
|
ext/sidplay/Makefile
|
2001-12-30 20:10:15 +00:00
|
|
|
ext/smoothwave/Makefile
|
2002-10-18 20:53:45 +00:00
|
|
|
ext/snapshot/Makefile
|
2003-07-17 04:27:01 +00:00
|
|
|
ext/speex/Makefile
|
2003-06-16 14:56:34 +00:00
|
|
|
ext/sndfile/Makefile
|
2002-09-15 21:33:53 +00:00
|
|
|
ext/swfdec/Makefile
|
2002-02-03 20:10:04 +00:00
|
|
|
ext/tarkin/Makefile
|
2004-01-30 20:23:24 +00:00
|
|
|
ext/theora/Makefile
|
|
|
|
ext/vorbis/Makefile
|
2004-02-20 00:52:06 +00:00
|
|
|
ext/xine/Makefile
|
2003-04-21 21:54:26 +00:00
|
|
|
ext/xvid/Makefile
|
2001-12-21 11:46:15 +00:00
|
|
|
gst-libs/Makefile
|
2001-12-22 23:57:40 +00:00
|
|
|
gst-libs/gst/Makefile
|
|
|
|
gst-libs/gst/audio/Makefile
|
2003-10-10 12:47:41 +00:00
|
|
|
gst-libs/gst/colorbalance/Makefile
|
2002-07-01 15:41:13 +00:00
|
|
|
gst-libs/gst/floatcast/Makefile
|
|
|
|
gst-libs/gst/gconf/Makefile
|
2001-12-23 20:21:19 +00:00
|
|
|
gst-libs/gst/idct/Makefile
|
2002-11-11 14:06:18 +00:00
|
|
|
gst-libs/gst/media-info/Makefile
|
2003-09-13 01:20:04 +00:00
|
|
|
gst-libs/gst/mixer/Makefile
|
2003-09-27 03:15:34 +00:00
|
|
|
gst-libs/gst/navigation/Makefile
|
2002-10-27 21:03:12 +00:00
|
|
|
gst-libs/gst/play/Makefile
|
2003-10-30 02:36:42 +00:00
|
|
|
gst-libs/gst/propertyprobe/Makefile
|
2001-12-23 04:38:38 +00:00
|
|
|
gst-libs/gst/resample/Makefile
|
2001-12-23 12:18:18 +00:00
|
|
|
gst-libs/gst/riff/Makefile
|
2003-12-14 19:50:00 +00:00
|
|
|
gst-libs/gst/tag/Makefile
|
2003-10-10 12:47:41 +00:00
|
|
|
gst-libs/gst/tuner/Makefile
|
2002-09-26 12:20:12 +00:00
|
|
|
gst-libs/gst/video/Makefile
|
2003-10-10 12:47:41 +00:00
|
|
|
gst-libs/gst/xoverlay/Makefile
|
|
|
|
gst-libs/gst/xwindowlistener/Makefile
|
2002-12-26 10:53:21 +00:00
|
|
|
gst-libs/ext/Makefile
|
2002-06-07 19:01:34 +00:00
|
|
|
examples/dynparams/Makefile
|
2002-01-07 02:14:35 +00:00
|
|
|
examples/capsfilter/Makefile
|
2002-06-01 10:52:57 +00:00
|
|
|
examples/seeking/Makefile
|
2002-11-28 12:58:38 +00:00
|
|
|
examples/indexing/Makefile
|
2003-12-14 16:59:09 +00:00
|
|
|
examples/gstplay/Makefile
|
2004-01-11 17:32:37 +00:00
|
|
|
examples/switch/Makefile
|
2002-01-07 02:23:34 +00:00
|
|
|
examples/Makefile
|
2002-10-01 21:51:01 +00:00
|
|
|
testsuite/spider/Makefile
|
2003-03-05 13:41:34 +00:00
|
|
|
testsuite/alsa/Makefile
|
multifilesink plugin for creating new files every time a new media discontinuity event occurs
Original commit message from CVS:
2004-07-22 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* configure.ac:
* gst/Makefile.am:
* gst/multifilesink/Makefile.am:
* gst/multifilesink/gstmultifilesink.c:
(gst_multifilesink_get_formats),
(gst_multifilesink_get_query_types), (_do_init),
(gst_multifilesink_base_init), (gst_multifilesink_class_init),
(gst_multifilesink_init), (gst_multifilesink_dispose),
(gst_multifilesink_set_location), (gst_multifilesink_set_property),
(gst_multifilesink_get_property), (gst_multifilesink_open_file),
(gst_multifilesink_close_file), (gst_multifilesink_next_file),
(gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
(gst_multifilesink_chain), (gst_multifilesink_change_state),
(gst_multifilesink_uri_get_type),
(gst_multifilesink_uri_get_protocols),
(gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
(gst_multifilesink_uri_handler_init), (plugin_init):
* gst/multifilesink/gstmultifilesink.h:
* testsuite/Makefile.am:
* testsuite/multifilesink/Makefile.am:
* testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
(gst_newmedia_class_init), (gst_newmedia_init),
(gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
(newfile_signal), (test_signal), (main):
multifilesink plugin for creating new files every time a new media
discontinuity event occurs
2004-07-22 17:57:04 +00:00
|
|
|
testsuite/multifilesink/Makefile
|
2002-10-01 21:51:01 +00:00
|
|
|
testsuite/Makefile
|
2002-02-04 20:57:13 +00:00
|
|
|
tools/Makefile
|
2002-05-10 21:56:15 +00:00
|
|
|
gconf/Makefile
|
2004-02-24 17:05:53 +00:00
|
|
|
gconf/gstreamer.schemas
|
2003-04-07 21:34:30 +00:00
|
|
|
pkgconfig/Makefile
|
2004-03-15 17:17:28 +00:00
|
|
|
pkgconfig/gstreamer-gconf.pc
|
|
|
|
pkgconfig/gstreamer-gconf-uninstalled.pc
|
|
|
|
pkgconfig/gstreamer-interfaces.pc
|
|
|
|
pkgconfig/gstreamer-interfaces-uninstalled.pc
|
|
|
|
pkgconfig/gstreamer-libs.pc
|
|
|
|
pkgconfig/gstreamer-libs-uninstalled.pc
|
|
|
|
pkgconfig/gstreamer-media-info.pc
|
|
|
|
pkgconfig/gstreamer-media-info-uninstalled.pc
|
|
|
|
pkgconfig/gstreamer-play.pc
|
|
|
|
pkgconfig/gstreamer-play-uninstalled.pc
|
2004-03-15 22:27:32 +00:00
|
|
|
pkgconfig/gstreamer-plugins.pc
|
|
|
|
pkgconfig/gstreamer-plugins-uninstalled.pc
|
2004-01-19 15:45:55 +00:00
|
|
|
po/Makefile.in
|
2004-03-18 12:38:53 +00:00
|
|
|
common/Makefile
|
|
|
|
common/m4/Makefile
|
|
|
|
m4/Makefile
|
2001-12-17 18:37:01 +00:00
|
|
|
)
|
2002-02-08 20:12:28 +00:00
|
|
|
AC_OUTPUT
|
|
|
|
|
2003-09-25 21:40:35 +00:00
|
|
|
echo -n "configure: *** Plug-ins that will be built :"
|
|
|
|
echo -e "$GST_PLUGINS_YES" | sort
|
2001-12-17 18:37:01 +00:00
|
|
|
echo
|
2003-09-25 21:40:35 +00:00
|
|
|
echo -n "configure: *** Plug-ins that will not be built :"
|
|
|
|
echo -e "$GST_PLUGINS_NO" | sort
|
2001-12-17 18:37:01 +00:00
|
|
|
echo
|
2002-06-14 16:44:33 +00:00
|
|
|
if test "x$BUILD_EXTERNAL" = "xno"; then
|
|
|
|
echo "configure: *** No external plug-ins will be built"
|
|
|
|
fi
|