diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2007-11-17 17:24:53 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2007-11-17 17:24:53 +0000 |
commit | 3aca801f4db47e0864df25940875b53520c9f332 (patch) | |
tree | 70fa1b581dc57cf8a6c7ab16281f5c60559cb7ee /gst | |
parent | 819c9f4e2a380f4beaef1f106788e806462f237d (diff) |
gst/gstpreset.c: Add some comments and TODOs.
Original commit message from CVS:
* gst/gstpreset.c:
Add some comments and TODOs.
* gst/gstpreset.h:
Add padding for future changes.
* plugins/elements/gstqueue.c:
Implement the iface.
Diffstat (limited to 'gst')
-rw-r--r-- | gst/gstpreset.c | 1 | ||||
-rw-r--r-- | gst/gstpreset.h | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/gst/gstpreset.c b/gst/gstpreset.c index 6ac1bad0f..d4993e4eb 100644 --- a/gst/gstpreset.c +++ b/gst/gstpreset.c @@ -36,6 +36,7 @@ * - how can we support both Preferences and Presets, a flag for _get_preset_names ? * - should there be a 'preset-list' property to get the preset list * (and to connect a notify:: to to listen for changes) + * - do we want to ship presets for some elements? * * http://www.buzztard.org/index.php/Preset_handling_interface */ diff --git a/gst/gstpreset.h b/gst/gstpreset.h index fab9babd7..08e96113e 100644 --- a/gst/gstpreset.h +++ b/gst/gstpreset.h @@ -61,6 +61,9 @@ struct _GstPresetInterface * instances of a type and if the list changes, we trigger the signal for all * instance */ + + /*< private >*/ + gpointer _gst_reserved[GST_PADDING]; }; GType gst_preset_get_type(void); |