-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
138 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
[submodule "android/speex_codec/src/main/cpp/speex"] | ||
path = android/speex_codec/src/main/cpp/speex | ||
url = [email protected]:xiph/speex.git | ||
[submodule "android/speex_codec/src/main/cpp/speexdsp"] | ||
path = android/speex_codec/src/main/cpp/speexdsp | ||
url = [email protected]:xiph/speexdsp.git | ||
[submodule "android/speex_codec/src/main/cpp/kissfft"] | ||
path = android/speex_codec/src/main/cpp/kissfft | ||
url = [email protected]:mborgerding/kissfft.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
android/speex_codec/src/main/cpp/include/speexdsp_config_types.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// | ||
// Created by crc32 on 06/11/2024. | ||
// | ||
|
||
#ifndef ANDROID_SPEEXDSP_CONFIG_TYPES_H | ||
#define ANDROID_SPEEXDSP_CONFIG_TYPES_H | ||
typedef short spx_int16_t; | ||
typedef unsigned short spx_uint16_t; | ||
typedef int spx_int32_t; | ||
typedef unsigned int spx_uint32_t; | ||
#endif //ANDROID_SPEEXDSP_CONFIG_TYPES_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters