diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2016-02-19 11:47:52 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2016-02-19 11:47:52 +0200 |
commit | 9e33bfa2c7a5f43da2c49b0a8235fd43cba9feaf (patch) | |
tree | 3bac0925ac739b834bfb95d0b6ecc7203b297997 /win32/common | |
parent | 86bdaf8b97c74bdd5da856ad3ac0cd150310b814 (diff) |
Release 1.7.2
Diffstat (limited to 'win32/common')
-rw-r--r-- | win32/common/config.h | 11 | ||||
-rw-r--r-- | win32/common/gstenumtypes.c | 48 | ||||
-rw-r--r-- | win32/common/gstenumtypes.h | 6 | ||||
-rw-r--r-- | win32/common/gstversion.h | 2 |
4 files changed, 60 insertions, 7 deletions
diff --git a/win32/common/config.h b/win32/common/config.h index 1f32ef235..f03a81c9b 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 "2015-12-24" +#define GST_PACKAGE_RELEASE_DATETIME "2016-02-19" /* Define if static plugins should be built */ #undef GST_PLUGIN_BUILD_STATIC @@ -440,8 +440,7 @@ /* gettext locale dir */ #define LOCALEDIR PREFIX "\\share\\locale" -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ +/* Define to the sub-directory where libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Memory alignment to use */ @@ -463,7 +462,7 @@ #define PACKAGE_NAME "GStreamer" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer 1.7.1" +#define PACKAGE_STRING "GStreamer 1.7.2" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gstreamer" @@ -472,7 +471,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.7.1" +#define PACKAGE_VERSION "1.7.2" /* directory where plugins are located */ #ifdef _DEBUG @@ -516,7 +515,7 @@ #undef USE_POISONING /* Version number of package */ -#define VERSION "1.7.1" +#define VERSION "1.7.2" /* 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 7d7b337b2..757bc6b96 100644 --- a/win32/common/gstenumtypes.c +++ b/win32/common/gstenumtypes.c @@ -1822,6 +1822,52 @@ gst_toc_loop_type_get_type (void) return (GType) id; } +/* enumerations from "gsttracerrecord.h" */ +GType +gst_tracer_value_scope_get_type (void) +{ + static gsize id = 0; + static const GEnumValue values[] = { + {C_ENUM (GST_TRACER_VALUE_SCOPE_PROCESS), "GST_TRACER_VALUE_SCOPE_PROCESS", + "process"}, + {C_ENUM (GST_TRACER_VALUE_SCOPE_THREAD), "GST_TRACER_VALUE_SCOPE_THREAD", + "thread"}, + {C_ENUM (GST_TRACER_VALUE_SCOPE_ELEMENT), "GST_TRACER_VALUE_SCOPE_ELEMENT", + "element"}, + {C_ENUM (GST_TRACER_VALUE_SCOPE_PAD), "GST_TRACER_VALUE_SCOPE_PAD", "pad"}, + {0, NULL, NULL} + }; + + if (g_once_init_enter (&id)) { + GType tmp = g_enum_register_static ("GstTracerValueScope", values); + g_once_init_leave (&id, tmp); + } + + return (GType) id; +} + +GType +gst_tracer_value_flags_get_type (void) +{ + static gsize id = 0; + static const GFlagsValue values[] = { + {C_FLAGS (GST_TRACER_VALUE_FLAGS_NONE), "GST_TRACER_VALUE_FLAGS_NONE", + "none"}, + {C_FLAGS (GST_TRACER_VALUE_FLAGS_OPTIONAL), + "GST_TRACER_VALUE_FLAGS_OPTIONAL", "optional"}, + {C_FLAGS (GST_TRACER_VALUE_FLAGS_AGGREGATED), + "GST_TRACER_VALUE_FLAGS_AGGREGATED", "aggregated"}, + {0, NULL, NULL} + }; + + if (g_once_init_enter (&id)) { + GType tmp = g_flags_register_static ("GstTracerValueFlags", values); + g_once_init_leave (&id, tmp); + } + + return (GType) id; +} + /* enumerations from "gsttypefind.h" */ GType gst_type_find_probability_get_type (void) @@ -1925,6 +1971,8 @@ gst_parse_error_get_type (void) {C_ENUM (GST_PARSE_ERROR_EMPTY_BIN), "GST_PARSE_ERROR_EMPTY_BIN", "empty-bin"}, {C_ENUM (GST_PARSE_ERROR_EMPTY), "GST_PARSE_ERROR_EMPTY", "empty"}, + {C_ENUM (GST_PARSE_ERROR_DELAYED_LINK), "GST_PARSE_ERROR_DELAYED_LINK", + "delayed-link"}, {0, NULL, NULL} }; diff --git a/win32/common/gstenumtypes.h b/win32/common/gstenumtypes.h index d9eea4a44..bfe9a01d3 100644 --- a/win32/common/gstenumtypes.h +++ b/win32/common/gstenumtypes.h @@ -210,6 +210,12 @@ GType gst_toc_entry_type_get_type (void); GType gst_toc_loop_type_get_type (void); #define GST_TYPE_TOC_LOOP_TYPE (gst_toc_loop_type_get_type()) +/* enumerations from "gsttracerrecord.h" */ +GType gst_tracer_value_scope_get_type (void); +#define GST_TYPE_TRACER_VALUE_SCOPE (gst_tracer_value_scope_get_type()) +GType gst_tracer_value_flags_get_type (void); +#define GST_TYPE_TRACER_VALUE_FLAGS (gst_tracer_value_flags_get_type()) + /* enumerations from "gsttypefind.h" */ GType gst_type_find_probability_get_type (void); #define GST_TYPE_TYPE_FIND_PROBABILITY (gst_type_find_probability_get_type()) diff --git a/win32/common/gstversion.h b/win32/common/gstversion.h index 68422489d..d74717f57 100644 --- a/win32/common/gstversion.h +++ b/win32/common/gstversion.h @@ -60,7 +60,7 @@ G_BEGIN_DECLS * * The micro version of GStreamer at compile time: */ -#define GST_VERSION_MICRO (1) +#define GST_VERSION_MICRO (2) /** * GST_VERSION_NANO: * |