gst/gstregistrybinary.h (GstBinaryPluginElement,

Original commit message from CVS:
* gst/gstregistrybinary.h (GstBinaryPluginElement,
GstBinaryPluginFeature, _GstBinaryElementFactory, plugin_feature,
GstBinaryElementFactory, _GstBinaryTypeFindFactory, plugin_feature):
Comment structs and reformat to fix the build (that stuff should go
into a priv. header).
This commit is contained in:
Stefan Kost 2007-04-25 12:30:27 +00:00
parent 577034f170
commit 96438b7b4f
2 changed files with 28 additions and 6 deletions

View file

@ -1,3 +1,11 @@
2007-04-25 Stefan Kost <ensonic@users.sf.net>
* gst/gstregistrybinary.h (GstBinaryPluginElement,
GstBinaryPluginFeature, _GstBinaryElementFactory, plugin_feature,
GstBinaryElementFactory, _GstBinaryTypeFindFactory, plugin_feature):
Comment structs and reformat to fix the build (that stuff should go
into a priv. header).
2007-04-25 Stefan Kost <ensonic@users.sf.net>
* gst/gstregistrybinary.c: (gst_registry_binary_save_feature),

View file

@ -101,10 +101,7 @@ typedef struct _GstBinaryPluginElement
/*
* GstBinaryPluginFeature:
* @npadtemplates: stores the number of GstBinaryPadTemplate structures
* following the structure
* @ninterfaces: stores the number of interface names following the structure
* @nuriprotocols: stores the number of protocol strings following the structure
* @rank: rank of the feature
*
* A structure containing the plugin features
*/
@ -113,7 +110,17 @@ typedef struct _GstBinaryPluginFeature
gulong rank;
} GstBinaryPluginFeature;
typedef struct _GstBinaryElementFactory {
/*
* GstBinaryElementFactory:
* @npadtemplates: stores the number of GstBinaryPadTemplate structures
* following the structure
* @ninterfaces: stores the number of interface names following the structure
* @nuriprotocols: stores the number of protocol strings following the structure
*
* A structure containing the element factory fields
*/
typedef struct _GstBinaryElementFactory
{
GstBinaryPluginFeature plugin_feature;
guint npadtemplates;
@ -121,7 +128,14 @@ typedef struct _GstBinaryElementFactory {
guint nuriprotocols;
} GstBinaryElementFactory;
typedef struct _GstBinaryTypeFindFactory {
/*
* GstBinaryTypeFindFactory:
* @nextensions: stores the number of typefind extensions
*
* A structure containing the element factory fields
*/
typedef struct _GstBinaryTypeFindFactory
{
GstBinaryPluginFeature plugin_feature;
guint nextensions;