Ce site fonctionne mieux avec JavaScript.
Accueil
Aide
Connexion
hms
/
aptdec
miroir de
https://github.com/Xerbo/aptdec
Suivre
1
Ajouter aux favoris
0
Bifurcation
0
Code
Tickets
0
Versions
7
Wiki
Activité
Parcourir la source
Included complex.h needed on Android. Remove unused variables.
pull/26/head
Jon Beniston
il y a 1 an
Parent
57271c33b9
révision
a73017f0fa
2 fichiers modifiés
avec
5 ajouts
et
1 suppressions
Vue séparée
Option de Diff
Voir les Statistiques
Télécharger le Fichier Patch
Télécharger le Fichier des Différences
+4
-0
README.md
+1
-1
src/dsp.c
+ 4
- 0
README.md
Voir le fichier
@@ -123,6 +123,10 @@ To build natively on Windows using MSVC, you will also need: git, ninja and cmak
If you just wish to build libaptdec on Windows, libpng and libsndfile aren't needed.
## Building for Android
Requires at least API 23
## Further Reading
[User's Guide for Building and Operating
+ 1
- 1
src/dsp.c
Voir le fichier
@@ -20,6 +20,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <complex.h>
#include "apt.h"
#include "filter.h"
@@ -90,7 +91,6 @@ static int getamp(float *ampbuff, int count, apt_getsamples_t getsamples, void *
static int nin = 0;
for (int n = 0; n < count; n++) {
float I2, Q;
// Get some more samples when needed
if (nin < HILBERT_FILTER_SIZE * 2 + 2) {
Écrire
Aperçu
Chargement…
Annuler
Enregistrer