react-native-audio-api 0.7.2-nightly-3480813-20250828 → 0.7.2-nightly-5d5b3d1-20250830
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -142,7 +142,7 @@ class BaseAudioContextHostObject : public JsiHostObject {
|
|
|
142
142
|
auto length = static_cast<int>(arrayBufferReal.size(runtime));
|
|
143
143
|
|
|
144
144
|
auto arrayBufferImag = args[1].getObject(runtime).getPropertyAsObject(runtime, "buffer").getArrayBuffer(runtime);
|
|
145
|
-
auto imag = reinterpret_cast<float *>(
|
|
145
|
+
auto imag = reinterpret_cast<float *>(arrayBufferImag.data(runtime));
|
|
146
146
|
|
|
147
147
|
auto disableNormalization = args[2].getBool();
|
|
148
148
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-audio-api",
|
|
3
|
-
"version": "0.7.2-nightly-
|
|
3
|
+
"version": "0.7.2-nightly-5d5b3d1-20250830",
|
|
4
4
|
"description": "react-native-audio-api provides system for controlling audio in React Native environment compatible with Web Audio API specification",
|
|
5
5
|
"bin": {
|
|
6
6
|
"setup-rn-audio-api-web": "./scripts/setup-rn-audio-api-web.js"
|