mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
0.10.29.2 pre-release
This commit is contained in:
parent
b16e7e8fa2
commit
a7e131532e
4 changed files with 20 additions and 10 deletions
|
@ -5,7 +5,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file
|
|||
dnl initialize autoconf
|
||||
dnl releases only do -Wall, git and prerelease does -Werror too
|
||||
dnl use a three digit version number for releases, and four for git/prerelease
|
||||
AC_INIT(GStreamer Base Plug-ins, 0.10.29.1,
|
||||
AC_INIT(GStreamer Base Plug-ins, 0.10.29.2,
|
||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
||||
gst-plugins-base)
|
||||
|
||||
|
|
|
@ -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.10.29.1"
|
||||
/* generated using gnu compiler gcc (Debian 4.4.3-9) 4.4.3 */
|
||||
#define _GENERATED_STDINT_H "gst-plugins-base 0.10.29.2"
|
||||
/* generated using gnu compiler gcc (Debian 4.4.4-5) 4.4.4 */
|
||||
#define _STDINT_HAVE_STDINT_H 1
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
|
|
|
@ -34,6 +34,9 @@
|
|||
/* Default visualizer */
|
||||
#define DEFAULT_VISUALIZER "goom"
|
||||
|
||||
/* Disable Orc */
|
||||
#undef DISABLE_ORC
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
|
@ -66,7 +69,7 @@
|
|||
#define GST_LICENSE "LGPL"
|
||||
|
||||
/* package name in plugins */
|
||||
#define GST_PACKAGE_NAME "GStreamer Base Plug-ins git"
|
||||
#define GST_PACKAGE_NAME "GStreamer Base Plug-ins prerelease"
|
||||
|
||||
/* package origin */
|
||||
#define GST_PACKAGE_ORIGIN "Unknown package origin"
|
||||
|
@ -77,9 +80,6 @@
|
|||
/* Define to enable ALSA (used by alsa). */
|
||||
#undef HAVE_ALSA
|
||||
|
||||
/* Define to 1 if you have the `cbrt' function. */
|
||||
#undef HAVE_CBRT
|
||||
|
||||
/* Define to enable CDParanoia (used by cdparanoia). */
|
||||
#undef HAVE_CDPARANOIA
|
||||
|
||||
|
@ -224,6 +224,9 @@
|
|||
/* Define to enable Xiph Ogg library (used by ogg). */
|
||||
#undef HAVE_OGG
|
||||
|
||||
/* Use Orc */
|
||||
#undef HAVE_ORC
|
||||
|
||||
/* Define to enable Pango font rendering (used by pango). */
|
||||
#undef HAVE_PANGO
|
||||
|
||||
|
@ -322,7 +325,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.10.29.1"
|
||||
#define PACKAGE_STRING "GStreamer Base Plug-ins 0.10.29.2"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "gst-plugins-base"
|
||||
|
@ -331,7 +334,7 @@
|
|||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "0.10.29.1"
|
||||
#define PACKAGE_VERSION "0.10.29.2"
|
||||
|
||||
/* directory where plugins are located */
|
||||
#ifdef _DEBUG
|
||||
|
@ -359,7 +362,7 @@
|
|||
#undef STDC_HEADERS
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "0.10.29.1"
|
||||
#define VERSION "0.10.29.2"
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
|
|
|
@ -39,6 +39,13 @@ gst_video_format_get_type (void)
|
|||
{GST_VIDEO_FORMAT_GRAY8, "GST_VIDEO_FORMAT_GRAY8", "gray8"},
|
||||
{GST_VIDEO_FORMAT_GRAY16_BE, "GST_VIDEO_FORMAT_GRAY16_BE", "gray16-be"},
|
||||
{GST_VIDEO_FORMAT_GRAY16_LE, "GST_VIDEO_FORMAT_GRAY16_LE", "gray16-le"},
|
||||
{GST_VIDEO_FORMAT_v308, "GST_VIDEO_FORMAT_v308", "v308"},
|
||||
{GST_VIDEO_FORMAT_Y800, "GST_VIDEO_FORMAT_Y800", "y800"},
|
||||
{GST_VIDEO_FORMAT_Y16, "GST_VIDEO_FORMAT_Y16", "y16"},
|
||||
{GST_VIDEO_FORMAT_RGB16, "GST_VIDEO_FORMAT_RGB16", "rgb16"},
|
||||
{GST_VIDEO_FORMAT_BGR16, "GST_VIDEO_FORMAT_BGR16", "bgr16"},
|
||||
{GST_VIDEO_FORMAT_RGB15, "GST_VIDEO_FORMAT_RGB15", "rgb15"},
|
||||
{GST_VIDEO_FORMAT_BGR15, "GST_VIDEO_FORMAT_BGR15", "bgr15"},
|
||||
{0, NULL, NULL}
|
||||
};
|
||||
GType g_define_type_id = g_enum_register_static ("GstVideoFormat", values);
|
||||
|
|
Loading…
Reference in a new issue