mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
more mergeback from the latest release
Original commit message from CVS: more mergeback from the latest release
This commit is contained in:
parent
7f8e235338
commit
58896333c7
4 changed files with 22 additions and 2 deletions
8
README
8
README
|
@ -4,8 +4,16 @@ plugins for GStreamer
|
||||||
|
|
||||||
* to develop against uninstalled GStreamer core :
|
* to develop against uninstalled GStreamer core :
|
||||||
add path to gstreamer-uninstalled.pc to PKG_CONFIG_PATH
|
add path to gstreamer-uninstalled.pc to PKG_CONFIG_PATH
|
||||||
|
or run configure --with-pkg-config-path=(path to gstreamer uninstalled)
|
||||||
|
|
||||||
* to register plugins in source tree
|
* to register plugins in source tree
|
||||||
run gst-register --gst-plugin-path=.
|
run gst-register --gst-plugin-path=.
|
||||||
|
|
||||||
|
* if a certain plugin doesn't build, then redo configure with
|
||||||
|
--disable-(plugin)
|
||||||
|
to disable it from the build
|
||||||
|
|
||||||
|
* Additional documentation :
|
||||||
|
|
||||||
|
REQUIREMENTS
|
||||||
|
supporting libraries for plugins
|
||||||
|
|
7
REQUIREMENTS
Normal file
7
REQUIREMENTS
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
This file lists supporting libraries for which gst-plugins contains plugins,
|
||||||
|
as well as their minimum version. You can find the corresponding plugins in
|
||||||
|
ext/(library)
|
||||||
|
|
||||||
|
a52dec 0.7.3
|
||||||
|
avifile >= 0.6.0 (cvs)
|
||||||
|
|
|
@ -10,10 +10,15 @@ AM_DISABLE_STATIC
|
||||||
dnl when going to/from release please set the nano (fourth number) right !
|
dnl when going to/from release please set the nano (fourth number) right !
|
||||||
dnl We disable static building for development, for time savings
|
dnl We disable static building for development, for time savings
|
||||||
AM_DISABLE_STATIC
|
AM_DISABLE_STATIC
|
||||||
AS_VERSION(gst-plugins, GST_PLUGINS, 0, 3, 3, 1)
|
AS_VERSION(gst-plugins, GST_PLUGINS, 0, 3, 4, 0)
|
||||||
AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
|
AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
|
||||||
AS_LIBTOOL(GST_PLUGINS, 0, 0, 0, yes)
|
AS_LIBTOOL(GST_PLUGINS, 0, 0, 0, yes)
|
||||||
|
|
||||||
|
dnl we'll move this to a configure option later on which will be turned on
|
||||||
|
dnl by autogen
|
||||||
|
dnl GST_ERROR="-Wall -Werror"
|
||||||
|
GST_ERROR="-Werror"
|
||||||
|
|
||||||
dnl FIXME take something else ?
|
dnl FIXME take something else ?
|
||||||
AC_CONFIG_SRCDIR([gst/law/alaw.c])
|
AC_CONFIG_SRCDIR([gst/law/alaw.c])
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
|
|
|
@ -94,7 +94,7 @@ GST_PAD_TEMPLATE_FACTORY (video_mpeg2_factory,
|
||||||
|
|
||||||
|
|
||||||
GST_PAD_TEMPLATE_FACTORY (private1_factory,
|
GST_PAD_TEMPLATE_FACTORY (private1_factory,
|
||||||
"private_stream_1_%d",
|
"private_stream_1_%02d",
|
||||||
GST_PAD_SRC,
|
GST_PAD_SRC,
|
||||||
GST_PAD_SOMETIMES,
|
GST_PAD_SOMETIMES,
|
||||||
GST_CAPS_NEW (
|
GST_CAPS_NEW (
|
||||||
|
|
Loading…
Reference in a new issue