summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@noraisin.net>2009-07-20 15:51:20 +0100
committerJan Schmidt <thaytan@noraisin.net>2009-07-20 17:05:31 +0100
commitab6d3c736ba17ff5d553a3bc579960776a040dee (patch)
treee7b3b08852ebac85b8ddf344af71dbe3aacd0db0 /win32
parentffca244c262743ddf99fd06f66df979ba556f499 (diff)
0.10.23.3 pre-release
Diffstat (limited to 'win32')
-rw-r--r--win32/common/config.h9
-rw-r--r--win32/common/gstenumtypes.c22
-rw-r--r--win32/common/gstenumtypes.h4
-rw-r--r--win32/common/gstversion.h2
4 files changed, 33 insertions, 4 deletions
diff --git a/win32/common/config.h b/win32/common/config.h
index a66013fd4e..89c8d39e69 100644
--- a/win32/common/config.h
+++ b/win32/common/config.h
@@ -187,6 +187,9 @@
/* Define to 1 if you have the `pselect' function. */
#undef HAVE_PSELECT
+/* Define to 1 if you have the <pthread.h> header file. */
+#undef HAVE_PTHREAD_H
+
/* Define if RDTSC is available */
#undef HAVE_RDTSC
@@ -283,13 +286,13 @@
#define PACKAGE_NAME "GStreamer"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "GStreamer 0.10.23.1"
+#define PACKAGE_STRING "GStreamer 0.10.23.3"
/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "gstreamer"
/* Define to the version of this package. */
-#define PACKAGE_VERSION "0.10.23.1"
+#define PACKAGE_VERSION "0.10.23.3"
/* directory where plugins are located */
#ifdef _DEBUG
@@ -305,7 +308,7 @@
#undef USE_POISONING
/* Version number of package */
-#define VERSION "0.10.23.1"
+#define VERSION "0.10.23.3"
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
diff --git a/win32/common/gstenumtypes.c b/win32/common/gstenumtypes.c
index 24e9826bc9..f2df5b1d37 100644
--- a/win32/common/gstenumtypes.c
+++ b/win32/common/gstenumtypes.c
@@ -94,6 +94,27 @@ gst_buffer_copy_flags_get_type (void)
return (GType) id;
}
+/* enumerations from "gstbufferlist.h" */
+GType
+gst_buffer_list_item_get_type (void)
+{
+ static gsize id = 0;
+ static const GEnumValue values[] = {
+ {C_ENUM (GST_BUFFER_LIST_CONTINUE), "GST_BUFFER_LIST_CONTINUE", "continue"},
+ {C_ENUM (GST_BUFFER_LIST_SKIP_GROUP), "GST_BUFFER_LIST_SKIP_GROUP",
+ "skip-group"},
+ {C_ENUM (GST_BUFFER_LIST_END), "GST_BUFFER_LIST_END", "end"},
+ {0, NULL, NULL}
+ };
+
+ if (g_once_init_enter (&id)) {
+ GType tmp = g_enum_register_static ("GstBufferListItem", values);
+ g_once_init_leave (&id, tmp);
+ }
+
+ return (GType) id;
+}
+
/* enumerations from "gstbus.h" */
GType
gst_bus_flags_get_type (void)
@@ -864,6 +885,7 @@ gst_message_type_get_type (void)
{C_FLAGS (GST_MESSAGE_ASYNC_DONE), "GST_MESSAGE_ASYNC_DONE", "async-done"},
{C_FLAGS (GST_MESSAGE_REQUEST_STATE), "GST_MESSAGE_REQUEST_STATE",
"request-state"},
+ {C_FLAGS (GST_MESSAGE_STEP_START), "GST_MESSAGE_STEP_START", "step-start"},
{C_FLAGS (GST_MESSAGE_ANY), "GST_MESSAGE_ANY", "any"},
{0, NULL, NULL}
};
diff --git a/win32/common/gstenumtypes.h b/win32/common/gstenumtypes.h
index 29b741f9da..e21a9b9ffb 100644
--- a/win32/common/gstenumtypes.h
+++ b/win32/common/gstenumtypes.h
@@ -22,6 +22,10 @@ GType gst_buffer_flag_get_type (void);
GType gst_buffer_copy_flags_get_type (void);
#define GST_TYPE_BUFFER_COPY_FLAGS (gst_buffer_copy_flags_get_type())
+/* enumerations from "gstbufferlist.h" */
+GType gst_buffer_list_item_get_type (void);
+#define GST_TYPE_BUFFER_LIST_ITEM (gst_buffer_list_item_get_type())
+
/* enumerations from "gstbus.h" */
GType gst_bus_flags_get_type (void);
#define GST_TYPE_BUS_FLAGS (gst_bus_flags_get_type())
diff --git a/win32/common/gstversion.h b/win32/common/gstversion.h
index 71537485f8..65e0fd2d51 100644
--- a/win32/common/gstversion.h
+++ b/win32/common/gstversion.h
@@ -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 (3)
/**
* GST_CHECK_VERSION: