Skip to content

Commit 5994a64

Browse files
Merge branch 'main' into feat/graph_refactor_2
2 parents 22c5b5f + 5c3af3c commit 5994a64

116 files changed

Lines changed: 1061 additions & 345 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/common-app/src/demos/Crossfade/Crossfade.tsx

Lines changed: 483 additions & 0 deletions
Large diffs are not rendered by default.
45.6 KB
Loading
52.2 KB
Loading
4.19 MB
Binary file not shown.
4.49 MB
Binary file not shown.
2.75 MB
Binary file not shown.
2.31 MB
Binary file not shown.

apps/common-app/src/demos/index.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { icons } from 'lucide-react-native';
22

33
import PedalBoard from './PedalBoard/PedalBoard';
44
import Record from './Record/Record';
5+
import Crossfade from './Crossfade/Crossfade';
56

67
interface SimplifiedIconProps {
78
color?: string;
@@ -33,4 +34,12 @@ export const demos: DemoScreen[] = [
3334
icon: icons.Guitar,
3435
screen: PedalBoard,
3536
},
37+
{
38+
key: 'Crossfade',
39+
title: 'Crossfade',
40+
subtitle:
41+
'Demonstrates crossfading between two audio files.',
42+
icon: icons.ArrowLeftRight,
43+
screen: Crossfade,
44+
}
3645
] as const;

apps/fabric-example/ios/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2514,7 +2514,7 @@ EXTERNAL SOURCES:
25142514

25152515
SPEC CHECKSUMS:
25162516
FBLazyVector: e97c19a5a442429d1988f182a1940fb08df514da
2517-
hermes-engine: ca0c1d4fe0200e05fedd8d7c0c283b54cd461436
2517+
hermes-engine: 471e81260adadffc041e40c5eea01333addabb53
25182518
RCTDeprecation: af44b104091a34482596cd9bd7e8d90c4e9b4bd7
25192519
RCTRequired: bb77b070f75f53398ce43c0aaaa58337cebe2bf6
25202520
RCTSwiftUI: afc0a0a635860da1040a0b894bfd529da06d7810
@@ -2523,7 +2523,7 @@ SPEC CHECKSUMS:
25232523
React: 1ba7d364ade7d883a1ec055bfc3606f35fdee17b
25242524
React-callinvoker: bc2a26f8d84fb01f003fc6de6c9337b64715f95b
25252525
React-Core: 7840d3a80b43a95c5e80ef75146bd70925ebab0f
2526-
React-Core-prebuilt: e44365cf4785c3aa56ababc9ab204fe8bc6b17d0
2526+
React-Core-prebuilt: 6586031f606ff8ab466cac9e8284053a91342881
25272527
React-CoreModules: 2eb010400b63b89e53a324ffb3c112e4c7c3ce42
25282528
React-cxxreact: a558e92199d26f145afa9e62c4233cf8e7950efe
25292529
React-debug: 755200a6e7f5e6e0a40ff8d215493d43cce285fc
@@ -2587,7 +2587,7 @@ SPEC CHECKSUMS:
25872587
ReactAppDependencyProvider: e96e93b493d8d86eeaee3e590ba0be53f6abe46f
25882588
ReactCodegen: f66521b131699d6af0790f10653933b3f1f79a6f
25892589
ReactCommon: 07572bf9e687c8a52fbe4a3641e9e3a1a477c78e
2590-
ReactNativeDependencies: 3467a1fea6f7a524df13b30430bebcc254d9aee2
2590+
ReactNativeDependencies: a5d71d95f2654107eb45e6ece04caba36beac2bd
25912591
RNAudioAPI: fa5c075d2fcdb1ad9a695754b38f07c8c3074396
25922592
RNGestureHandler: 07de6f059e0ee5744ae9a56feb07ee345338cc31
25932593
RNReanimated: d75c81956bf7531fe08ba4390149002ab8bdd127
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Full clang-tidy configuration for react-native-audio-api C++.
2+
# See: https://clang.llvm.org/extra/clang-tidy/checks/list.html
3+
# Tweak checks in .clangd (Diagnostics.ClangTidy.Remove) to disable noisy ones.
4+
5+
Checks: '-*,
6+
bugprone-*,
7+
-bugprone-easily-swappable-parameters,
8+
modernize-*,
9+
-modernize-use-trailing-return-type,
10+
performance-*,
11+
readability-*,
12+
-readability-uppercase-literal-suffix,
13+
-readability-math-missing-parentheses,
14+
-readability-isolate-declaration,
15+
-readability-identifier-length,
16+
cppcoreguidelines-*,
17+
-cppcoreguidelines-non-private-member-variables-in-classes,
18+
-cppcoreguidelines-pro-bounds-avoid-unchecked-container-access,
19+
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
20+
-cppcoreguidelines-pro-type-union-access,
21+
-cppcoreguidelines-pro-type-reinterpret-cast,
22+
-cppcoreguidelines-avoid-do-while,
23+
-cppcoreguidelines-pro-bounds-constant-array-index,
24+
-cppcoreguidelines-init-variables,
25+
-cppcoreguidelines-pro-type-vararg,
26+
concurrency-*'
27+
28+
HeaderFilterRegex: '.*/(audioapi|common/cpp|src/main/cpp)/.*'
29+
30+
FormatStyle: file

0 commit comments

Comments
 (0)