From 4b1cffa4cd4b9e1ef6f7adcd25f964b125b087ff Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Tue, 20 Sep 2005 20:54:37 +0000 Subject: [PATCH] remove files Original commit message from CVS: remove files --- docs/gst/tmpl/gstelement.sgml | 24 ++ docs/gst/tmpl/gstenumtypes.sgml | 3 + docs/gst/tmpl/gstimplementsinterface.sgml | 3 + docs/gst/tmpl/gstindex.sgml | 434 ------------------------------ docs/gst/tmpl/gstindexfactory.sgml | 68 ----- docs/gst/tmpl/gstinfo.sgml | 3 + docs/gst/tmpl/gstobject.sgml | 3 + docs/gst/tmpl/gstpad.sgml | 3 + docs/gst/tmpl/gstpadtemplate.sgml | 3 + docs/gst/tmpl/gstpipeline.sgml | 3 + docs/gst/tmpl/gstplugin.sgml | 3 + docs/gst/tmpl/gstpluginfeature.sgml | 112 -------- docs/gst/tmpl/gsttypes.sgml | 64 ----- docs/gst/tmpl/gstvalue.sgml | 3 + 14 files changed, 51 insertions(+), 678 deletions(-) delete mode 100644 docs/gst/tmpl/gstindex.sgml delete mode 100644 docs/gst/tmpl/gstindexfactory.sgml delete mode 100644 docs/gst/tmpl/gstpluginfeature.sgml delete mode 100644 docs/gst/tmpl/gsttypes.sgml diff --git a/docs/gst/tmpl/gstelement.sgml b/docs/gst/tmpl/gstelement.sgml index 87cad85..faff527 100644 --- a/docs/gst/tmpl/gstelement.sgml +++ b/docs/gst/tmpl/gstelement.sgml @@ -65,6 +65,9 @@ and gst_element_set_clock(). You can wait for the clock to reach a given + + + @@ -154,6 +157,17 @@ This enum defines the standard flags that an element may have. @GST_ELEMENT_UNPARENTING: @GST_ELEMENT_FLAG_LAST: + + + + + +@GST_STATE_VOID_PENDING: +@GST_STATE_NULL: +@GST_STATE_READY: +@GST_STATE_PAUSED: +@GST_STATE_PLAYING: + @@ -166,6 +180,16 @@ This enum defines the standard flags that an element may have. @GST_STATE_CHANGE_PAUSED_TO_READY: @GST_STATE_CHANGE_READY_TO_NULL: + + + + + +@GST_STATE_CHANGE_FAILURE: +@GST_STATE_CHANGE_SUCCESS: +@GST_STATE_CHANGE_ASYNC: +@GST_STATE_CHANGE_NO_PREROLL: + This macro returns the current state of the element. diff --git a/docs/gst/tmpl/gstenumtypes.sgml b/docs/gst/tmpl/gstenumtypes.sgml index e9361f1..52ba68c 100644 --- a/docs/gst/tmpl/gstenumtypes.sgml +++ b/docs/gst/tmpl/gstenumtypes.sgml @@ -14,3 +14,6 @@ all gstreamer core related enumerations + + + diff --git a/docs/gst/tmpl/gstimplementsinterface.sgml b/docs/gst/tmpl/gstimplementsinterface.sgml index 5683450..df7fb5f 100644 --- a/docs/gst/tmpl/gstimplementsinterface.sgml +++ b/docs/gst/tmpl/gstimplementsinterface.sgml @@ -14,6 +14,9 @@ Core interface implemented by #GstElements that allows runtime querying of inter + + + diff --git a/docs/gst/tmpl/gstindex.sgml b/docs/gst/tmpl/gstindex.sgml deleted file mode 100644 index 74254d5..0000000 --- a/docs/gst/tmpl/gstindex.sgml +++ /dev/null @@ -1,434 +0,0 @@ - -GstIndex - - -Generate indexes on objects - - - -GstIndex is used to generate a stream index of one or more elements -in a pipeline. - - - - -#GstIndexFactory - - - - - - - - - - -Is emitted when a new entry is added to the index. - - -@gstindex: the object which received the signal. -@arg1: The entry added to the index. - - - - - - - - -The basic element of an index. - - -@type: -@id: - - - -A group of related entries in an index. - - -@groupnum: -@entries: -@certainty: -@peergroup: - - - -The certainty of a group in the index. - - -@GST_INDEX_UNKNOWN: accuracy is not known -@GST_INDEX_CERTAIN: accuracy is perfect -@GST_INDEX_FUZZY: accuracy is fuzzy - - - -The different types of entries in the index. - - -@GST_INDEX_ENTRY_ID: This entry is an id that maps an index id to its owner object -@GST_INDEX_ENTRY_ASSOCIATION: This entry is an association between formats -@GST_INDEX_ENTRY_OBJECT: An object -@GST_INDEX_ENTRY_FORMAT: A format definition - - - -Specify the method to find an index entry in the index. - - -@GST_INDEX_LOOKUP_EXACT: There has to be an exact indexentry with the given format/value -@GST_INDEX_LOOKUP_BEFORE: The exact entry or the one before it -@GST_INDEX_LOOKUP_AFTER: The exact entry or the one after it - - - -Get the number of associations in the entry. - - -@entry: The entry to query - - - - -Get the flags for this entry - - -@entry: The entry to query - - - - -Get the i-th format of the entry. - - -@entry: The entry to query -@i: The format index - - - - -Get the i-th value of the entry. - - -@entry: The entry to query -@i: The value index - - - - -An association in an entry. - - -@format: the format of the association -@value: the value of the association - - - -flags for an association entry - - -@GST_ASSOCIATION_FLAG_NONE: no extra flags -@GST_ASSOCIATION_FLAG_KEY_UNIT: the entry marks a key unit, a key unit is one - that marks a place where one can randomly seek to. -@GST_ASSOCIATION_FLAG_DELTA_UNIT: -@GST_ASSOCIATION_FLAG_LAST: extra user defined flags should start here. - - - -Get the format of the format entry - - -@entry: The entry to query - - - - -Get the key of the format entry - - -@entry: The entry to query - - - - -An invalid index id - - - - - - -Get the description of the id entry - - -@entry: The entry to query - - - - -Function to filter out entries in the index. - - -@index: The index being queried -@entry: The entry to be added. -@Returns: This function should return TRUE if the entry is to be added - to the index, FALSE otherwise. - - - - -The method used to resolve index writers - - -@GST_INDEX_RESOLVER_CUSTOM: Use a custom resolver -@GST_INDEX_RESOLVER_GTYPE: Resolve based on the GType of the object -@GST_INDEX_RESOLVER_PATH: Resolve on the path in graph - - - -Function to resolve ids to writer descriptions. - - -@index: the index being queried. -@writer: The object that wants to write -@writer_string: A description of the writer. -@user_data: user_data as registered -@Returns: TRUE if an id could be assigned to the writer. - -@writer_id: A pointer to the id that has to be assigned to this writer - - - - -Flags for this index - - -@GST_INDEX_WRITABLE: The index is writable -@GST_INDEX_READABLE: The index is readable -@GST_INDEX_FLAG_LAST: First flag that can be used by subclasses - - - -Check if the index can be read from - - -@obj: The index to check - - - - -Check if the index can be written to - - -@obj: The index to check - - - - - - - -@Returns: - - - - - - - -@index: -@id: - - - - - - - -@index: -@Returns: - - - - - - - -@index: -@Returns: - - - - - - - -@index: -@groupnum: -@Returns: - - - - - - - -@index: -@certainty: - - - - - - - -@index: -@Returns: - - - - - - - -@index: -@filter: -@user_data: - - - - - - - -@index: -@resolver: -@user_data: - - - - - - - -@index: -@writer: -@id: -@Returns: - - - - - - - -@index: -@id: -@format: -@Returns: - - - - - - - -@index: -@id: -@flags: -@format: -@value: -@Varargs: -@Returns: - - - - - - - -@index: -@id: -@key: -@type: -@object: -@Returns: - - - - - - - -@index: -@id: -@description: -@Returns: - - - - - - - -@index: -@id: -@method: -@flags: -@format: -@value: -@Returns: - - - - - - - -@index: -@id: -@method: -@flags: -@format: -@value: -@func: -@user_data: -@Returns: - - - - - - - -@Returns: - - - - - - - -@entry: -@Returns: - - - - - - - -@entry: - - - - - - - -@entry: -@format: -@value: -@Returns: - - diff --git a/docs/gst/tmpl/gstindexfactory.sgml b/docs/gst/tmpl/gstindexfactory.sgml deleted file mode 100644 index f458efd..0000000 --- a/docs/gst/tmpl/gstindexfactory.sgml +++ /dev/null @@ -1,68 +0,0 @@ - -GstIndexFactory - - -Create GstIndexes from a factory - - - -GstIndexFactory is used to dynamically create GstIndex implementations. - - - - -#GstIndex - - - - -The GstIndexFactory object - - - - - - - - -@name: -@longdesc: -@type: -@Returns: - - - - - - - -@factory: - - - - - - - -@name: -@Returns: - - - - - - - -@factory: -@Returns: - - - - - - - -@name: -@Returns: - - diff --git a/docs/gst/tmpl/gstinfo.sgml b/docs/gst/tmpl/gstinfo.sgml index 59e5b43..a8b3a38 100644 --- a/docs/gst/tmpl/gstinfo.sgml +++ b/docs/gst/tmpl/gstinfo.sgml @@ -68,6 +68,9 @@ categories. These are explained at GST_DEBUG_CATEGORY_INIT(). and environment variables that affect the debugging output. + + + The level defines the importance of a debugging message. The more important a diff --git a/docs/gst/tmpl/gstobject.sgml b/docs/gst/tmpl/gstobject.sgml index 9a11e50..7baef0a 100644 --- a/docs/gst/tmpl/gstobject.sgml +++ b/docs/gst/tmpl/gstobject.sgml @@ -67,6 +67,9 @@ object. + + + diff --git a/docs/gst/tmpl/gstpad.sgml b/docs/gst/tmpl/gstpad.sgml index 4998300..3c0d226 100644 --- a/docs/gst/tmpl/gstpad.sgml +++ b/docs/gst/tmpl/gstpad.sgml @@ -57,6 +57,9 @@ Last reviewed on December 13th, 2002 (0.5.0.1) #GstPadTemplate, #GstElement, #GstEvent + + + diff --git a/docs/gst/tmpl/gstpadtemplate.sgml b/docs/gst/tmpl/gstpadtemplate.sgml index 9ea3315..117ebb6 100644 --- a/docs/gst/tmpl/gstpadtemplate.sgml +++ b/docs/gst/tmpl/gstpadtemplate.sgml @@ -73,6 +73,9 @@ The following example shows you how to add the padtemplate to an elementfactory: #GstPad, #GstElementFactory + + + The padtemplate object. diff --git a/docs/gst/tmpl/gstpipeline.sgml b/docs/gst/tmpl/gstpipeline.sgml index 15c5a6b..a5010b8 100644 --- a/docs/gst/tmpl/gstpipeline.sgml +++ b/docs/gst/tmpl/gstpipeline.sgml @@ -21,6 +21,9 @@ the pipeline, use gst_object_unref() to free its resources. #GstBin + + + diff --git a/docs/gst/tmpl/gstplugin.sgml b/docs/gst/tmpl/gstplugin.sgml index 6fd485e..3e1cf62 100644 --- a/docs/gst/tmpl/gstplugin.sgml +++ b/docs/gst/tmpl/gstplugin.sgml @@ -35,6 +35,9 @@ to bring the plugin into memory. #GstPluginFeature, #GstType, #GstAutoplug, #GstElementFactory + + + Get the error quark diff --git a/docs/gst/tmpl/gstpluginfeature.sgml b/docs/gst/tmpl/gstpluginfeature.sgml deleted file mode 100644 index a257a56..0000000 --- a/docs/gst/tmpl/gstpluginfeature.sgml +++ /dev/null @@ -1,112 +0,0 @@ - -GstPluginFeature - - -Base class for contents of a GstPlugin - - - -This is a base class for anything that can be added to a #GstPlugin. - - - - -#GstPlugin - - - - - - - - - - -Get the name of the feature - - -@feature: The feature to query - - - - - - - -@name: -@type: - - - -A function that can be used with e.g. gst_registry_feature_filter() -to get a list of pluginfeature that match certain criteria. - - -@feature: the pluginfeature to check -@user_data: the user_data that has been passed on e.g. gst_registry_feature_filter() -@Returns: TRUE for a positive match, FALSE otherwise - - - - - - - -@feature: -@data: -@Returns: - - - - - - - -@feature: -@rank: - - - - - - - -@feature: -@name: - - - - - - - -@feature: -@Returns: - - - - - - - -@feature: -@Returns: - - - - - - - -@feature: -@Returns: - - - - - - - -@list: - - diff --git a/docs/gst/tmpl/gsttypes.sgml b/docs/gst/tmpl/gsttypes.sgml deleted file mode 100644 index e1ca64c..0000000 --- a/docs/gst/tmpl/gsttypes.sgml +++ /dev/null @@ -1,64 +0,0 @@ - -GstTypes - - -various global enums and constants - - - - - - - - - - - - - - - - -@GST_STATE_VOID_PENDING: -@GST_STATE_NULL: -@GST_STATE_READY: -@GST_STATE_PAUSED: -@GST_STATE_PLAYING: - - - - - - -@GST_STATE_CHANGE_NULL_TO_READY: -@GST_STATE_CHANGE_READY_TO_PAUSED: -@GST_STATE_CHANGE_PAUSED_TO_PLAYING: -@GST_STATE_CHANGE_PLAYING_TO_PAUSED: -@GST_STATE_CHANGE_PAUSED_TO_READY: -@GST_STATE_CHANGE_READY_TO_NULL: - - - - - - -@GST_STATE_CHANGE_FAILURE: -@GST_STATE_CHANGE_SUCCESS: -@GST_STATE_CHANGE_ASYNC: -@GST_STATE_CHANGE_NO_PREROLL: - - - -Element priority ranks. Defines the order in which the autoplugger (or similar -rank-picking mechanisms) will choose this element over an alternative one -with the same function. -The rank is a unsigned integer ranging from 0 (GST_RANK_NONE) to 256 (GST_RANK_PRIMARY). -These constants serve as a rough guidiance for defining the rank of a #GstPlugin using -gst_plugin_feature_set_rank(). - - -@GST_RANK_NONE: will be chosen last or not at all -@GST_RANK_MARGINAL: unlikly to be chosen -@GST_RANK_SECONDARY: likely to be chosen -@GST_RANK_PRIMARY: will be chosen first - diff --git a/docs/gst/tmpl/gstvalue.sgml b/docs/gst/tmpl/gstvalue.sgml index 0e7aa44..299cf49 100644 --- a/docs/gst/tmpl/gstvalue.sgml +++ b/docs/gst/tmpl/gstvalue.sgml @@ -14,6 +14,9 @@ GValue implementations specific to GStreamer + + + -- 2.7.4