Skip to content

Commit a164f6d

Browse files
committed
Fixed inline documentation
1 parent 78f5dd6 commit a164f6d

File tree

1 file changed

+3
-6
lines changed
  • include/lsp-plug.in/dsp/common/search

1 file changed

+3
-6
lines changed

include/lsp-plug.in/dsp/common/search/minmax.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,20 +75,18 @@ LSP_DSP_LIB_SYMBOL(float, sign_min, const float *src, size_t count);
7575
/** Calculate min { src }, max { src }
7676
*
7777
* @param src source vector
78+
* @param count number of elements
7879
* @param min pointer to store minimum value
7980
* @param max pointer to store maximum value
80-
* @param count number of elements
81-
* @return maximum value
8281
*/
8382
LSP_DSP_LIB_SYMBOL(void, minmax, const float *src, size_t count, float *min, float *max);
8483

8584
/** Calculate min { abs(src) }, max { abs(src) }
8685
*
8786
* @param src source vector
87+
* @param count number of elements
8888
* @param min pointer to store minimum value
8989
* @param max pointer to store maximum value
90-
* @param count number of elements
91-
* @return maximum value
9290
*/
9391
LSP_DSP_LIB_SYMBOL(void, abs_minmax, const float *src, size_t count, float *min, float *max);
9492

@@ -97,10 +95,9 @@ LSP_DSP_LIB_SYMBOL(void, abs_minmax, const float *src, size_t count, float *min,
9795
* max = src[i] : abs(src[i]) -> max
9896
*
9997
* @param src source vector
98+
* @param count number of elements
10099
* @param min pointer to store minimum value
101100
* @param max pointer to store maximum value
102-
* @param count number of elements
103-
* @return maximum value
104101
*/
105102
LSP_DSP_LIB_SYMBOL(void, sign_minmax, const float *src, size_t count, float *min, float *max);
106103

0 commit comments

Comments
 (0)