diff --git a/win32/common/_stdint.h b/win32/common/_stdint.h index 428269345f..caa70008c6 100644 --- a/win32/common/_stdint.h +++ b/win32/common/_stdint.h @@ -1,8 +1,8 @@ #ifndef _GST_PLUGINS_BASE__STDINT_H #define _GST_PLUGINS_BASE__STDINT_H 1 #ifndef _GENERATED_STDINT_H -#define _GENERATED_STDINT_H "gst-plugins-base 0.11.92" -/* generated using gnu compiler Debian clang version 3.1-4 (branches/release_31) (based on LLVM 3.1) */ +#define _GENERATED_STDINT_H "gst-plugins-base 0.11.92.1" +/* generated using gnu compiler gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 */ #define _STDINT_HAVE_STDINT_H 1 #include #endif diff --git a/win32/common/audio-enumtypes.c b/win32/common/audio-enumtypes.c index 8095fa5605..55104ae798 100644 --- a/win32/common/audio-enumtypes.c +++ b/win32/common/audio-enumtypes.c @@ -4,9 +4,12 @@ #include "audio-enumtypes.h" #include "audio.h" +#include "audio-format.h" +#include "audio-channels.h" +#include "audio-info.h" #include "gstaudioringbuffer.h" -/* enumerations from "audio.h" */ +/* enumerations from "audio-format.h" */ GType gst_audio_format_get_type (void) { @@ -14,6 +17,7 @@ gst_audio_format_get_type (void) if (g_once_init_enter (&g_define_type_id__volatile)) { static const GEnumValue values[] = { {GST_AUDIO_FORMAT_UNKNOWN, "GST_AUDIO_FORMAT_UNKNOWN", "unknown"}, + {GST_AUDIO_FORMAT_ENCODED, "GST_AUDIO_FORMAT_ENCODED", "encoded"}, {GST_AUDIO_FORMAT_S8, "GST_AUDIO_FORMAT_S8", "s8"}, {GST_AUDIO_FORMAT_U8, "GST_AUDIO_FORMAT_U8", "u8"}, {GST_AUDIO_FORMAT_S16LE, "GST_AUDIO_FORMAT_S16LE", "s16le"}, @@ -78,6 +82,7 @@ gst_audio_format_flags_get_type (void) {GST_AUDIO_FORMAT_FLAG_SIGNED, "GST_AUDIO_FORMAT_FLAG_SIGNED", "signed"}, {GST_AUDIO_FORMAT_FLAG_COMPLEX, "GST_AUDIO_FORMAT_FLAG_COMPLEX", "complex"}, + {GST_AUDIO_FORMAT_FLAG_UNPACK, "GST_AUDIO_FORMAT_FLAG_UNPACK", "unpack"}, {0, NULL, NULL} }; GType g_define_type_id = @@ -103,6 +108,7 @@ gst_audio_pack_flags_get_type (void) return g_define_type_id__volatile; } +/* enumerations from "audio-channels.h" */ GType gst_audio_channel_position_get_type (void) { @@ -185,6 +191,7 @@ gst_audio_channel_position_get_type (void) return g_define_type_id__volatile; } +/* enumerations from "audio-info.h" */ GType gst_audio_flags_get_type (void) { diff --git a/win32/common/audio-enumtypes.h b/win32/common/audio-enumtypes.h index d3c67294fe..a323a87dba 100644 --- a/win32/common/audio-enumtypes.h +++ b/win32/common/audio-enumtypes.h @@ -8,15 +8,19 @@ G_BEGIN_DECLS -/* enumerations from "audio.h" */ +/* enumerations from "audio-format.h" */ GType gst_audio_format_get_type (void); #define GST_TYPE_AUDIO_FORMAT (gst_audio_format_get_type()) GType gst_audio_format_flags_get_type (void); #define GST_TYPE_AUDIO_FORMAT_FLAGS (gst_audio_format_flags_get_type()) GType gst_audio_pack_flags_get_type (void); #define GST_TYPE_AUDIO_PACK_FLAGS (gst_audio_pack_flags_get_type()) + +/* enumerations from "audio-channels.h" */ GType gst_audio_channel_position_get_type (void); #define GST_TYPE_AUDIO_CHANNEL_POSITION (gst_audio_channel_position_get_type()) + +/* enumerations from "audio-info.h" */ GType gst_audio_flags_get_type (void); #define GST_TYPE_AUDIO_FLAGS (gst_audio_flags_get_type()) GType gst_audio_layout_get_type (void); diff --git a/win32/common/config.h b/win32/common/config.h index d1f0395637..fb9a4408e6 100644 --- a/win32/common/config.h +++ b/win32/common/config.h @@ -81,13 +81,13 @@ #define GST_LICENSE "LGPL" /* package name in plugins */ -#define GST_PACKAGE_NAME "GStreamer Base Plug-ins source release" +#define GST_PACKAGE_NAME "GStreamer Base Plug-ins git" /* package origin */ #define GST_PACKAGE_ORIGIN "Unknown package origin" /* GStreamer package release date/time for plugins as YYYY-MM-DD */ -#define GST_PACKAGE_RELEASE_DATETIME "2012-06-07" +#define GST_PACKAGE_RELEASE_DATETIME "2012-06-14T08:18Z" /* Define to enable ALSA (used by alsa). */ #undef HAVE_ALSA @@ -313,7 +313,7 @@ #define PACKAGE_NAME "GStreamer Base Plug-ins" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer Base Plug-ins 0.11.92" +#define PACKAGE_STRING "GStreamer Base Plug-ins 0.11.92.1" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gst-plugins-base" @@ -322,7 +322,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "0.11.92" +#define PACKAGE_VERSION "0.11.92.1" /* directory where plugins are located */ #ifdef _DEBUG @@ -356,7 +356,7 @@ #undef USE_TREMOLO /* Version number of package */ -#define VERSION "0.11.92" +#define VERSION "0.11.92.1" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ @@ -373,11 +373,6 @@ /* Define to 1 if the X Window System is missing or not being used. */ #undef X_DISPLAY_MISSING -/* Enable large inode numbers on Mac OS X 10.5. */ -#ifndef _DARWIN_USE_64_BIT_INODE -# define _DARWIN_USE_64_BIT_INODE 1 -#endif - /* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS diff --git a/win32/common/video-enumtypes.c b/win32/common/video-enumtypes.c index d3003230d4..4629885b84 100644 --- a/win32/common/video-enumtypes.c +++ b/win32/common/video-enumtypes.c @@ -113,6 +113,7 @@ gst_video_format_flags_get_type (void) "palette"}, {GST_VIDEO_FORMAT_FLAG_COMPLEX, "GST_VIDEO_FORMAT_FLAG_COMPLEX", "complex"}, + {GST_VIDEO_FORMAT_FLAG_UNPACK, "GST_VIDEO_FORMAT_FLAG_UNPACK", "unpack"}, {0, NULL, NULL} }; GType g_define_type_id = @@ -129,6 +130,8 @@ gst_video_pack_flags_get_type (void) if (g_once_init_enter (&g_define_type_id__volatile)) { static const GEnumValue values[] = { {GST_VIDEO_PACK_FLAG_NONE, "GST_VIDEO_PACK_FLAG_NONE", "none"}, + {GST_VIDEO_PACK_FLAG_TRUNCATE_RANGE, "GST_VIDEO_PACK_FLAG_TRUNCATE_RANGE", + "truncate-range"}, {0, NULL, NULL} }; GType g_define_type_id =