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
|
2006-03-31 11:13:50 +00:00
|
|
|
AS_VERSION(gst-plugins-ugly, GST_PLUGINS_UGLY_VERSION, 0, 10, 3, 1,
|
2005-08-31 17:57:35 +00:00
|
|
|
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:04 +00:00
|
|
|
|
|
|
|
dnl our libraries and install dirs use major.minor as a version
|
2005-08-31 17:57:35 +00:00
|
|
|
GST_MAJORMINOR=$GST_PLUGINS_UGLY_VERSION_MAJOR.$GST_PLUGINS_UGLY_VERSION_MINOR
|
2005-02-22 16:48:58 +00:00
|
|
|
dnl we override it here if we need to for the release candidate of new series
|
2005-12-01 19:14:57 +00:00
|
|
|
GST_MAJORMINOR=0.10
|
2002-12-08 14:50:04 +00:00
|
|
|
AC_SUBST(GST_MAJORMINOR)
|
|
|
|
|
2006-03-27 10:09:43 +00:00
|
|
|
AS_LIBTOOL_TAGS
|
2004-02-04 21:30:15 +00:00
|
|
|
AM_PROG_LIBTOOL
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2006-01-11 11:44:02 +00:00
|
|
|
dnl *** required versions of GStreamer stuff ***
|
2006-02-17 15:08:28 +00:00
|
|
|
GST_REQ=0.10.3
|
|
|
|
GSTPB_REQ=0.10.3
|
2006-01-11 11:44:02 +00:00
|
|
|
|
2005-08-31 17:57:35 +00:00
|
|
|
AC_CONFIG_SRCDIR([ext/mad/gstmad.c])
|
2002-02-06 18:18:16 +00:00
|
|
|
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
|
|
|
|
|
2005-07-18 15:44:48 +00:00
|
|
|
dnl the gettext stuff needed
|
2005-08-31 17:57:35 +00:00
|
|
|
dnl AM_GNU_GETTEXT_VERSION(0.11.5)
|
|
|
|
dnl AM_GNU_GETTEXT([external])
|
2005-07-08 10:47:28 +00:00
|
|
|
|
2005-08-31 17:57:35 +00:00
|
|
|
dnl GETTEXT_PACKAGE=gst-plugins-ugly-$GST_MAJORMINOR
|
|
|
|
dnl AC_SUBST(GETTEXT_PACKAGE)
|
|
|
|
dnl AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE",
|
|
|
|
dnl [gettext package name])
|
2005-07-08 10:47:28 +00:00
|
|
|
|
|
|
|
dnl define LOCALEDIR in config.h
|
2005-08-31 17:57:35 +00:00
|
|
|
dnl AS_AC_EXPAND(LOCALEDIR, $datadir/locale)
|
|
|
|
dnl AC_DEFINE_UNQUOTED([LOCALEDIR], "$LOCALEDIR",
|
|
|
|
dnl [gettext locale dir])
|
2005-05-06 10:02:52 +00:00
|
|
|
|
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:23 +00:00
|
|
|
AC_C_INLINE
|
2005-10-19 09:47:31 +00:00
|
|
|
|
|
|
|
dnl used by ext/a52dec
|
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
|
|
|
|
|
|
|
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}])
|
|
|
|
|
2005-10-19 12:43:28 +00:00
|
|
|
GST_DOCBOOK_CHECK()
|
2004-02-13 13:09:27 +00:00
|
|
|
dnl check architecture
|
|
|
|
GST_ARCH()
|
|
|
|
|
2004-07-28 12:15:24 +00:00
|
|
|
dnl check for gstreamer
|
|
|
|
dnl uninstalled is selected preferentially -- see pkg-config(1)
|
2004-04-15 15:16:31 +00:00
|
|
|
PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ,
|
2002-02-16 17:53:57 +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:04 +00:00
|
|
|
GST_TOOLS_DIR=`pkg-config --variable=toolsdir gstreamer-$GST_MAJORMINOR`
|
2002-02-16 17:53:57 +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)
|
|
|
|
|
2005-05-05 16:35:52 +00:00
|
|
|
dnl check for gstreamer-base; uninstalled is selected preferentially
|
|
|
|
PKG_CHECK_MODULES(GST_BASE, gstreamer-base-$GST_MAJORMINOR >= $GST_REQ,
|
|
|
|
HAVE_GST_BASE="yes", HAVE_GST_BASE="no")
|
|
|
|
|
|
|
|
if test "x$HAVE_GST_BASE" = "xno"; then
|
|
|
|
AC_MSG_ERROR(no GStreamer Base Libs found)
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_SUBST(GST_BASE_LIBS)
|
2005-05-06 19:11:14 +00:00
|
|
|
AC_SUBST(GST_BASE_CFLAGS)
|
2005-05-05 16:35:52 +00:00
|
|
|
|
2005-07-01 09:25:58 +00:00
|
|
|
dnl check for gstreamer-plugins-base; uinstalled is selected preferentially
|
2005-06-30 13:19:36 +00:00
|
|
|
PKG_CHECK_MODULES(GST_PLUGINS_BASE,
|
2006-01-11 11:44:02 +00:00
|
|
|
gstreamer-plugins-base-$GST_MAJORMINOR >= $GSTPB_REQ,
|
2005-06-30 13:19:36 +00:00
|
|
|
HAVE_GST_PLUGINS_BASE="yes", HAVE_GST_PLUGINS_BASE="no")
|
2005-05-06 18:00:56 +00:00
|
|
|
|
2005-06-30 13:19:36 +00:00
|
|
|
if test "x$HAVE_GST_PLUGINS_BASE" = "xno"; then
|
|
|
|
AC_MSG_ERROR(no GStreamer Base Plugins development files found)
|
2005-05-06 18:00:56 +00:00
|
|
|
fi
|
|
|
|
|
2005-06-30 13:19:36 +00:00
|
|
|
AC_SUBST(GST_PLUGINS_BASE_LIBS)
|
|
|
|
AC_SUBST(GST_PLUGINS_BASE_CFLAGS)
|
2005-05-05 16:35:52 +00:00
|
|
|
|
2001-12-17 18:37:01 +00:00
|
|
|
dnl Determine endianness
|
|
|
|
AC_C_BIGENDIAN
|
|
|
|
|
|
|
|
dnl Check for essential libraries first:
|
|
|
|
dnl ====================================
|
|
|
|
|
2005-10-16 17:06:42 +00:00
|
|
|
GST_GLIB_CHECK([2.6.0])
|
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-12-16 16:58:59 +00:00
|
|
|
|
2004-02-20 15:49:27 +00:00
|
|
|
# we set the defaults always to make sure we have non-empty variables
|
|
|
|
# for the Makefile
|
|
|
|
|
2005-08-16 16:12:15 +00:00
|
|
|
PKG_CHECK_MODULES(LIBOIL, liboil-0.3 >= 0.3.0, 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:49 +00:00
|
|
|
AC_SUBST(LIBOIL_CFLAGS)
|
|
|
|
AC_SUBST(LIBOIL_LIBS)
|
|
|
|
if test "x${HAVE_LIBOIL}" = xyes ; then
|
2005-08-31 17:57:35 +00:00
|
|
|
AC_DEFINE_UNQUOTED(HAVE_LIBOIL, 1, [Define if liboil is being used])
|
Convert a few inner loops to use liboil. This is currently optional, and is only enabled if liboil is present (duh!).
Original commit message from CVS:
Convert a few inner loops to use liboil. This is currently
optional, and is only enabled if liboil is present (duh!).
* configure.ac: Check for liboil-0.1
* gst/intfloat/Makefile.am:
* gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
(gst_int2float_chain_gint16):
* gst/videofilter/Makefile.am:
* gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
(tablelookup_u8), (gst_videobalance_planar411):
* gst/videotestsrc/Makefile.am:
* gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
* gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
(paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
(paint_hline_RGB565), (paint_hline_xRGB1555):
2004-02-12 07:37:49 +00:00
|
|
|
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)
|
|
|
|
|
2005-11-14 17:13:20 +00:00
|
|
|
GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '[_]*(gst_|Gst|GST_).*' $GST_LIBS -no-undefined"
|
2002-01-18 02:05:25 +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
|
2005-05-06 11:12:18 +00:00
|
|
|
GST_PLUGINS_ALL="\
|
asfdemux ported to 0.10. Does still need a bit of work (seems like there's something funky going on when timestamping...
Original commit message from CVS:
* configure.ac:
* gst/asfdemux/asfheaders.c: (gst_asf_identify_guid),
(gst_asf_get_guid_nick):
* gst/asfdemux/asfheaders.h:
* gst/asfdemux/gstasf.c: (plugin_init):
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
(gst_asf_demux_class_init), (gst_asf_demux_init),
(gst_asf_demux_sink_event), (gst_asf_demux_handle_seek_event),
(gst_asf_demux_handle_src_event),
(gst_asf_demux_get_current_offset), (gst_asf_demux_chain),
(gst_asf_demux_skip_bytes), (gst_asf_demux_identify_guid),
(gst_asf_demux_get_uint8), (gst_asf_demux_get_uint16),
(gst_asf_demux_get_uint32), (gst_asf_demux_get_uint64),
(gst_asf_demux_get_var_length), (gst_asf_demux_get_buffer),
(gst_asf_demux_get_bytes), (gst_asf_demux_get_string),
(gst_asf_demux_get_guid), (gst_asf_demux_get_obj_file),
(gst_asf_demux_get_bitrate_record),
(gst_asf_demux_get_obj_comment), (gst_asf_demux_get_obj_header),
(gst_asf_demux_get_obj_header_ext), (gst_asf_demux_get_obj_stream),
(gst_asf_demux_get_replicated_data), (gst_asf_demux_get_obj_data),
(gst_asf_demux_get_obj_data_correction),
(gst_asf_demux_get_stream_audio),
(gst_asf_demux_get_stream_correction),
(gst_asf_demux_get_stream_video),
(gst_asf_demux_get_stream_video_format),
(gst_asf_demux_get_stream), (gst_asf_demux_setup_pad),
(gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream),
(gst_asf_demux_process_stream),
(gst_asf_demux_get_gst_tag_from_tag_name),
(gst_asf_demux_commit_taglist),
(gst_asf_demux_process_ext_content_desc),
(gst_asf_demux_get_object_header), (gst_asf_demux_process_data),
(gst_asf_demux_process_header), (gst_asf_demux_process_file),
(gst_asf_demux_process_comment),
(gst_asf_demux_process_bitrate_props_object),
(gst_asf_demux_process_header_ext), (gst_asf_demux_process_object),
(gst_asf_demux_descramble_segment),
(gst_asf_demux_element_send_event),
(gst_asf_demux_send_event_unlocked), (gst_asf_demux_push_buffer),
(gst_asf_demux_process_chunk), (gst_asf_demux_process_segment),
(gst_asf_demux_handle_data), (gst_asf_demux_parse_data),
(gst_asf_demux_get_src_query_types),
(gst_asf_demux_handle_src_query), (gst_asf_demux_change_state):
* gst/asfdemux/gstasfdemux.h:
asfdemux ported to 0.10. Does still need a bit of work (seems like
there's something funky going on when timestamping video frames).
The seeking code is likely to make Wim cry, but hey, at least it
compiles.
2006-02-15 15:48:07 +00:00
|
|
|
asfdemux \
|
2005-08-31 17:57:35 +00:00
|
|
|
dvdlpcmdec \
|
Port dvdsubdec to 0.10
Original commit message from CVS:
* configure.ac:
* gst/dvdsub/Makefile.am:
* gst/dvdsub/gstdvdsubdec.c: (gst_dvd_sub_dec_base_init),
(gst_dvd_sub_dec_class_init), (gst_dvd_sub_dec_init),
(gst_dvd_sub_dec_finalize), (gst_dvd_sub_dec_src_event),
(gst_dvd_sub_dec_get_event_delay), (gst_dvd_sub_dec_parse_subpic),
(gst_get_nibble), (gst_setup_palette), (gst_get_rle_code),
(gst_draw_rle_line), (gst_dvd_sub_dec_merge_title),
(gst_send_empty_fill), (gst_send_subtitle_frame),
(gst_dvd_sub_dec_advance_time), (gst_dvd_sub_dec_chain),
(gst_dvd_sub_dec_sink_event), (gst_dvd_sub_dec_handle_dvd_event),
(plugin_init):
* gst/dvdsub/gstdvdsubdec.h:
Port dvdsubdec to 0.10
2006-02-22 14:54:54 +00:00
|
|
|
dvdsub \
|
2005-11-14 21:20:21 +00:00
|
|
|
iec958 \
|
2005-08-24 13:34:05 +00:00
|
|
|
mpegaudioparse \
|
2005-11-14 21:20:21 +00:00
|
|
|
mpegstream \
|
2005-06-27 09:16:09 +00:00
|
|
|
realmedia \
|
2005-07-04 14:02:46 +00:00
|
|
|
"
|
2002-08-07 00:22:04 +00:00
|
|
|
|
|
|
|
dnl see if we can build C++ plug-ins
|
|
|
|
if test "x$HAVE_CXX" = "xyes"; then
|
2005-05-05 09:10:38 +00:00
|
|
|
GST_PLUGINS_ALL="$GST_PLUGINS_ALL"
|
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
|
|
|
|
2005-05-07 18:50:39 +00:00
|
|
|
dnl ###########################
|
|
|
|
dnl # Configure external libs #
|
|
|
|
dnl ###########################
|
|
|
|
|
2005-10-20 09:00:30 +00:00
|
|
|
dnl *** a52dec ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_A52DEC, true)
|
|
|
|
GST_CHECK_FEATURE(A52DEC, [a52dec], a52dec, [
|
|
|
|
AC_CHECK_A52DEC(HAVE_A52DEC=yes, HAVE_A52DEC=no)
|
|
|
|
])
|
|
|
|
|
2005-07-19 20:51:16 +00:00
|
|
|
dnl *** AMR-NB ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_AMRNB, true)
|
|
|
|
GST_CHECK_FEATURE(AMRNB, [AMR-NB], amrnbdec amrnbenc, [
|
|
|
|
GST_CHECK_LIBHEADER(AMRNB, amrnb,
|
|
|
|
Decoder_Interface_init, -lm,
|
|
|
|
amrnb/interf_dec.h,
|
|
|
|
AMRNB_LIBS="-lamrnb -lm"
|
|
|
|
AC_SUBST(AMRNB_LIBS))
|
|
|
|
])
|
|
|
|
|
2006-02-09 17:27:57 +00:00
|
|
|
dnl *** dvdread ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DVDREAD, true)
|
|
|
|
GST_CHECK_FEATURE(DVDREAD, [dvdread library], dvdreadsrc, [
|
|
|
|
GST_CHECK_LIBHEADER(DVDREAD, dvdread, DVDOpen, , dvdread/dvd_reader.h, DVDREAD_LIBS="-ldvdread")
|
|
|
|
AC_SUBST(DVDREAD_LIBS)
|
|
|
|
])
|
2005-07-19 20:51:16 +00:00
|
|
|
|
dvdnavsrc ported to 0.10, for the most part at least. Not quite ready for prime time yet though.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/dvdnav/Makefile.am:
* ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_base_init),
(gst_dvd_nav_src_class_init), (gst_dvd_nav_src_check_get_range),
(gst_dvd_nav_src_init), (gst_dvd_nav_src_finalize),
(gst_dvd_nav_src_is_open), (gst_dvd_nav_src_set_property),
(gst_dvd_nav_src_get_property), (gst_dvd_nav_src_set_clock),
(gst_dvd_nav_src_tca_seek), (gst_dvd_nav_src_update_streaminfo),
(gst_dvd_nav_src_set_domain), (gst_dvd_nav_src_update_highlight),
(gst_dvd_nav_src_user_op), (dvdnav_get_event_name),
(dvdnav_get_read_domain_name), (gst_dvd_nav_src_print_event),
(gst_dvd_nav_src_make_dvd_event),
(gst_dvd_nav_src_structure_set_uint64),
(gst_dvd_nav_src_push_dvd_nav_packet_event),
(gst_dvd_nav_src_push_clut_change_event), (read_vts_info),
(gst_dvd_nav_src_push_titlelang_event),
(gst_dvd_nav_src_process_next_block), (gst_dvd_nav_src_create),
(gst_dvd_nav_src_start), (gst_dvd_nav_src_stop),
(gst_dvd_nav_src_handle_navigation_event),
(gst_dvd_nav_src_handle_seek_event), (gst_dvd_nav_src_src_event),
(gst_dvd_nav_src_query_position), (gst_dvd_nav_src_query_duration),
(gst_dvd_nav_src_query), (gst_dvd_nav_src_uri_get_type),
(gst_dvd_nav_src_uri_get_protocols), (gst_dvd_nav_src_uri_get_uri),
(gst_dvd_nav_src_uri_set_uri), (gst_dvd_nav_src_uri_handler_init),
(gst_dvd_nav_src_do_init), (plugin_init):
dvdnavsrc ported to 0.10, for the most part at least. Not quite
ready for prime time yet though.
2006-02-26 17:55:05 +00:00
|
|
|
dnl *** dvdnav ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DVDNAV, true)
|
|
|
|
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)
|
|
|
|
if test x"$HAVE_DVDNAV" = x"yes"; then
|
|
|
|
dnl check version
|
|
|
|
DVDNAV_VERSION=`dvdnav-config --version|head -n 1|sed 's/^.*) //'|sed 's/ (.*)//'`
|
|
|
|
DVDNAV_MAJOR=`echo $DVDNAV_VERSION | cut -d. -f1 | sed s/[a-zA-Z\-].*//g`
|
|
|
|
DVDNAV_MINOR=`echo $DVDNAV_VERSION | cut -d. -f2 | sed s/[a-zA-Z\-].*//g`
|
|
|
|
DVDNAV_MICRO=`echo $DVDNAV_VERSION | cut -d. -f3 | sed s/[a-zA-Z\-].*//g`
|
|
|
|
if [[ "$DVDNAV_MAJOR" -eq "0" ]] && \
|
|
|
|
[[ "$DVDNAV_MINOR" -lt "1" ]]; then
|
|
|
|
AC_MSG_WARN([libdvdnav >= 0.1.7 is required, you have $DVDNAV_VERSION])
|
|
|
|
HAVE_DVDNAV="no"
|
|
|
|
elif [[ "$DVDNAV_MAJOR" -eq "0" ]] && \
|
|
|
|
[[ "$DVDNAV_MINOR" -eq "1" ]] && \
|
|
|
|
[[ "$DVDNAV_MICRO" -lt "7" ]]; then
|
|
|
|
AC_MSG_WARN([libdvdnav >= 0.1.7 is required, you have $DVDNAV_VERSION])
|
|
|
|
HAVE_DVDNAV="no"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
dnl now check for dvdread/nav_print.h - see #133002
|
|
|
|
AC_CHECK_HEADER(dvdread/nav_print.h, , [
|
|
|
|
AC_MSG_WARN([header dvdread/nav_print.h from dvdread missing])
|
|
|
|
HAVE_DVDNAV="no"
|
|
|
|
])
|
|
|
|
AS_SCRUB_INCLUDE(DVDNAV_CFLAGS)
|
2006-02-26 18:01:15 +00:00
|
|
|
|
|
|
|
dnl disabled until plugin is fully functional
|
|
|
|
HAVE_DVDNAV=no
|
|
|
|
], disabled, , [
|
|
|
|
AC_MSG_NOTICE([dvdnavsrc not stable yet, not building])
|
dvdnavsrc ported to 0.10, for the most part at least. Not quite ready for prime time yet though.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/dvdnav/Makefile.am:
* ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_base_init),
(gst_dvd_nav_src_class_init), (gst_dvd_nav_src_check_get_range),
(gst_dvd_nav_src_init), (gst_dvd_nav_src_finalize),
(gst_dvd_nav_src_is_open), (gst_dvd_nav_src_set_property),
(gst_dvd_nav_src_get_property), (gst_dvd_nav_src_set_clock),
(gst_dvd_nav_src_tca_seek), (gst_dvd_nav_src_update_streaminfo),
(gst_dvd_nav_src_set_domain), (gst_dvd_nav_src_update_highlight),
(gst_dvd_nav_src_user_op), (dvdnav_get_event_name),
(dvdnav_get_read_domain_name), (gst_dvd_nav_src_print_event),
(gst_dvd_nav_src_make_dvd_event),
(gst_dvd_nav_src_structure_set_uint64),
(gst_dvd_nav_src_push_dvd_nav_packet_event),
(gst_dvd_nav_src_push_clut_change_event), (read_vts_info),
(gst_dvd_nav_src_push_titlelang_event),
(gst_dvd_nav_src_process_next_block), (gst_dvd_nav_src_create),
(gst_dvd_nav_src_start), (gst_dvd_nav_src_stop),
(gst_dvd_nav_src_handle_navigation_event),
(gst_dvd_nav_src_handle_seek_event), (gst_dvd_nav_src_src_event),
(gst_dvd_nav_src_query_position), (gst_dvd_nav_src_query_duration),
(gst_dvd_nav_src_query), (gst_dvd_nav_src_uri_get_type),
(gst_dvd_nav_src_uri_get_protocols), (gst_dvd_nav_src_uri_get_uri),
(gst_dvd_nav_src_uri_set_uri), (gst_dvd_nav_src_uri_handler_init),
(gst_dvd_nav_src_do_init), (plugin_init):
dvdnavsrc ported to 0.10, for the most part at least. Not quite
ready for prime time yet though.
2006-02-26 17:55:05 +00:00
|
|
|
])
|
|
|
|
|
2005-08-16 16:12:15 +00:00
|
|
|
dnl *** lame ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_LAME, true)
|
|
|
|
GST_CHECK_FEATURE(LAME, [lame mp3 encoder library], lame, [
|
|
|
|
GST_CHECK_LIBHEADER(LAME, mp3lame, lame_init, -lm, lame/lame.h,
|
|
|
|
[
|
|
|
|
HAVE_LAME="yes"
|
|
|
|
LAME_LIBS="-lmp3lame -lm"
|
|
|
|
dnl is lame presets available
|
|
|
|
LAME_CFLAGS=""
|
|
|
|
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=""]
|
|
|
|
)
|
|
|
|
AC_SUBST(LAME_CFLAGS)
|
|
|
|
AC_SUBST(LAME_LIBS)
|
|
|
|
])
|
|
|
|
])
|
2005-07-19 20:51:16 +00:00
|
|
|
|
2006-02-27 18:37:47 +00:00
|
|
|
dnl *** id3tag from the MAD project ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_ID3TAG, true)
|
|
|
|
GST_CHECK_FEATURE(ID3TAG, [id3tag reading and writing from the MAD project], id3tag, [
|
2005-05-06 11:04:30 +00:00
|
|
|
dnl check with pkg-config first
|
2006-02-27 18:37:47 +00:00
|
|
|
PKG_CHECK_MODULES(ID3TAG, id3tag >= 0.15, HAVE_ID3TAG="yes", HAVE_ID3TAG="no")
|
|
|
|
if test "x$HAVE_ID3TAG" = "xno"; then
|
2005-05-06 11:04:30 +00:00
|
|
|
dnl fall back to oldskool detection
|
2006-02-27 18:37:47 +00:00
|
|
|
AC_CHECK_HEADER(id3tag.h, [
|
2005-05-06 11:04:30 +00:00
|
|
|
save_LIBS=$LIBS
|
|
|
|
LIBS="-lz"
|
2006-02-27 18:37:47 +00:00
|
|
|
AC_CHECK_LIB(id3tag, id3_tag_options, HAVE_ID3TAG="yes" ID3TAG_LIBS="-lid3tag -lz")
|
2005-05-06 11:04:30 +00:00
|
|
|
LIBS=$save_LIBS
|
2006-02-27 18:37:47 +00:00
|
|
|
])
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
AC_SUBST(ID3TAG_LIBS)
|
|
|
|
|
|
|
|
dnl *** mad ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MAD, true)
|
|
|
|
GST_CHECK_FEATURE(MAD, [mad mp3 decoder], mad, [
|
|
|
|
if test "x$HAVE_ID3TAG" = "xyes"; then
|
|
|
|
dnl check with pkg-config first
|
|
|
|
PKG_CHECK_MODULES(MAD, mad >= 0.15 id3tag >= 0.15, HAVE_MAD="yes", HAVE_MAD="no")
|
|
|
|
if test "x$HAVE_MAD" = "xno"; then
|
|
|
|
dnl fall back to oldskool detection
|
|
|
|
AC_CHECK_HEADER(mad.h, [
|
|
|
|
AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad $ID3TAG_LIBS")
|
|
|
|
])
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
HAVE_MAD="no"
|
|
|
|
AC_MSG_WARN([libid3tag was not available, cannot build MAD MP3 decoder plugin])
|
|
|
|
fi
|
2005-05-06 11:04:30 +00:00
|
|
|
])
|
|
|
|
AC_SUBST(MAD_LIBS)
|
2001-12-17 18:37:01 +00:00
|
|
|
|
2005-07-19 20:51:16 +00:00
|
|
|
dnl *** mpeg2dec ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_MPEG2DEC, true)
|
|
|
|
GST_CHECK_FEATURE(MPEG2DEC, [mpeg2dec], mpeg2dec, [
|
|
|
|
PKG_CHECK_MODULES(MPEG2DEC, libmpeg2 >= 0.4.0,
|
|
|
|
HAVE_MPEG2DEC="yes", HAVE_MPEG2DEC="no")
|
|
|
|
AC_SUBST(MPEG2DEC_CFLAGS)
|
|
|
|
AC_SUBST(MPEG2DEC_LIBS)
|
|
|
|
])
|
|
|
|
|
2005-08-25 09:30:23 +00:00
|
|
|
dnl *** sidplay : works with libsidplay 1.36.x (not 2.x.x) ***
|
|
|
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SIDPLAY, true)
|
|
|
|
GST_CHECK_FEATURE(SIDPLAY, [sidplay plug-in], sidplay, [
|
|
|
|
GST_PATH_SIDPLAY()
|
2005-08-02 11:42:33 +00:00
|
|
|
])
|
|
|
|
|
2005-07-05 15:26:56 +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"
|
2005-06-29 16:14:30 +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
|
|
|
|
2005-08-31 18:33:08 +00:00
|
|
|
dnl ######################
|
|
|
|
dnl # Checks for gtk-doc #
|
|
|
|
dnl ######################
|
|
|
|
|
|
|
|
GTK_DOC_CHECK([1.3])
|
2005-09-04 19:28:29 +00:00
|
|
|
AS_PATH_PYTHON([2.1])
|
2005-08-31 18:33:08 +00:00
|
|
|
|
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 #########################
|
|
|
|
|
2005-08-31 17:57:35 +00:00
|
|
|
dnl po/Makefile.in
|
|
|
|
|
2002-02-08 20:12:28 +00:00
|
|
|
AC_CONFIG_FILES(
|
2001-12-17 18:37:01 +00:00
|
|
|
Makefile
|
2001-12-21 11:46:15 +00:00
|
|
|
gst/Makefile
|
asfdemux ported to 0.10. Does still need a bit of work (seems like there's something funky going on when timestamping...
Original commit message from CVS:
* configure.ac:
* gst/asfdemux/asfheaders.c: (gst_asf_identify_guid),
(gst_asf_get_guid_nick):
* gst/asfdemux/asfheaders.h:
* gst/asfdemux/gstasf.c: (plugin_init):
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
(gst_asf_demux_class_init), (gst_asf_demux_init),
(gst_asf_demux_sink_event), (gst_asf_demux_handle_seek_event),
(gst_asf_demux_handle_src_event),
(gst_asf_demux_get_current_offset), (gst_asf_demux_chain),
(gst_asf_demux_skip_bytes), (gst_asf_demux_identify_guid),
(gst_asf_demux_get_uint8), (gst_asf_demux_get_uint16),
(gst_asf_demux_get_uint32), (gst_asf_demux_get_uint64),
(gst_asf_demux_get_var_length), (gst_asf_demux_get_buffer),
(gst_asf_demux_get_bytes), (gst_asf_demux_get_string),
(gst_asf_demux_get_guid), (gst_asf_demux_get_obj_file),
(gst_asf_demux_get_bitrate_record),
(gst_asf_demux_get_obj_comment), (gst_asf_demux_get_obj_header),
(gst_asf_demux_get_obj_header_ext), (gst_asf_demux_get_obj_stream),
(gst_asf_demux_get_replicated_data), (gst_asf_demux_get_obj_data),
(gst_asf_demux_get_obj_data_correction),
(gst_asf_demux_get_stream_audio),
(gst_asf_demux_get_stream_correction),
(gst_asf_demux_get_stream_video),
(gst_asf_demux_get_stream_video_format),
(gst_asf_demux_get_stream), (gst_asf_demux_setup_pad),
(gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream),
(gst_asf_demux_process_stream),
(gst_asf_demux_get_gst_tag_from_tag_name),
(gst_asf_demux_commit_taglist),
(gst_asf_demux_process_ext_content_desc),
(gst_asf_demux_get_object_header), (gst_asf_demux_process_data),
(gst_asf_demux_process_header), (gst_asf_demux_process_file),
(gst_asf_demux_process_comment),
(gst_asf_demux_process_bitrate_props_object),
(gst_asf_demux_process_header_ext), (gst_asf_demux_process_object),
(gst_asf_demux_descramble_segment),
(gst_asf_demux_element_send_event),
(gst_asf_demux_send_event_unlocked), (gst_asf_demux_push_buffer),
(gst_asf_demux_process_chunk), (gst_asf_demux_process_segment),
(gst_asf_demux_handle_data), (gst_asf_demux_parse_data),
(gst_asf_demux_get_src_query_types),
(gst_asf_demux_handle_src_query), (gst_asf_demux_change_state):
* gst/asfdemux/gstasfdemux.h:
asfdemux ported to 0.10. Does still need a bit of work (seems like
there's something funky going on when timestamping video frames).
The seeking code is likely to make Wim cry, but hey, at least it
compiles.
2006-02-15 15:48:07 +00:00
|
|
|
gst/asfdemux/Makefile
|
2005-08-31 11:53:35 +00:00
|
|
|
gst/dvdlpcmdec/Makefile
|
Port dvdsubdec to 0.10
Original commit message from CVS:
* configure.ac:
* gst/dvdsub/Makefile.am:
* gst/dvdsub/gstdvdsubdec.c: (gst_dvd_sub_dec_base_init),
(gst_dvd_sub_dec_class_init), (gst_dvd_sub_dec_init),
(gst_dvd_sub_dec_finalize), (gst_dvd_sub_dec_src_event),
(gst_dvd_sub_dec_get_event_delay), (gst_dvd_sub_dec_parse_subpic),
(gst_get_nibble), (gst_setup_palette), (gst_get_rle_code),
(gst_draw_rle_line), (gst_dvd_sub_dec_merge_title),
(gst_send_empty_fill), (gst_send_subtitle_frame),
(gst_dvd_sub_dec_advance_time), (gst_dvd_sub_dec_chain),
(gst_dvd_sub_dec_sink_event), (gst_dvd_sub_dec_handle_dvd_event),
(plugin_init):
* gst/dvdsub/gstdvdsubdec.h:
Port dvdsubdec to 0.10
2006-02-22 14:54:54 +00:00
|
|
|
gst/dvdsub/Makefile
|
2005-09-01 17:31:21 +00:00
|
|
|
gst/iec958/Makefile
|
2005-08-31 17:57:35 +00:00
|
|
|
gst/mpegaudioparse/Makefile
|
2005-11-14 21:20:21 +00:00
|
|
|
gst/mpegstream/Makefile
|
2005-06-27 09:16:09 +00:00
|
|
|
gst/realmedia/Makefile
|
2005-05-06 11:04:30 +00:00
|
|
|
ext/Makefile
|
2005-10-20 09:00:30 +00:00
|
|
|
ext/a52dec/Makefile
|
2005-08-30 17:59:55 +00:00
|
|
|
ext/amrnb/Makefile
|
dvdnavsrc ported to 0.10, for the most part at least. Not quite ready for prime time yet though.
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/dvdnav/Makefile.am:
* ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_base_init),
(gst_dvd_nav_src_class_init), (gst_dvd_nav_src_check_get_range),
(gst_dvd_nav_src_init), (gst_dvd_nav_src_finalize),
(gst_dvd_nav_src_is_open), (gst_dvd_nav_src_set_property),
(gst_dvd_nav_src_get_property), (gst_dvd_nav_src_set_clock),
(gst_dvd_nav_src_tca_seek), (gst_dvd_nav_src_update_streaminfo),
(gst_dvd_nav_src_set_domain), (gst_dvd_nav_src_update_highlight),
(gst_dvd_nav_src_user_op), (dvdnav_get_event_name),
(dvdnav_get_read_domain_name), (gst_dvd_nav_src_print_event),
(gst_dvd_nav_src_make_dvd_event),
(gst_dvd_nav_src_structure_set_uint64),
(gst_dvd_nav_src_push_dvd_nav_packet_event),
(gst_dvd_nav_src_push_clut_change_event), (read_vts_info),
(gst_dvd_nav_src_push_titlelang_event),
(gst_dvd_nav_src_process_next_block), (gst_dvd_nav_src_create),
(gst_dvd_nav_src_start), (gst_dvd_nav_src_stop),
(gst_dvd_nav_src_handle_navigation_event),
(gst_dvd_nav_src_handle_seek_event), (gst_dvd_nav_src_src_event),
(gst_dvd_nav_src_query_position), (gst_dvd_nav_src_query_duration),
(gst_dvd_nav_src_query), (gst_dvd_nav_src_uri_get_type),
(gst_dvd_nav_src_uri_get_protocols), (gst_dvd_nav_src_uri_get_uri),
(gst_dvd_nav_src_uri_set_uri), (gst_dvd_nav_src_uri_handler_init),
(gst_dvd_nav_src_do_init), (plugin_init):
dvdnavsrc ported to 0.10, for the most part at least. Not quite
ready for prime time yet though.
2006-02-26 17:55:05 +00:00
|
|
|
ext/dvdnav/Makefile
|
2006-02-09 17:27:57 +00:00
|
|
|
ext/dvdread/Makefile
|
2005-08-16 16:12:15 +00:00
|
|
|
ext/lame/Makefile
|
2005-05-06 11:04:30 +00:00
|
|
|
ext/mad/Makefile
|
2005-07-19 20:51:16 +00:00
|
|
|
ext/mpeg2dec/Makefile
|
2005-08-30 17:59:55 +00:00
|
|
|
ext/sidplay/Makefile
|
2005-08-31 18:33:08 +00:00
|
|
|
docs/Makefile
|
|
|
|
docs/plugins/Makefile
|
|
|
|
docs/version.entities
|
2004-03-18 12:38:53 +00:00
|
|
|
common/Makefile
|
|
|
|
common/m4/Makefile
|
|
|
|
m4/Makefile
|
2005-08-31 18:33:08 +00:00
|
|
|
gst-plugins-ugly.spec
|
2001-12-17 18:37:01 +00:00
|
|
|
)
|
2002-02-08 20:12:28 +00:00
|
|
|
AC_OUTPUT
|
|
|
|
|
2005-10-24 13:37:47 +00:00
|
|
|
echo "configure: *** Core plug-ins, always built:"
|
|
|
|
( for i in $GST_PLUGINS_ALL; do echo -e '\t'$i; done ) | sort
|
|
|
|
echo
|
|
|
|
echo -n "configure: *** Plug-ins relying on libraries that will be built:"
|
2003-09-25 21:40:35 +00:00
|
|
|
echo -e "$GST_PLUGINS_YES" | sort
|
2001-12-17 18:37:01 +00:00
|
|
|
echo
|
2005-10-24 13:37:47 +00:00
|
|
|
echo -n "configure: *** Plug-ins relying on libraries that will NOT be built:"
|
2003-09-25 21:40:35 +00:00
|
|
|
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
|