mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
gst/gst.c: Ref new enum type in gst_init.
Original commit message from CVS: * gst/gst.c: (init_post): Ref new enum type in gst_init. * win32/common/libgstreamer.def: Add recently-added API.
This commit is contained in:
parent
2ae03ba72f
commit
b8b0c80b29
3 changed files with 15 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
2009-01-06 Tim-Philipp Müller <tim.muller at collabora co uk>
|
||||
|
||||
* gst/gst.c: (init_post):
|
||||
Ref new enum type in gst_init.
|
||||
|
||||
* win32/common/libgstreamer.def:
|
||||
Add recently-added API.
|
||||
|
||||
2009-01-06 Tim-Philipp Müller <tim.muller at collabora co uk>
|
||||
|
||||
* docs/gst/gstreamer-sections.txt::
|
||||
|
|
|
@ -1056,6 +1056,7 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data,
|
|||
g_type_class_ref (gst_pipeline_flags_get_type ());
|
||||
g_type_class_ref (gst_plugin_error_get_type ());
|
||||
g_type_class_ref (gst_plugin_flags_get_type ());
|
||||
g_type_class_ref (gst_plugin_dependency_flags_get_type ());
|
||||
g_type_class_ref (gst_rank_get_type ());
|
||||
g_type_class_ref (gst_query_type_get_type ());
|
||||
g_type_class_ref (gst_buffering_mode_get_type ());
|
||||
|
|
|
@ -646,6 +646,9 @@ EXPORTS
|
|||
gst_pipeline_set_delay
|
||||
gst_pipeline_set_new_stream_time
|
||||
gst_pipeline_use_clock
|
||||
gst_plugin_add_dependency
|
||||
gst_plugin_add_dependency_simple
|
||||
gst_plugin_dependency_flags_get_type
|
||||
gst_plugin_error_get_type
|
||||
gst_plugin_error_quark
|
||||
gst_plugin_feature_check_version
|
||||
|
@ -714,6 +717,7 @@ EXPORTS
|
|||
gst_query_new_position
|
||||
gst_query_new_seeking
|
||||
gst_query_new_segment
|
||||
gst_query_new_uri
|
||||
gst_query_parse_buffering_percent
|
||||
gst_query_parse_buffering_range
|
||||
gst_query_parse_buffering_stats
|
||||
|
@ -725,6 +729,7 @@ EXPORTS
|
|||
gst_query_parse_position
|
||||
gst_query_parse_seeking
|
||||
gst_query_parse_segment
|
||||
gst_query_parse_uri
|
||||
gst_query_set_buffering_percent
|
||||
gst_query_set_buffering_range
|
||||
gst_query_set_buffering_stats
|
||||
|
@ -736,6 +741,7 @@ EXPORTS
|
|||
gst_query_set_position
|
||||
gst_query_set_seeking
|
||||
gst_query_set_segment
|
||||
gst_query_set_uri
|
||||
gst_query_type_get_by_nick
|
||||
gst_query_type_get_details
|
||||
gst_query_type_get_name
|
||||
|
|
Loading…
Reference in a new issue