이 웹사이트는 자바스크립트 활성화가 필요합니다.
홈
도움말
로그인
hms
/
aptdec
의 미러
https://github.com/Xerbo/aptdec
보기
1
좋아요
0
포크
0
코드
이슈
0
릴리즈
7
위키
활동
2 커밋
57271c33b9
...
7db20300e5
작성자
SHA1
메시지
날짜
Liam
7db20300e5
Merge pull request
#26
from srcejon/android
Fix compilation on Android
11 달 전
Jon Beniston
a73017f0fa
Included complex.h needed on Android. Remove unused variables.
1 년 전
2개의 변경된 파일
과
5개의 추가작업
그리고
1개의 파일을 삭제
분할 보기
Diff Options
Show Stats
+4
-0
README.md
+1
-1
src/dsp.c
+ 4
- 0
README.md
파일 보기
@@ -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
파일 보기
@@ -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) {
쓰기
미리보기
불러오는 중...
취소
저장