mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 05:31:15 +00:00
quick followup thought
Original commit message from CVS: quick followup thought
This commit is contained in:
parent
dee5936497
commit
db4729409f
1 changed files with 6 additions and 1 deletions
|
@ -18,7 +18,7 @@ $Id$
|
||||||
* GST_TYPE_UI_HINT
|
* GST_TYPE_UI_HINT
|
||||||
- add hints to generate 'good' looking interfaces to elements
|
- add hints to generate 'good' looking interfaces to elements
|
||||||
- API:
|
- API:
|
||||||
GList *get_group_list()
|
GList *get_group_list();
|
||||||
- features
|
- features
|
||||||
- grouping of parameters
|
- grouping of parameters
|
||||||
- each group has a label and references a list of dparams or properties
|
- each group has a label and references a list of dparams or properties
|
||||||
|
@ -30,8 +30,13 @@ $Id$
|
||||||
* GST_TYPE_MUSIC_GENERATOR
|
* GST_TYPE_MUSIC_GENERATOR
|
||||||
- add hints so that application can use a element as an instrument
|
- add hints so that application can use a element as an instrument
|
||||||
- API:
|
- API:
|
||||||
|
// param types
|
||||||
DParam *get_note_dparam();
|
DParam *get_note_dparam();
|
||||||
GList *get_trigger_dparams();
|
GList *get_trigger_dparams();
|
||||||
|
// -- or
|
||||||
|
DParamType get_dparam_type(DParam *);
|
||||||
|
dparamtype = { NOTE, TRIGGER, OTHER }
|
||||||
|
// voices
|
||||||
char *get_number_of_voices_property();
|
char *get_number_of_voices_property();
|
||||||
GList *get_global_param_names();
|
GList *get_global_param_names();
|
||||||
GList *get_voice_param_names();
|
GList *get_voice_param_names();
|
||||||
|
|
Loading…
Reference in a new issue