2023-02-08 18:12:00 +01:00
|
|
|
/* Spa */
|
|
|
|
|
/* SPDX-FileCopyrightText: Copyright © 2022 Wim Taymans */
|
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
2022-07-14 10:07:07 +02:00
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
2022-09-27 11:25:02 +02:00
|
|
|
#include "peaks-ops.h"
|
2022-07-14 10:07:07 +02:00
|
|
|
|
2022-09-27 11:25:02 +02:00
|
|
|
void peaks_min_max_c(struct peaks *peaks, const float * SPA_RESTRICT src,
|
|
|
|
|
uint32_t n_samples, float *min, float *max)
|
2022-07-14 10:07:07 +02:00
|
|
|
{
|
2022-09-07 16:00:31 +02:00
|
|
|
uint32_t n;
|
2022-09-27 11:25:02 +02:00
|
|
|
float t, mi = *min, ma = *max;
|
|
|
|
|
for (n = 0; n < n_samples; n++) {
|
|
|
|
|
t = src[n];
|
|
|
|
|
mi = fminf(mi, t);
|
|
|
|
|
ma = fmaxf(ma, t);
|
|
|
|
|
}
|
|
|
|
|
*min = mi;
|
|
|
|
|
*max = ma;
|
2022-07-14 10:07:07 +02:00
|
|
|
}
|
2022-09-07 16:00:31 +02:00
|
|
|
|
2022-09-27 11:25:02 +02:00
|
|
|
float peaks_abs_max_c(struct peaks *peaks, const float * SPA_RESTRICT src,
|
|
|
|
|
uint32_t n_samples, float max)
|
|
|
|
|
{
|
|
|
|
|
uint32_t n;
|
|
|
|
|
for (n = 0; n < n_samples; n++)
|
|
|
|
|
max = fmaxf(fabsf(src[n]), max);
|
|
|
|
|
return max;
|
|
|
|
|
}
|