Skip to content

Commit 0ee4084

Browse files
committed
more
1 parent 519adce commit 0ee4084

6 files changed

Lines changed: 22 additions & 17 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ RUN zypper refresh && zypper install --no-recommends -y cmake pkg-config make gc
1212

1313
RUN zypper refresh && zypper install --no-recommends -y clang
1414

15-
RUN zypper refresh && zypper install --no-recommends -y doxygen astyle gdb sox find awk
15+
RUN zypper refresh && zypper install --no-recommends -y doxygen astyle gdb sox
1616

17-
RUN zypper refresh && zypper install --no-recommends -y glib2-devel ninja
17+
RUN zypper refresh && zypper install --no-recommends -y glib2-devel ninja xsltproc
1818

1919
ENTRYPOINT ["/bin/bash"]

src/bindings/fluid_cmd.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4114,7 +4114,11 @@ fluid_cmd_handler_destroy_hash_value(void *value)
41144114
/**
41154115
* Create a new command handler.
41164116
*
4117-
* See new_fluid_cmd_handler2() for more information.
4117+
* @sa See new_fluid_cmd_handler2() for more information.
4118+
*
4119+
* @param synth If not NULL, all the default synthesizer commands will be added to the new handler.
4120+
* @param router If not NULL, all the default midi_router commands will be added to the new handler.
4121+
* @return New command handler, or NULL if alloc failed
41184122
*/
41194123
fluid_cmd_handler_t *new_fluid_cmd_handler(fluid_synth_t *synth, fluid_midi_router_t *router)
41204124
{
@@ -4427,7 +4431,8 @@ void delete_fluid_client(fluid_client_t *client)
44274431
/**
44284432
* Create a new TCP/IP command shell server.
44294433
*
4430-
* See new_fluid_server2() for more information.
4434+
* @sa See new_fluid_server2() for more information.
4435+
* @return New shell server instance or NULL on error
44314436
*/
44324437
fluid_server_t *
44334438
new_fluid_server(fluid_settings_t *settings,

src/rvoice/fluid_chorus.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ fluid_chorus_reset(fluid_chorus_t *chorus)
706706
* Set one or more chorus parameters.
707707
*
708708
* @param chorus Chorus instance.
709-
* @param set Flags indicating which chorus parameters to set (#fluid_chorus_set_t).
709+
* @param set Flags indicating which chorus parameters to set (fluid_chorus_set_t).
710710
* @param nr Chorus voice count (0-99, CPU time consumption proportional to
711711
* this value).
712712
* @param level Chorus level (0.0-10.0).

src/rvoice/fluid_rvoice_mixer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,7 @@ int fluid_rvoice_mixer_set_limiter(fluid_rvoice_mixer_t *mixer, fluid_real_t sam
10381038
* @param fx_group index of the fx group to which parameters must be set.
10391039
* must be in the range [-1..mixer->fx_units[. If -1 the changes are applied to
10401040
* all fx units.
1041-
* @param set Flags indicating which parameters should be set (#fluid_revmodel_set_t)
1041+
* @param set Flags indicating which parameters should be set (fluid_revmodel_set_t)
10421042
* @param values table of parameters values.
10431043
*/
10441044
void
@@ -1102,7 +1102,7 @@ fluid_rvoice_mixer_reverb_get_param(const fluid_rvoice_mixer_t *mixer,
11021102
* must be in the range [-1..mixer->fx_units[. If -1 the changes are applied
11031103
* to all fx group.
11041104
* Keep in mind, that the needed CPU time is proportional to 'nr'.
1105-
* @param set Flags indicating which parameters to set (#fluid_chorus_set_t)
1105+
* @param set Flags indicating which parameters to set (fluid_chorus_set_t)
11061106
* @param values table of pararameters.
11071107
*/
11081108
void

src/synth/fluid_synth.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6738,7 +6738,7 @@ fluid_synth_set_chorus_group_type(fluid_synth_t *synth, int fx_group, int type)
67386738
* FLUID_CHORUS_DEPTH, chorus depth (max value depends on synth sample-rate,
67396739
* 0.0-21.0 is safe for sample-rate values up to 96KHz).
67406740
* FLUID_CHORUS_TYPE, chorus waveform type (#fluid_chorus_mod)
6741-
* @param value, parameter value
6741+
* @param value parameter value
67426742
* @return #FLUID_OK on success, #FLUID_FAILED otherwise.
67436743
*/
67446744
int

src/utils/fluid_hash.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -425,9 +425,9 @@ new_fluid_hashtable_full(fluid_hash_func_t hash_func,
425425
return hashtable;
426426
}
427427

428-
/**
428+
/*
429429
* fluid_hashtable_iter_init:
430-
* iter: an uninitialized #fluid_hashtable_iter_t.
430+
* iter: an uninitialized fluid_hashtable_iter_t.
431431
* hashtable: a #fluid_hashtable_t.
432432
*
433433
* Initializes a key/value pair iterator and associates it with
@@ -445,7 +445,7 @@ new_fluid_hashtable_full(fluid_hash_func_t hash_func,
445445
* ]|
446446
*
447447
* Since: 2.16
448-
**/
448+
*/
449449
void
450450
fluid_hashtable_iter_init(fluid_hashtable_iter_t *iter,
451451
fluid_hashtable_t *hashtable)
@@ -464,7 +464,7 @@ fluid_hashtable_iter_init(fluid_hashtable_iter_t *iter,
464464

465465
/**
466466
* fluid_hashtable_iter_next:
467-
* iter: an initialized #fluid_hashtable_iter_t.
467+
* iter: an initialized fluid_hashtable_iter_t.
468468
* key: a location to store the key, or NULL.
469469
* value: a location to store the value, or NULL.
470470
*
@@ -530,7 +530,7 @@ fluid_hashtable_iter_next(fluid_hashtable_iter_t *iter, void **key,
530530

531531
/**
532532
* fluid_hashtable_iter_get_hash_table:
533-
* iter: an initialized #fluid_hashtable_iter_t.
533+
* iter: an initialized fluid_hashtable_iter_t.
534534
*
535535
* Returns the #fluid_hashtable_t associated with iter.
536536
*
@@ -611,7 +611,7 @@ iter_remove_or_steal(RealIter *ri, int notify)
611611

612612
/**
613613
* fluid_hashtable_iter_remove():
614-
* iter: an initialized #fluid_hashtable_iter_t.
614+
* iter: an initialized fluid_hashtable_iter_t.
615615
*
616616
* Removes the key/value pair currently pointed to by the iterator
617617
* from its associated #fluid_hashtable_t. Can only be called after
@@ -633,7 +633,7 @@ fluid_hashtable_iter_remove(fluid_hashtable_iter_t *iter)
633633

634634
/**
635635
* fluid_hashtable_iter_steal():
636-
* iter: an initialized #fluid_hashtable_iter_t.
636+
* iter: an initialized fluid_hashtable_iter_t.
637637
*
638638
* Removes the key/value pair currently pointed to by the iterator
639639
* from its associated #fluid_hashtable_t, without calling the key and value
@@ -1068,7 +1068,7 @@ fluid_hashtable_foreach_remove_or_steal(fluid_hashtable_t *hashtable,
10681068
* the #fluid_hashtable_t, they are used to free the memory allocated for the removed
10691069
* keys and values.
10701070
*
1071-
* See #fluid_hashtable_iter_t for an alternative way to loop over the
1071+
* See fluid_hashtable_iter_t for an alternative way to loop over the
10721072
* key/value pairs in the hash table.
10731073
*
10741074
* Return value: the number of key/value pairs removed.
@@ -1094,7 +1094,7 @@ fluid_hashtable_foreach_remove(fluid_hashtable_t *hashtable,
10941094
* If the function returns TRUE, then the key/value pair is removed from the
10951095
* #fluid_hashtable_t, but no key or value destroy functions are called.
10961096
*
1097-
* See #fluid_hashtable_iter_t for an alternative way to loop over the
1097+
* See fluid_hashtable_iter_t for an alternative way to loop over the
10981098
* key/value pairs in the hash table.
10991099
*
11001100
* Return value: the number of key/value pairs removed.

0 commit comments

Comments
 (0)