This website works better with JavaScript.
首頁
說明
登入
hms
/
aptdec
镜像来自
https://github.com/Xerbo/aptdec
關註
1
收藏
0
複製
0
程式碼
問題管理
0
版本發佈
7
Wiki
Activity
瀏覽代碼
Included complex.h needed on Android. Remove unused variables.
pull/26/head
Jon Beniston
1 年之前
父節點
57271c33b9
當前提交
a73017f0fa
共有
2 個文件被更改
,包括
5 次插入
和
1 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+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) {
Write
Preview
Loading…
取消
儲存