diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2016-07-06 13:05:02 +0300 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-07-06 13:05:02 +0300 |
commit | af5c9cbb200a503e8f38cd0eb44bbac046ca492e (patch) | |
tree | b2ff0c7bfa295aa939ef2853c13f9cefcdb7489a /win32/common | |
parent | 476e1397358e8aa5e267002f5c5ad2c0b45d38b1 (diff) |
Release 1.9.1
Diffstat (limited to 'win32/common')
-rw-r--r-- | win32/common/config.h | 8 | ||||
-rw-r--r-- | win32/common/gstenumtypes.c | 67 | ||||
-rw-r--r-- | win32/common/gstenumtypes.h | 8 | ||||
-rw-r--r-- | win32/common/gstversion.h | 4 |
4 files changed, 65 insertions, 22 deletions
diff --git a/win32/common/config.h b/win32/common/config.h index 3571ec860..9b60f8e24 100644 --- a/win32/common/config.h +++ b/win32/common/config.h @@ -68,7 +68,7 @@ #define GST_PACKAGE_ORIGIN "Unknown package origin" /* GStreamer package release date/time for plugins as YYYY-MM-DD */ -#define GST_PACKAGE_RELEASE_DATETIME "2016-03-24" +#define GST_PACKAGE_RELEASE_DATETIME "2016-06-06" /* Define if static plugins should be built */ #undef GST_PLUGIN_BUILD_STATIC @@ -462,7 +462,7 @@ #define PACKAGE_NAME "GStreamer" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer 1.8.0" +#define PACKAGE_STRING "GStreamer 1.9.1" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gstreamer" @@ -471,7 +471,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.8.0" +#define PACKAGE_VERSION "1.9.1" /* directory where plugins are located */ #ifdef _DEBUG @@ -515,7 +515,7 @@ #undef USE_POISONING /* Version number of package */ -#define VERSION "1.8.0" +#define VERSION "1.9.1" /* 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 757bc6b96..8b0d16000 100644 --- a/win32/common/gstenumtypes.c +++ b/win32/common/gstenumtypes.c @@ -13,6 +13,8 @@ gst_object_flags_get_type (void) { static gsize id = 0; static const GFlagsValue values[] = { + {C_FLAGS (GST_OBJECT_FLAG_MAY_BE_LEAKED), "GST_OBJECT_FLAG_MAY_BE_LEAKED", + "may-be-leaked"}, {C_FLAGS (GST_OBJECT_FLAG_LAST), "GST_OBJECT_FLAG_LAST", "last"}, {0, NULL, NULL} }; @@ -606,6 +608,8 @@ gst_event_type_get_type (void) {C_ENUM (GST_EVENT_STREAM_START), "GST_EVENT_STREAM_START", "stream-start"}, {C_ENUM (GST_EVENT_CAPS), "GST_EVENT_CAPS", "caps"}, {C_ENUM (GST_EVENT_SEGMENT), "GST_EVENT_SEGMENT", "segment"}, + {C_ENUM (GST_EVENT_STREAM_COLLECTION), "GST_EVENT_STREAM_COLLECTION", + "stream-collection"}, {C_ENUM (GST_EVENT_TAG), "GST_EVENT_TAG", "tag"}, {C_ENUM (GST_EVENT_BUFFERSIZE), "GST_EVENT_BUFFERSIZE", "buffersize"}, {C_ENUM (GST_EVENT_SINK_MESSAGE), "GST_EVENT_SINK_MESSAGE", "sink-message"}, @@ -621,6 +625,8 @@ gst_event_type_get_type (void) {C_ENUM (GST_EVENT_STEP), "GST_EVENT_STEP", "step"}, {C_ENUM (GST_EVENT_RECONFIGURE), "GST_EVENT_RECONFIGURE", "reconfigure"}, {C_ENUM (GST_EVENT_TOC_SELECT), "GST_EVENT_TOC_SELECT", "toc-select"}, + {C_ENUM (GST_EVENT_SELECT_STREAMS), "GST_EVENT_SELECT_STREAMS", + "select-streams"}, {C_ENUM (GST_EVENT_CUSTOM_UPSTREAM), "GST_EVENT_CUSTOM_UPSTREAM", "custom-upstream"}, {C_ENUM (GST_EVENT_CUSTOM_DOWNSTREAM), "GST_EVENT_CUSTOM_DOWNSTREAM", @@ -644,18 +650,20 @@ gst_event_type_get_type (void) } GType -gst_qos_type_get_type (void) +gst_stream_flags_get_type (void) { static gsize id = 0; - static const GEnumValue values[] = { - {C_ENUM (GST_QOS_TYPE_OVERFLOW), "GST_QOS_TYPE_OVERFLOW", "overflow"}, - {C_ENUM (GST_QOS_TYPE_UNDERFLOW), "GST_QOS_TYPE_UNDERFLOW", "underflow"}, - {C_ENUM (GST_QOS_TYPE_THROTTLE), "GST_QOS_TYPE_THROTTLE", "throttle"}, + static const GFlagsValue values[] = { + {C_FLAGS (GST_STREAM_FLAG_NONE), "GST_STREAM_FLAG_NONE", "none"}, + {C_FLAGS (GST_STREAM_FLAG_SPARSE), "GST_STREAM_FLAG_SPARSE", "sparse"}, + {C_FLAGS (GST_STREAM_FLAG_SELECT), "GST_STREAM_FLAG_SELECT", "select"}, + {C_FLAGS (GST_STREAM_FLAG_UNSELECT), "GST_STREAM_FLAG_UNSELECT", + "unselect"}, {0, NULL, NULL} }; if (g_once_init_enter (&id)) { - GType tmp = g_enum_register_static ("GstQOSType", values); + GType tmp = g_flags_register_static ("GstStreamFlags", values); g_once_init_leave (&id, tmp); } @@ -663,20 +671,18 @@ gst_qos_type_get_type (void) } GType -gst_stream_flags_get_type (void) +gst_qos_type_get_type (void) { static gsize id = 0; - static const GFlagsValue values[] = { - {C_FLAGS (GST_STREAM_FLAG_NONE), "GST_STREAM_FLAG_NONE", "none"}, - {C_FLAGS (GST_STREAM_FLAG_SPARSE), "GST_STREAM_FLAG_SPARSE", "sparse"}, - {C_FLAGS (GST_STREAM_FLAG_SELECT), "GST_STREAM_FLAG_SELECT", "select"}, - {C_FLAGS (GST_STREAM_FLAG_UNSELECT), "GST_STREAM_FLAG_UNSELECT", - "unselect"}, + static const GEnumValue values[] = { + {C_ENUM (GST_QOS_TYPE_OVERFLOW), "GST_QOS_TYPE_OVERFLOW", "overflow"}, + {C_ENUM (GST_QOS_TYPE_UNDERFLOW), "GST_QOS_TYPE_UNDERFLOW", "underflow"}, + {C_ENUM (GST_QOS_TYPE_THROTTLE), "GST_QOS_TYPE_THROTTLE", "throttle"}, {0, NULL, NULL} }; if (g_once_init_enter (&id)) { - GType tmp = g_flags_register_static ("GstStreamFlags", values); + GType tmp = g_enum_register_static ("GstQOSType", values); g_once_init_leave (&id, tmp); } @@ -883,6 +889,12 @@ gst_message_type_get_type (void) "device-added"}, {C_FLAGS (GST_MESSAGE_DEVICE_REMOVED), "GST_MESSAGE_DEVICE_REMOVED", "device-removed"}, + {C_FLAGS (GST_MESSAGE_PROPERTY_NOTIFY), "GST_MESSAGE_PROPERTY_NOTIFY", + "property-notify"}, + {C_FLAGS (GST_MESSAGE_STREAM_COLLECTION), "GST_MESSAGE_STREAM_COLLECTION", + "stream-collection"}, + {C_FLAGS (GST_MESSAGE_STREAMS_SELECTED), "GST_MESSAGE_STREAMS_SELECTED", + "streams-selected"}, {C_FLAGS (GST_MESSAGE_ANY), "GST_MESSAGE_ANY", "any"}, {0, NULL, NULL} }; @@ -1050,6 +1062,8 @@ gst_mini_object_flags_get_type (void) "lockable"}, {C_FLAGS (GST_MINI_OBJECT_FLAG_LOCK_READONLY), "GST_MINI_OBJECT_FLAG_LOCK_READONLY", "lock-readonly"}, + {C_FLAGS (GST_MINI_OBJECT_FLAG_MAY_BE_LEAKED), + "GST_MINI_OBJECT_FLAG_MAY_BE_LEAKED", "may-be-leaked"}, {C_FLAGS (GST_MINI_OBJECT_FLAG_LAST), "GST_MINI_OBJECT_FLAG_LAST", "last"}, {0, NULL, NULL} }; @@ -1650,6 +1664,29 @@ gst_segment_flags_get_type (void) return (GType) id; } +/* enumerations from "gststreams.h" */ +GType +gst_stream_type_get_type (void) +{ + static gsize id = 0; + static const GFlagsValue values[] = { + {C_FLAGS (GST_STREAM_TYPE_UNKNOWN), "GST_STREAM_TYPE_UNKNOWN", "unknown"}, + {C_FLAGS (GST_STREAM_TYPE_AUDIO), "GST_STREAM_TYPE_AUDIO", "audio"}, + {C_FLAGS (GST_STREAM_TYPE_VIDEO), "GST_STREAM_TYPE_VIDEO", "video"}, + {C_FLAGS (GST_STREAM_TYPE_CONTAINER), "GST_STREAM_TYPE_CONTAINER", + "container"}, + {C_FLAGS (GST_STREAM_TYPE_TEXT), "GST_STREAM_TYPE_TEXT", "text"}, + {0, NULL, NULL} + }; + + if (g_once_init_enter (&id)) { + GType tmp = g_flags_register_static ("GstStreamType", values); + g_once_init_leave (&id, tmp); + } + + return (GType) id; +} + /* enumerations from "gstsystemclock.h" */ GType gst_clock_type_get_type (void) @@ -1994,6 +2031,8 @@ gst_parse_flags_get_type (void) "fatal-errors"}, {C_FLAGS (GST_PARSE_FLAG_NO_SINGLE_ELEMENT_BINS), "GST_PARSE_FLAG_NO_SINGLE_ELEMENT_BINS", "no-single-element-bins"}, + {C_FLAGS (GST_PARSE_FLAG_PLACE_IN_BIN), "GST_PARSE_FLAG_PLACE_IN_BIN", + "place-in-bin"}, {0, NULL, NULL} }; diff --git a/win32/common/gstenumtypes.h b/win32/common/gstenumtypes.h index bfe9a01d3..08d16c595 100644 --- a/win32/common/gstenumtypes.h +++ b/win32/common/gstenumtypes.h @@ -79,10 +79,10 @@ GType gst_event_type_flags_get_type (void); #define GST_TYPE_EVENT_TYPE_FLAGS (gst_event_type_flags_get_type()) GType gst_event_type_get_type (void); #define GST_TYPE_EVENT_TYPE (gst_event_type_get_type()) -GType gst_qos_type_get_type (void); -#define GST_TYPE_QOS_TYPE (gst_qos_type_get_type()) GType gst_stream_flags_get_type (void); #define GST_TYPE_STREAM_FLAGS (gst_stream_flags_get_type()) +GType gst_qos_type_get_type (void); +#define GST_TYPE_QOS_TYPE (gst_qos_type_get_type()) /* enumerations from "gstformat.h" */ GType gst_format_get_type (void); @@ -186,6 +186,10 @@ GType gst_seek_flags_get_type (void); GType gst_segment_flags_get_type (void); #define GST_TYPE_SEGMENT_FLAGS (gst_segment_flags_get_type()) +/* enumerations from "gststreams.h" */ +GType gst_stream_type_get_type (void); +#define GST_TYPE_STREAM_TYPE (gst_stream_type_get_type()) + /* enumerations from "gstsystemclock.h" */ GType gst_clock_type_get_type (void); #define GST_TYPE_CLOCK_TYPE (gst_clock_type_get_type()) diff --git a/win32/common/gstversion.h b/win32/common/gstversion.h index 7844e7164..27921dca3 100644 --- a/win32/common/gstversion.h +++ b/win32/common/gstversion.h @@ -54,13 +54,13 @@ G_BEGIN_DECLS * * The minor version of GStreamer at compile time: */ -#define GST_VERSION_MINOR (8) +#define GST_VERSION_MINOR (9) /** * GST_VERSION_MICRO: * * The micro version of GStreamer at compile time: */ -#define GST_VERSION_MICRO (0) +#define GST_VERSION_MICRO (1) /** * GST_VERSION_NANO: * |