diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2015-12-24 13:58:52 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2015-12-24 13:58:52 +0100 |
commit | 2a188848eb2af3c3b357978ff7786a78aad9dd55 (patch) | |
tree | d1426cec9b55fca5cabcdec8ca74661154f53892 /win32 | |
parent | b610d4c25fb5d87f0e2372fb4e79c25332521073 (diff) |
Release 1.7.1
Diffstat (limited to 'win32')
-rw-r--r-- | win32/common/config.h | 17 | ||||
-rw-r--r-- | win32/common/gstenumtypes.c | 3 | ||||
-rw-r--r-- | win32/common/gstversion.h | 4 |
3 files changed, 18 insertions, 6 deletions
diff --git a/win32/common/config.h b/win32/common/config.h index b11523f4b..1f32ef235 100644 --- a/win32/common/config.h +++ b/win32/common/config.h @@ -40,6 +40,9 @@ /* Define if pipeline parsing code is disabled */ #undef GST_DISABLE_PARSE +/* Define if extra runtime checks should be enabled */ +#undef GST_ENABLE_EXTRA_CHECKS + /* Extra platform specific plugin suffix */ #undef GST_EXTRA_MODULE_SUFFIX @@ -65,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-09-25" +#define GST_PACKAGE_RELEASE_DATETIME "2015-12-24" /* Define if static plugins should be built */ #undef GST_PLUGIN_BUILD_STATIC @@ -194,6 +197,9 @@ /* Define to 1 if you have the `getpid' function. */ #undef HAVE_GETPID +/* Define to 1 if you have the `getrusage' function. */ +#undef HAVE_GETRUSAGE + /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT @@ -355,6 +361,9 @@ /* Define to 1 if you have the <sys/prctl.h> header file. */ #undef HAVE_SYS_PRCTL_H +/* Define to 1 if you have the <sys/resource.h> header file. */ +#undef HAVE_SYS_RESOURCE_H + /* Define to 1 if you have the <sys/socket.h> header file. */ #undef HAVE_SYS_SOCKET_H @@ -454,7 +463,7 @@ #define PACKAGE_NAME "GStreamer" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer 1.6.0" +#define PACKAGE_STRING "GStreamer 1.7.1" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gstreamer" @@ -463,7 +472,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.6.0" +#define PACKAGE_VERSION "1.7.1" /* directory where plugins are located */ #ifdef _DEBUG @@ -507,7 +516,7 @@ #undef USE_POISONING /* Version number of package */ -#define VERSION "1.6.0" +#define VERSION "1.7.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 a29942a13..7d7b337b2 100644 --- a/win32/common/gstenumtypes.c +++ b/win32/common/gstenumtypes.c @@ -1437,6 +1437,9 @@ gst_plugin_dependency_flags_get_type (void) {C_FLAGS (GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX), "GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX", "file-name-is-suffix"}, + {C_FLAGS (GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_PREFIX), + "GST_PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_PREFIX", + "file-name-is-prefix"}, {0, NULL, NULL} }; diff --git a/win32/common/gstversion.h b/win32/common/gstversion.h index 5e5b8e168..68422489d 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 (6) +#define GST_VERSION_MINOR (7) /** * GST_VERSION_MICRO: * * The micro version of GStreamer at compile time: */ -#define GST_VERSION_MICRO (0) +#define GST_VERSION_MICRO (1) /** * GST_VERSION_NANO: * |