Home
last modified time | relevance | path

Searched refs:channelsCount (Results 1 – 5 of 5) sorted by relevance

/expo/ios/versioned/sdk47/EXAV/EXAV/AudioSampleCallback/
H A DAudioSampleCallbackWrapper.mm43 auto channelsCount = (size_t) buffer->mNumberChannels;
50 auto channels = jsi::Array(rt, channelsCount);
54 for (auto channelIndex = 0; channelIndex < channelsCount; channelIndex++)
57 auto frames = jsi::Array(rt, static_cast<int>(framesCount / channelsCount));
61 frameIndex += channelsCount, arrayIndex++)
/expo/packages/expo-av/ios/EXAV/AudioSampleCallback/
H A DAudioSampleCallbackWrapper.mm43 auto channelsCount = (size_t) buffer->mNumberChannels;
50 auto channels = jsi::Array(rt, channelsCount);
54 for (auto channelIndex = 0; channelIndex < channelsCount; channelIndex++)
57 auto frames = jsi::Array(rt, static_cast<int>(framesCount / channelsCount));
61 frameIndex += channelsCount, arrayIndex++)
/expo/ios/versioned/sdk48/EXAV/EXAV/AudioSampleCallback/
H A DAudioSampleCallbackWrapper.mm43 auto channelsCount = (size_t) buffer->mNumberChannels;
50 auto channels = jsi::Array(rt, channelsCount);
54 for (auto channelIndex = 0; channelIndex < channelsCount; channelIndex++)
57 auto frames = jsi::Array(rt, static_cast<int>(framesCount / channelsCount));
61 frameIndex += channelsCount, arrayIndex++)
/expo/ios/versioned/sdk49/EXAV/EXAV/AudioSampleCallback/
H A DAudioSampleCallbackWrapper.mm43 auto channelsCount = (size_t) buffer->mNumberChannels;
50 auto channels = jsi::Array(rt, channelsCount);
54 for (auto channelIndex = 0; channelIndex < channelsCount; channelIndex++)
57 auto frames = jsi::Array(rt, static_cast<int>(framesCount / channelsCount));
61 frameIndex += channelsCount, arrayIndex++)
/expo/packages/expo-av/android/src/main/cpp/
H A DJAVManager.cpp72 auto channelsCount = /* TODO: channelsCount */ 1; in installJSIBindings() local
81 auto channels = jsi::Array(runtime, channelsCount); in installJSIBindings()
82 for (auto i = 0; i < channelsCount; i++) { in installJSIBindings()