Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
visus
/
teensy-audio
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Add TODO for analyze peak optimization
dds
PaulStoffregen
hace 10 años
padre
e9535e5c0a
commit
0af537f2ca
Se han
modificado 1 ficheros
con
2 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
+2
-0
analyze_peak.cpp
+ 2
- 0
analyze_peak.cpp
Ver fichero
@@ -42,6 +42,8 @@ void AudioAnalyzePeak::update(void)
max = max_sample;
do {
int16_t d=*p++;
// TODO: can we speed this up with SSUB16 and SEL
// http://www.m4-unleashed.com/parallel-comparison/
if (d<min) min=d;
if (d>max) max=d;
} while (p < end);
Escribir
Vista previa
Cargando…
Cancelar
Guardar