0.10.29.2 pre-release

This commit is contained in:
Tim-Philipp Müller 2010-06-26 17:48:31 +01:00
parent 7ebcce08b3
commit 484ab2a561
5 changed files with 32 additions and 6 deletions

View file

@ -3,7 +3,7 @@ AC_PREREQ(2.60)
dnl initialize autoconf
dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, git and prerelease does Werror too
AC_INIT(GStreamer, 0.10.29.1,
AC_INIT(GStreamer, 0.10.29.2,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gstreamer)
AG_GST_INIT

View file

@ -59,7 +59,7 @@
#define GST_MAJORMINOR "0.10"
/* package name in plugins */
#define GST_PACKAGE_NAME "GStreamer git"
#define GST_PACKAGE_NAME "GStreamer prerelease"
/* package origin */
#define GST_PACKAGE_ORIGIN "Unknown package origin"
@ -331,7 +331,7 @@
#define PACKAGE_NAME "GStreamer"
/* Define to the full name and version of this package. */
#define PACKAGE_STRING "GStreamer 0.10.29.1"
#define PACKAGE_STRING "GStreamer 0.10.29.2"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "gstreamer"
@ -340,7 +340,7 @@
#undef PACKAGE_URL
/* Define to the version of this package. */
#define PACKAGE_VERSION "0.10.29.1"
#define PACKAGE_VERSION "0.10.29.2"
/* directory where plugins are located */
#ifdef _DEBUG
@ -371,7 +371,7 @@
#undef USE_POISONING
/* Version number of package */
#define VERSION "0.10.29.1"
#define VERSION "0.10.29.2"
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */

View file

@ -759,6 +759,7 @@ gst_debug_level_get_type (void)
{C_ENUM (GST_LEVEL_DEBUG), "GST_LEVEL_DEBUG", "debug"},
{C_ENUM (GST_LEVEL_LOG), "GST_LEVEL_LOG", "log"},
{C_ENUM (GST_LEVEL_FIXME), "GST_LEVEL_FIXME", "fixme"},
{C_ENUM (GST_LEVEL_TRACE), "GST_LEVEL_TRACE", "trace"},
{C_ENUM (GST_LEVEL_MEMDUMP), "GST_LEVEL_MEMDUMP", "memdump"},
{C_ENUM (GST_LEVEL_COUNT), "GST_LEVEL_COUNT", "count"},
{0, NULL, NULL}
@ -1033,6 +1034,29 @@ gst_flow_return_get_type (void)
return (GType) id;
}
GType
gst_pad_link_check_get_type (void)
{
static gsize id = 0;
static const GFlagsValue values[] = {
{C_FLAGS (GST_PAD_LINK_CHECK_NOTHING), "GST_PAD_LINK_CHECK_NOTHING",
"nothing"},
{C_FLAGS (GST_PAD_LINK_CHECK_HIERARCHY), "GST_PAD_LINK_CHECK_HIERARCHY",
"hierarchy"},
{C_FLAGS (GST_PAD_LINK_CHECK_TEMPLATE_CAPS),
"GST_PAD_LINK_CHECK_TEMPLATE_CAPS", "template-caps"},
{C_FLAGS (GST_PAD_LINK_CHECK_CAPS), "GST_PAD_LINK_CHECK_CAPS", "caps"},
{0, NULL, NULL}
};
if (g_once_init_enter (&id)) {
GType tmp = g_flags_register_static ("GstPadLinkCheck", values);
g_once_init_leave (&id, tmp);
}
return (GType) id;
}
GType
gst_activate_mode_get_type (void)
{

View file

@ -125,6 +125,8 @@ GType gst_pad_link_return_get_type (void);
#define GST_TYPE_PAD_LINK_RETURN (gst_pad_link_return_get_type())
GType gst_flow_return_get_type (void);
#define GST_TYPE_FLOW_RETURN (gst_flow_return_get_type())
GType gst_pad_link_check_get_type (void);
#define GST_TYPE_PAD_LINK_CHECK (gst_pad_link_check_get_type())
GType gst_activate_mode_get_type (void);
#define GST_TYPE_ACTIVATE_MODE (gst_activate_mode_get_type())
GType gst_pad_direction_get_type (void);

View file

@ -64,7 +64,7 @@ G_BEGIN_DECLS
* The nano version of GStreamer at compile time:
* Actual releases have 0, GIT versions have 1, prerelease versions have 2-...
*/
#define GST_VERSION_NANO (1)
#define GST_VERSION_NANO (2)
/**
* GST_CHECK_VERSION: