mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-08 16:35:40 +00:00
win32/common/gstenumtypes.*: Update enum types.
Original commit message from CVS: Patch by: Sebastien Moutte <sebastien moutte net> * win32/common/gstenumtypes.c: * win32/common/gstenumtypes.h: Update enum types. * win32/vs6/libgstreamer.dsp: Update vs6 project files (#494343).
This commit is contained in:
parent
8b5019bb54
commit
a463a40fd8
4 changed files with 48 additions and 0 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
2007-11-06 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
Patch by: Sebastien Moutte <sebastien moutte net>
|
||||
|
||||
* win32/common/gstenumtypes.c:
|
||||
* win32/common/gstenumtypes.h:
|
||||
Update enum types.
|
||||
|
||||
* win32/vs6/libgstreamer.dsp:
|
||||
Update vs6 project files (#494343).
|
||||
|
||||
2007-11-06 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
* libs/gst/base/gstbasesrc.c: (gst_base_src_default_query),
|
||||
|
|
|
@ -244,6 +244,35 @@ gst_clock_flags_get_type (void)
|
|||
return id;
|
||||
}
|
||||
|
||||
/* enumerations from "gstdebugutils.h" */
|
||||
static void
|
||||
register_gst_debug_graph_details (GType * id)
|
||||
{
|
||||
static const GFlagsValue values[] = {
|
||||
{C_FLAGS (GST_DEBUG_GRAPH_SHOW_MEDIA_TYPE),
|
||||
"GST_DEBUG_GRAPH_SHOW_MEDIA_TYPE", "media-type"},
|
||||
{C_FLAGS (GST_DEBUG_GRAPH_SHOW_CAPS_DETAILS),
|
||||
"GST_DEBUG_GRAPH_SHOW_CAPS_DETAILS", "caps-details"},
|
||||
{C_FLAGS (GST_DEBUG_GRAPH_SHOW_NON_DEFAULT_PARAMS),
|
||||
"GST_DEBUG_GRAPH_SHOW_NON_DEFAULT_PARAMS", "non-default-params"},
|
||||
{C_FLAGS (GST_DEBUG_GRAPH_SHOW_STATES), "GST_DEBUG_GRAPH_SHOW_STATES",
|
||||
"states"},
|
||||
{C_FLAGS (GST_DEBUG_GRAPH_SHOW_ALL), "GST_DEBUG_GRAPH_SHOW_ALL", "all"},
|
||||
{0, NULL, NULL}
|
||||
};
|
||||
*id = g_flags_register_static ("GstDebugGraphDetails", values);
|
||||
}
|
||||
|
||||
GType
|
||||
gst_debug_graph_details_get_type (void)
|
||||
{
|
||||
static GType id;
|
||||
static GOnce once = G_ONCE_INIT;
|
||||
|
||||
g_once (&once, (GThreadFunc) register_gst_debug_graph_details, &id);
|
||||
return id;
|
||||
}
|
||||
|
||||
/* enumerations from "gstelement.h" */
|
||||
static void
|
||||
register_gst_state (GType * id)
|
||||
|
|
|
@ -40,6 +40,10 @@ GType gst_clock_entry_type_get_type (void);
|
|||
GType gst_clock_flags_get_type (void);
|
||||
#define GST_TYPE_CLOCK_FLAGS (gst_clock_flags_get_type())
|
||||
|
||||
/* enumerations from "gstdebugutils.h" */
|
||||
GType gst_debug_graph_details_get_type (void);
|
||||
#define GST_TYPE_DEBUG_GRAPH_DETAILS (gst_debug_graph_details_get_type())
|
||||
|
||||
/* enumerations from "gstelement.h" */
|
||||
GType gst_state_get_type (void);
|
||||
#define GST_TYPE_STATE (gst_state_get_type())
|
||||
|
|
|
@ -140,6 +140,10 @@ SOURCE=..\..\gst\gstclock.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\gst\gstdebugutils.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\gst\gstelement.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
Loading…
Reference in a new issue