2012-04-13 11:53:37 +00:00
|
|
|
AC_PREREQ(2.62)
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl initialize autoconf
|
2003-12-09 15:59:48 +00:00
|
|
|
dnl when going to/from release please set the nano (fourth number) right !
|
|
|
|
dnl releases only do Wall, cvs and prerelease does Werror too
|
2012-08-08 15:32:52 +00:00
|
|
|
AC_INIT(GStreamer libav, 0.11.93.1,
|
2006-04-01 15:41:27 +00:00
|
|
|
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
2012-04-12 17:41:52 +00:00
|
|
|
gst-libav)
|
2006-04-01 15:41:27 +00:00
|
|
|
|
2007-03-01 01:10:22 +00:00
|
|
|
AG_GST_INIT
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl initialize automake
|
2012-04-13 11:53:37 +00:00
|
|
|
AM_INIT_AUTOMAKE([-Wno-portability 1.11 no-dist-gzip dist-xz tar-ustar])
|
2005-10-03 18:01:15 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl define PACKAGE_VERSION_* variables
|
|
|
|
AS_VERSION
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl check if this is a release version
|
2010-03-24 10:53:46 +00:00
|
|
|
AS_NANO(GST_GIT="no", GST_GIT="yes")
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl can autoconf find the source ?
|
2012-09-10 15:53:54 +00:00
|
|
|
AC_CONFIG_SRCDIR([ext/libav/gstav.c])
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl define the output header for config
|
|
|
|
AM_CONFIG_HEADER([config.h])
|
|
|
|
|
|
|
|
dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
|
2012-04-13 11:53:37 +00:00
|
|
|
AM_MAINTAINER_MODE([enable])
|
2004-02-26 18:21:44 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl sets host_* variables
|
|
|
|
AC_CANONICAL_HOST
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2010-02-26 14:48:43 +00:00
|
|
|
dnl use pretty build output with automake >= 1.11
|
|
|
|
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],
|
|
|
|
[AM_DEFAULT_VERBOSITY=1
|
|
|
|
AC_SUBST(AM_DEFAULT_VERBOSITY)])
|
|
|
|
|
2003-12-09 15:59:48 +00:00
|
|
|
dnl our libraries and install dirs use major.minor as a version
|
2012-04-04 12:48:25 +00:00
|
|
|
GST_API_VERSION=$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl we override it here if we need to for the release candidate of new series
|
2012-04-04 12:48:25 +00:00
|
|
|
GST_API_VERSION=1.0
|
|
|
|
AC_SUBST(GST_API_VERSION)
|
2006-04-01 15:41:27 +00:00
|
|
|
|
2011-01-27 21:22:02 +00:00
|
|
|
AG_GST_LIBTOOL_PREPARE
|
2012-04-13 11:53:37 +00:00
|
|
|
AS_LIBTOOL(GST, 0, 0, 0)
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl *** required versions of GStreamer stuff ***
|
2012-08-08 15:32:16 +00:00
|
|
|
GST_REQ=0.11.93
|
|
|
|
ORC_REQ=0.4.16
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl *** autotools stuff ****
|
|
|
|
|
|
|
|
dnl allow for different autotools
|
|
|
|
AS_AUTOTOOLS_ALTERNATE
|
2003-12-09 15:59:48 +00:00
|
|
|
|
|
|
|
dnl Add parameters for aclocal
|
2006-04-01 15:41:27 +00:00
|
|
|
AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
|
|
|
|
|
|
|
|
dnl *** check for arguments to configure ***
|
|
|
|
|
2012-01-25 12:10:07 +00:00
|
|
|
AG_GST_ARG_DISABLE_FATAL_WARNINGS
|
|
|
|
|
2009-08-26 11:37:02 +00:00
|
|
|
AG_GST_ARG_WITH_PKG_CONFIG_PATH
|
2007-03-01 01:10:22 +00:00
|
|
|
AG_GST_ARG_WITH_PACKAGE_NAME
|
|
|
|
AG_GST_ARG_WITH_PACKAGE_ORIGIN
|
|
|
|
AG_GST_ARG_VALGRIND
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl *** checks for platform ***
|
|
|
|
|
|
|
|
dnl * hardware/architecture *
|
|
|
|
|
|
|
|
dnl common/m4/gst-arch.m4
|
|
|
|
dnl check CPU type
|
2007-03-01 01:10:22 +00:00
|
|
|
AG_GST_ARCH
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl *** checks for programs ***
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl find a compiler
|
2003-12-09 15:59:48 +00:00
|
|
|
AC_PROG_CC
|
2010-08-04 17:41:06 +00:00
|
|
|
AC_PROG_CC_STDC
|
2010-08-04 17:32:51 +00:00
|
|
|
|
2008-01-10 12:43:35 +00:00
|
|
|
dnl check if the compiler supports '-c' and '-o' options
|
|
|
|
AM_PROG_CC_C_O
|
|
|
|
|
2006-05-09 16:15:39 +00:00
|
|
|
AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
|
|
|
|
AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl check for documentation tools
|
2008-05-08 13:40:12 +00:00
|
|
|
AG_GST_DOCBOOK_CHECK
|
2012-08-22 11:20:36 +00:00
|
|
|
GTK_DOC_CHECK([1.12])
|
2006-04-01 15:41:27 +00:00
|
|
|
AS_PATH_PYTHON([2.1])
|
2008-05-08 13:40:12 +00:00
|
|
|
AG_GST_PLUGIN_DOCS([1.3],[2.1])
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl *** checks for libraries ***
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2007-08-01 15:06:44 +00:00
|
|
|
dnl check for libm, for sin()
|
2012-04-13 11:53:37 +00:00
|
|
|
LT_LIB_M
|
2007-08-01 15:06:44 +00:00
|
|
|
AC_SUBST(LIBM)
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl *** checks for header files ***
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl check if we have ANSI C header files
|
|
|
|
AC_HEADER_STDC
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl *** checks for types/defines ***
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl *** checks for structures ***
|
|
|
|
|
|
|
|
dnl *** checks for compiler characteristics ***
|
|
|
|
|
|
|
|
dnl *** checks for library functions ***
|
|
|
|
|
|
|
|
dnl *** checks for dependancy libraries ***
|
|
|
|
|
|
|
|
dnl checks for gstreamer
|
2006-01-31 08:55:57 +00:00
|
|
|
dnl uninstalled is selected preferentially -- see pkg-config(1)
|
2012-04-04 12:48:25 +00:00
|
|
|
AG_GST_CHECK_GST($GST_API_VERSION, [$GST_REQ])
|
|
|
|
AG_GST_CHECK_GST_BASE($GST_API_VERSION, [$GST_REQ])
|
|
|
|
AG_GST_CHECK_GST_PLUGINS_BASE($GST_API_VERSION, [$GST_REQ])
|
|
|
|
AG_GST_CHECK_GST_CHECK($GST_API_VERSION, [$GST_REQ], no)
|
2007-07-13 16:35:45 +00:00
|
|
|
AM_CONDITIONAL(HAVE_GST_CHECK, test "x$HAVE_GST_CHECK" = "xyes")
|
2005-06-10 23:55:38 +00:00
|
|
|
|
2006-05-18 23:06:31 +00:00
|
|
|
AC_MSG_NOTICE(Using GStreamer Core Plugins in $GST_PLUGINS_DIR)
|
|
|
|
AC_MSG_NOTICE(Using GStreamer Base Plugins in $GSTPB_PLUGINS_DIR)
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl *** set variables based on configure arguments ***
|
|
|
|
|
|
|
|
dnl set location of plugin directory
|
2007-03-01 01:10:22 +00:00
|
|
|
AG_GST_SET_PLUGINDIR
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl define an ERROR_CFLAGS Makefile variable
|
2012-01-25 12:10:07 +00:00
|
|
|
AG_GST_SET_ERROR_CFLAGS($FATAL_WARNINGS, [
|
2010-03-24 11:07:28 +00:00
|
|
|
-Wmissing-declarations -Wmissing-prototypes -Wredundant-decls -Wundef
|
|
|
|
-Wwrite-strings -Wformat-nonliteral -Wformat-security -Wold-style-definition
|
2011-07-07 16:52:23 +00:00
|
|
|
-Winit-self -Wmissing-include-dirs -Waddress
|
2010-03-24 11:07:28 +00:00
|
|
|
-Waggregate-return -Wno-multichar -Wnested-externs ])
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl define correct level for debugging messages
|
2010-03-24 10:53:46 +00:00
|
|
|
AG_GST_SET_LEVEL_DEFAULT($GST_GIT)
|
2006-04-01 15:41:27 +00:00
|
|
|
|
|
|
|
dnl *** finalize CFLAGS, LDFLAGS, LIBS ***
|
|
|
|
|
|
|
|
dnl Overview:
|
|
|
|
dnl GST_OPTION_CFLAGS: common flags for profiling, debugging, errors, ...
|
|
|
|
dnl GST_*: flags shared by built objects to link against GStreamer
|
|
|
|
dnl GST_ALL_LDFLAGS: linker flags shared by all
|
|
|
|
dnl GST_LIB_LDFLAGS: additional linker flags for all libaries
|
|
|
|
dnl GST_LT_LDFLAGS: library versioning of our libraries
|
|
|
|
dnl GST_PLUGIN_LDFLAGS: flags to be used for all plugins
|
|
|
|
|
|
|
|
dnl GST_OPTION_CFLAGS
|
|
|
|
if test "x$USE_DEBUG" = xyes; then
|
|
|
|
PROFILE_CFLAGS="-g"
|
2003-12-09 15:59:48 +00:00
|
|
|
fi
|
2006-04-01 15:41:27 +00:00
|
|
|
AC_SUBST(PROFILE_CFLAGS)
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2010-03-24 10:53:46 +00:00
|
|
|
if test "x$GST_GIT" = "xyes"; then
|
2007-12-17 12:43:06 +00:00
|
|
|
DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED"
|
|
|
|
else
|
|
|
|
DEPRECATED_CFLAGS=""
|
|
|
|
fi
|
2006-04-01 15:41:27 +00:00
|
|
|
AC_SUBST(DEPRECATED_CFLAGS)
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl every flag in GST_OPTION_CFLAGS can be overridden at make time
|
2010-03-10 21:10:08 +00:00
|
|
|
GST_OPTION_CFLAGS="\$(WARNING_CFLAGS) \$(ERROR_CFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
AC_SUBST(GST_OPTION_CFLAGS)
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl FIXME: do we want to rename to GST_ALL_* ?
|
|
|
|
dnl prefer internal headers to already installed ones
|
|
|
|
dnl also add builddir include for enumtypes and marshal
|
|
|
|
dnl add GST_OPTION_CFLAGS, but overridable
|
2011-07-05 09:34:24 +00:00
|
|
|
GST_CFLAGS="$GST_CFLAGS -DGST_USE_UNSTABLE_API"
|
2010-06-14 11:28:41 +00:00
|
|
|
GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GLIB_EXTRA_CFLAGS \$(GST_OPTION_CFLAGS)"
|
2006-04-01 15:41:27 +00:00
|
|
|
AC_SUBST(GST_CFLAGS)
|
|
|
|
AC_SUBST(GST_LIBS)
|
2003-12-09 15:59:48 +00:00
|
|
|
|
2007-05-24 08:51:52 +00:00
|
|
|
GST_ALL_LDFLAGS="-no-undefined"
|
|
|
|
AC_SUBST(GST_ALL_LDFLAGS)
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl this really should only contain flags, not libs - they get added before
|
|
|
|
dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
|
2011-01-27 21:22:22 +00:00
|
|
|
GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '^[_]*gst_plugin_desc.*' $GST_ALL_LDFLAGS"
|
2006-04-01 15:41:27 +00:00
|
|
|
AC_SUBST(GST_PLUGIN_LDFLAGS)
|
2006-01-31 08:55:57 +00:00
|
|
|
|
2007-05-17 15:46:17 +00:00
|
|
|
dnl Add MacOSX specific flags
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
case $host_os in
|
|
|
|
darwin*)
|
|
|
|
DARWIN_LDFLAGS="-Wl,-read_only_relocs,suppress"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
DARWIN_LDFLAGS=""
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
AC_SUBST(DARWIN_LDFLAGS)
|
|
|
|
|
2008-08-18 21:30:05 +00:00
|
|
|
dnl *** Check for bz2
|
2009-03-05 08:10:37 +00:00
|
|
|
AG_GST_CHECK_LIBHEADER(BZ2, bz2, BZ2_bzlibVersion, , bzlib.h, have_bz2=yes, have_bz2=no)
|
|
|
|
AM_CONDITIONAL(HAVE_BZ2, test "x$have_bz2" = "xyes")
|
|
|
|
if test "x$have_bz2" = "xno"; then
|
|
|
|
AC_WARN([libbz2 not found, matroska demuxer will not be able to read bz2 tracks])
|
|
|
|
fi
|
2008-08-18 21:30:05 +00:00
|
|
|
|
2011-07-05 18:35:46 +00:00
|
|
|
AC_ARG_ENABLE(lgpl,
|
2012-04-12 17:41:52 +00:00
|
|
|
[AC_HELP_STRING([--enable-lgpl], [build a LGPL licensed gst-libav])])
|
|
|
|
AM_CONDITIONAL(GST_LIBAV_ENABLE_LGPL, test "x$enable_lgpl" = "xyes")
|
2011-07-05 18:35:46 +00:00
|
|
|
if test "x$enable_lgpl" = "xyes"; then
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_DEFINE([GST_LIBAV_ENABLE_LGPL], [], [Defined if building a LGPL-only version of gst-libav])
|
2011-07-05 18:35:46 +00:00
|
|
|
fi
|
|
|
|
|
2006-04-01 15:41:27 +00:00
|
|
|
dnl *** configure external libs ***
|
2004-03-11 18:18:36 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
HAVE_LIBAV_UNINSTALLED=1
|
2006-12-14 23:31:45 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_ARG_WITH(system-libav,
|
|
|
|
[AC_HELP_STRING([--with-system-libav], [use system Libav libraries])])
|
2006-12-14 23:31:45 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
if test "x$with_system_libav" = "xyes"; then
|
|
|
|
PKG_CHECK_MODULES(LIBAV, libavformat libavcodec libavutil)
|
2009-06-01 15:24:53 +00:00
|
|
|
PKG_CHECK_MODULES(SWSCALE, libswscale libavutil)
|
2006-12-14 23:31:45 +00:00
|
|
|
saved_CPPFLAGS="$CPPFLAGS"
|
2012-04-12 17:41:52 +00:00
|
|
|
CPPFLAGS="$CPPFLAGS $LIBAV_CFLAGS"
|
2006-12-14 23:31:45 +00:00
|
|
|
AC_CHECK_HEADERS([avi.h])
|
|
|
|
CPPFLAGS="$saved_CPPFLAGS"
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_DEFINE([LIBAV_SOURCE], ["system install"], [Describes where the Libav libraries come from.])
|
|
|
|
HAVE_LIBAV_UNINSTALLED=0
|
2012-04-12 17:46:24 +00:00
|
|
|
AC_MSG_NOTICE([Using system-installed libav code])
|
2007-10-12 14:44:55 +00:00
|
|
|
AC_MSG_WARN([
|
|
|
|
======================================================================
|
2012-04-12 17:41:52 +00:00
|
|
|
WARNING: you have chosen to build gst-libav against a random
|
2011-04-19 17:27:40 +00:00
|
|
|
external version of Libav instead of building it against the tested
|
2012-04-12 17:41:52 +00:00
|
|
|
internal Libav snapshot that is included with gst-libav.
|
2007-10-12 14:44:55 +00:00
|
|
|
|
|
|
|
This is a very bad idea. So bad in fact that words cannot express
|
|
|
|
just how bad it is. Suffice to say that it is BAD.
|
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
The GStreamer developers cannot and will not support a gst-libav
|
2007-10-12 14:44:55 +00:00
|
|
|
built this way. Any bug reports that indicate there is an external
|
2011-04-19 17:27:40 +00:00
|
|
|
version of Libav involved will be closed immediately without further
|
2007-10-12 14:44:55 +00:00
|
|
|
investigation.
|
|
|
|
|
2011-04-19 17:27:40 +00:00
|
|
|
The reason such a setup can't be supported is that the Libav API
|
2007-10-12 14:44:55 +00:00
|
|
|
and ABI is in constant flux, yet there aren't any official releases
|
2011-04-19 17:27:40 +00:00
|
|
|
of the Libav library to develop against. This makes it impossible
|
2012-04-12 17:41:52 +00:00
|
|
|
to guarantee that gst-libav will work reliably, or even compile,
|
|
|
|
with a randomly picked version Libav. Even if gst-libav compiles
|
2007-10-12 14:44:55 +00:00
|
|
|
and superficially appears to work fine against your chosen external
|
2011-04-19 17:27:40 +00:00
|
|
|
Libav version, that might just not be the case on other systems, or
|
2007-10-12 14:44:55 +00:00
|
|
|
even the same system at a later time, or when using decoders,
|
|
|
|
encoders, demuxers or muxers that have not been tested.
|
|
|
|
|
2011-04-19 17:27:40 +00:00
|
|
|
Please do not create or distribute binary packages of gst-Libav
|
2012-04-12 17:41:52 +00:00
|
|
|
that link against an external libav. Thank you!
|
2007-10-12 14:44:55 +00:00
|
|
|
======================================================================
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl No, this is not too extreme, we want people to see and read the above
|
|
|
|
sleep 15
|
2006-12-14 23:31:45 +00:00
|
|
|
else
|
2007-12-17 12:43:06 +00:00
|
|
|
|
2011-04-19 17:27:40 +00:00
|
|
|
AC_MSG_NOTICE([Using local Libav snapshot])
|
2007-12-17 12:43:06 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
dnl libgstlibav.la: include dirs
|
2012-09-10 15:08:00 +00:00
|
|
|
LIBAV_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/libav \
|
2008-01-09 15:46:18 +00:00
|
|
|
-Wno-deprecated-declarations"
|
2007-12-17 12:43:06 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
dnl libgstlibav.la: libs to statically link to
|
|
|
|
LIBAV_LIBS="\$(top_builddir)/gst-libs/ext/libav/libavformat/libavformat.a \
|
2011-04-19 17:27:40 +00:00
|
|
|
\$(top_builddir)/gst-libs/ext/libav/libavcodec/libavcodec.a \
|
|
|
|
\$(top_builddir)/gst-libs/ext/libav/libavutil/libavutil.a"
|
2007-12-17 12:43:06 +00:00
|
|
|
|
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/libswscale/Makefile.am:
* ext/libswscale/gstffmpegscale.c:
(gst_ffmpegscale_method_get_type), (gst_ffmpegscale_base_init),
(gst_ffmpegscale_class_init), (gst_ffmpegscale_init),
(gst_ffmpegscale_reset), (gst_ffmpegscale_finalize),
(gst_ffmpegscale_caps_remove_format_info),
(gst_ffmpegscale_transform_caps), (gst_ffmpegscale_fixate_caps),
(gst_ffmpegscale_get_unit_size), (gst_ffmpeg_caps_to_pixfmt),
(gst_ffmpegscale_fill_info), (gst_ffmpegscale_set_caps),
(gst_ffmpegscale_transform), (gst_ffmpegscale_handle_src_event),
(gst_ffmpegscale_stop), (gst_ffmpegscale_set_property),
(gst_ffmpegscale_get_property), (gst_ffmpeg_log_callback),
(plugin_init):
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Fixes #504056.
2008-10-08 13:11:54 +00:00
|
|
|
dnl
|
2012-09-10 15:08:00 +00:00
|
|
|
SWSCALE_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/libav \
|
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/libswscale/Makefile.am:
* ext/libswscale/gstffmpegscale.c:
(gst_ffmpegscale_method_get_type), (gst_ffmpegscale_base_init),
(gst_ffmpegscale_class_init), (gst_ffmpegscale_init),
(gst_ffmpegscale_reset), (gst_ffmpegscale_finalize),
(gst_ffmpegscale_caps_remove_format_info),
(gst_ffmpegscale_transform_caps), (gst_ffmpegscale_fixate_caps),
(gst_ffmpegscale_get_unit_size), (gst_ffmpeg_caps_to_pixfmt),
(gst_ffmpegscale_fill_info), (gst_ffmpegscale_set_caps),
(gst_ffmpegscale_transform), (gst_ffmpegscale_handle_src_event),
(gst_ffmpegscale_stop), (gst_ffmpegscale_set_property),
(gst_ffmpegscale_get_property), (gst_ffmpeg_log_callback),
(plugin_init):
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Fixes #504056.
2008-10-08 13:11:54 +00:00
|
|
|
-Wno-deprecated-declarations"
|
|
|
|
|
|
|
|
dnl libgstswscale.la: libs to statically link to
|
2011-04-19 17:27:40 +00:00
|
|
|
SWSCALE_LIBS="\$(top_builddir)/gst-libs/ext/libav/libswscale/libswscale.a \
|
|
|
|
\$(top_builddir)/gst-libs/ext/libav/libavutil/libavutil.a"
|
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/libswscale/Makefile.am:
* ext/libswscale/gstffmpegscale.c:
(gst_ffmpegscale_method_get_type), (gst_ffmpegscale_base_init),
(gst_ffmpegscale_class_init), (gst_ffmpegscale_init),
(gst_ffmpegscale_reset), (gst_ffmpegscale_finalize),
(gst_ffmpegscale_caps_remove_format_info),
(gst_ffmpegscale_transform_caps), (gst_ffmpegscale_fixate_caps),
(gst_ffmpegscale_get_unit_size), (gst_ffmpeg_caps_to_pixfmt),
(gst_ffmpegscale_fill_info), (gst_ffmpegscale_set_caps),
(gst_ffmpegscale_transform), (gst_ffmpegscale_handle_src_event),
(gst_ffmpegscale_stop), (gst_ffmpegscale_set_property),
(gst_ffmpegscale_get_property), (gst_ffmpeg_log_callback),
(plugin_init):
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Fixes #504056.
2008-10-08 13:11:54 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
LIBAV_SUBDIRS=gst-libs
|
2006-12-14 23:31:45 +00:00
|
|
|
AC_DEFINE(HAVE_AVI_H)
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_DEFINE([LIBAV_SOURCE], ["local snapshot"], [Describes where the Libav libraries come from.])
|
2008-10-08 11:24:26 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_ARG_WITH(libav-extra-configure,
|
|
|
|
AC_HELP_STRING([--with-libav-extra-configure="xxx"],
|
|
|
|
[extra configure options for internal libav ./configure script]),,
|
|
|
|
with_libav=no)
|
2008-10-08 11:24:26 +00:00
|
|
|
|
2009-04-19 01:34:50 +00:00
|
|
|
# basic arguments
|
2012-04-12 17:41:52 +00:00
|
|
|
emblibav_configure_args="--prefix=$prefix"
|
2009-04-19 01:34:50 +00:00
|
|
|
|
2010-06-16 09:46:02 +00:00
|
|
|
# Enable pic and static so that we get .a files, but with PIC code.
|
2012-04-12 17:41:52 +00:00
|
|
|
emblibav_configure_args="$emblibav_configure_args --disable-avserver --disable-avplay\
|
2012-09-10 15:29:35 +00:00
|
|
|
--disable-avconv --disable-avprobe --enable-static --enable-pic \
|
2010-01-06 10:51:54 +00:00
|
|
|
--disable-encoder=flac --disable-decoder=cavs --disable-protocols --disable-devices\
|
2010-06-16 09:55:40 +00:00
|
|
|
--disable-network --disable-hwaccels --disable-filters --disable-doc\
|
|
|
|
--enable-optimizations"
|
2008-10-08 11:24:26 +00:00
|
|
|
|
2011-07-05 18:35:46 +00:00
|
|
|
if test "x$enable_lgpl" != "xyes"; then
|
2012-09-10 15:18:30 +00:00
|
|
|
emblibav_configure_args="$emblibav_configure_args --enable-gpl"
|
2011-07-05 18:35:46 +00:00
|
|
|
fi
|
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
# if we are cross-compiling, tell libav so
|
2011-06-05 02:10:15 +00:00
|
|
|
target_os=`echo $host_os | sed 's/-gnu//'`
|
2008-10-08 11:24:26 +00:00
|
|
|
if test "x$cross_compiling" = xyes; then
|
2012-04-12 17:41:52 +00:00
|
|
|
emblibav_configure_args="$emblibav_configure_args --enable-cross-compile \
|
2011-06-05 02:10:15 +00:00
|
|
|
--target-os=$target_os --arch=$host_cpu --cross-prefix=$host_alias-"
|
2008-10-08 11:24:26 +00:00
|
|
|
fi
|
|
|
|
|
2008-03-17 14:09:54 +00:00
|
|
|
case $host_os in
|
2012-04-12 17:41:52 +00:00
|
|
|
# Unfortunately, in Mac OS 10.5 the current rev of libav builds
|
2008-03-17 14:09:54 +00:00
|
|
|
# some non-PIC code into the .a file. See
|
|
|
|
# http://trac.macosforge.org/projects/macports/ticket/13725 for more
|
|
|
|
# info.
|
|
|
|
darwin*)
|
2012-04-12 17:41:52 +00:00
|
|
|
emblibav_configure_args="$emblibav_configure_args --disable-mmx --disable-altivec"
|
2008-03-17 14:09:54 +00:00
|
|
|
;;
|
2008-10-08 11:24:26 +00:00
|
|
|
mingw32*)
|
2012-04-12 17:41:52 +00:00
|
|
|
emblibav_configure_args="$emblibav_configure_args --enable-memalign-hack"
|
2008-10-08 11:24:26 +00:00
|
|
|
WIN32_LIBS="-lws2_32"
|
|
|
|
;;
|
2008-03-17 14:09:54 +00:00
|
|
|
*)
|
2008-10-08 11:24:26 +00:00
|
|
|
WIN32_LIBS=
|
2008-03-17 14:09:54 +00:00
|
|
|
;;
|
|
|
|
esac
|
2008-10-08 11:24:26 +00:00
|
|
|
|
2009-04-19 01:34:50 +00:00
|
|
|
dnl checks for extra enable/disable flags
|
2012-04-12 17:41:52 +00:00
|
|
|
LIBAV_OPTS="(cd $srcdir/gst-libs/ext/libav && ./configure --help)"
|
|
|
|
# Let's check if we can disable the building of the libav binary
|
|
|
|
can_disable=`echo "$LIBAV_OPTS" | grep 'disable-ffmpeg'`
|
2010-01-22 11:58:13 +00:00
|
|
|
if test "$can_disable" != ""; then
|
2012-04-12 17:41:52 +00:00
|
|
|
emblibav_configure_args="$emblibav_configure_args --disable-ffmpeg"
|
2009-04-19 01:34:50 +00:00
|
|
|
fi
|
|
|
|
dnl check if libswscale needs enabling explicitly
|
2012-04-12 17:41:52 +00:00
|
|
|
can_enable=`echo "$LIBAV_OPTS" | grep 'enable-swscale'`
|
2010-01-22 11:58:13 +00:00
|
|
|
if test "$can_enable" != ""; then
|
2012-04-12 17:41:52 +00:00
|
|
|
emblibav_configure_args="$emblibav_configure_args --enable-swscale"
|
2009-04-19 01:34:50 +00:00
|
|
|
fi
|
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
# append extra configure options to emblibav_configure_args if needed
|
|
|
|
if test "x$with_libav_extra_configure" != "xno"; then
|
|
|
|
emblibav_configure_args="$emblibav_configure_args $with_libav_extra_configure"
|
2008-10-08 11:24:26 +00:00
|
|
|
fi
|
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_SUBST(LIBAV_CO_DIR)
|
|
|
|
AC_SUBST(LIBAV_SVN)
|
|
|
|
AC_SUBST(LIBAV_REVISION)
|
|
|
|
AC_SUBST(LIBAV_EXTERNALS_REVISION)
|
|
|
|
AC_CONFIG_COMMANDS([configure-embedded-libav],
|
|
|
|
[echo "Configuring included Libav instance with args $emblibav_configure_args"
|
2009-04-19 01:34:50 +00:00
|
|
|
origdir=`pwd`
|
|
|
|
dnl Don't put path on the configure call when not needed, as FFmpeg's configure relies on it
|
|
|
|
dnl to detect out-of-tree builds
|
|
|
|
if test -z "$srcdir" -o "$srcdir" = .; then
|
|
|
|
confcmd=./configure
|
|
|
|
else
|
2011-01-27 21:25:13 +00:00
|
|
|
confcmd="$ac_abs_top_srcdir"/gst-libs/ext/libav/configure
|
2009-04-19 01:34:50 +00:00
|
|
|
fi
|
|
|
|
|
2011-04-19 17:27:40 +00:00
|
|
|
AS_MKDIR_P(["$ac_top_build_prefix"gst-libs/ext/libav])
|
|
|
|
cd "$ac_top_build_prefix"gst-libs/ext/libav &&
|
2012-04-12 17:41:52 +00:00
|
|
|
eval "$confcmd $emblibav_configure_args" ||
|
2011-04-19 17:27:40 +00:00
|
|
|
AC_MSG_ERROR([Failed to configure embedded Libav tree])
|
2009-04-19 01:34:50 +00:00
|
|
|
cd "$origdir"
|
|
|
|
],
|
2012-04-12 17:41:52 +00:00
|
|
|
[emblibav_configure_args="$emblibav_configure_args"])
|
2011-04-19 17:27:40 +00:00
|
|
|
AC_MSG_NOTICE([Using included Libav code])
|
2006-12-14 23:31:45 +00:00
|
|
|
fi
|
2007-12-17 12:43:06 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
AC_SUBST(LIBAV_CFLAGS)
|
|
|
|
AC_SUBST(LIBAV_LIBS)
|
|
|
|
AC_SUBST(LIBAV_SUBDIRS)
|
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/libswscale/Makefile.am:
* ext/libswscale/gstffmpegscale.c:
(gst_ffmpegscale_method_get_type), (gst_ffmpegscale_base_init),
(gst_ffmpegscale_class_init), (gst_ffmpegscale_init),
(gst_ffmpegscale_reset), (gst_ffmpegscale_finalize),
(gst_ffmpegscale_caps_remove_format_info),
(gst_ffmpegscale_transform_caps), (gst_ffmpegscale_fixate_caps),
(gst_ffmpegscale_get_unit_size), (gst_ffmpeg_caps_to_pixfmt),
(gst_ffmpegscale_fill_info), (gst_ffmpegscale_set_caps),
(gst_ffmpegscale_transform), (gst_ffmpegscale_handle_src_event),
(gst_ffmpegscale_stop), (gst_ffmpegscale_set_property),
(gst_ffmpegscale_get_property), (gst_ffmpeg_log_callback),
(plugin_init):
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Fixes #504056.
2008-10-08 13:11:54 +00:00
|
|
|
AC_SUBST(SWSCALE_CFLAGS)
|
|
|
|
AC_SUBST(SWSCALE_LIBS)
|
2008-10-08 11:24:26 +00:00
|
|
|
AC_SUBST(WIN32_LIBS)
|
2008-05-13 15:07:25 +00:00
|
|
|
|
2012-04-12 17:41:52 +00:00
|
|
|
if test x$HAVE_LIBAV_UNINSTALLED = x1; then
|
|
|
|
AC_DEFINE(HAVE_LIBAV_UNINSTALLED, [], [Defined if building against uninstalled Libav source])
|
2008-05-13 15:07:25 +00:00
|
|
|
fi
|
2012-04-12 17:41:52 +00:00
|
|
|
AM_CONDITIONAL(HAVE_LIBAV_UNINSTALLED, test x$HAVE_LIBAV_UNINSTALLED = x1)
|
2007-01-05 16:04:12 +00:00
|
|
|
|
2003-12-09 15:59:48 +00:00
|
|
|
AC_CONFIG_FILES(
|
|
|
|
Makefile
|
2009-02-22 20:04:07 +00:00
|
|
|
common/Makefile
|
|
|
|
common/m4/Makefile
|
2012-04-12 17:41:52 +00:00
|
|
|
gst-libav.spec
|
2003-12-09 15:59:48 +00:00
|
|
|
ext/Makefile
|
2012-09-10 15:53:54 +00:00
|
|
|
ext/libav/Makefile
|
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/libswscale/Makefile.am:
* ext/libswscale/gstffmpegscale.c:
(gst_ffmpegscale_method_get_type), (gst_ffmpegscale_base_init),
(gst_ffmpegscale_class_init), (gst_ffmpegscale_init),
(gst_ffmpegscale_reset), (gst_ffmpegscale_finalize),
(gst_ffmpegscale_caps_remove_format_info),
(gst_ffmpegscale_transform_caps), (gst_ffmpegscale_fixate_caps),
(gst_ffmpegscale_get_unit_size), (gst_ffmpeg_caps_to_pixfmt),
(gst_ffmpegscale_fill_info), (gst_ffmpegscale_set_caps),
(gst_ffmpegscale_transform), (gst_ffmpegscale_handle_src_event),
(gst_ffmpegscale_stop), (gst_ffmpegscale_set_property),
(gst_ffmpegscale_get_property), (gst_ffmpeg_log_callback),
(plugin_init):
Rewrite ffvideoscale using libswscale and put into a separate plugin.
Fixes #504056.
2008-10-08 13:11:54 +00:00
|
|
|
ext/libswscale/Makefile
|
2003-12-09 15:59:48 +00:00
|
|
|
gst-libs/Makefile
|
|
|
|
gst-libs/ext/Makefile
|
2006-01-31 08:55:57 +00:00
|
|
|
docs/Makefile
|
2006-02-01 19:22:04 +00:00
|
|
|
docs/version.entities
|
2006-05-09 16:15:39 +00:00
|
|
|
tests/Makefile
|
|
|
|
tests/check/Makefile
|
2009-07-28 22:21:11 +00:00
|
|
|
tests/files/Makefile
|
2003-12-09 15:59:48 +00:00
|
|
|
)
|
|
|
|
AC_OUTPUT
|
2007-10-12 14:44:55 +00:00
|
|
|
|
2010-06-14 12:38:44 +00:00
|
|
|
ORC_OUTPUT
|