@stream-io/video-react-native-sdk 1.22.1-alpha.0 → 1.22.1-alpha.1
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.
package/dist/commonjs/version.js
CHANGED
package/dist/module/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '1.22.1-alpha.
|
|
1
|
+
export const version = '1.22.1-alpha.1';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "1.22.1-alpha.
|
|
1
|
+
export declare const version = "1.22.1-alpha.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -19,6 +19,8 @@ enum DefaultAudioDevice {
|
|
|
19
19
|
@objc(StreamInCallManager)
|
|
20
20
|
class StreamInCallManager: RCTEventEmitter {
|
|
21
21
|
|
|
22
|
+
private let audioSessionQueue = DispatchQueue(label: "io.getstream.rn.audioSessionQueue", qos: .userInitiated)
|
|
23
|
+
|
|
22
24
|
private var audioManagerActivated = false
|
|
23
25
|
private var callAudioRole: CallAudioRole = .communicator
|
|
24
26
|
private var defaultAudioDevice: DefaultAudioDevice = .speaker
|
|
@@ -44,55 +46,60 @@ class StreamInCallManager: RCTEventEmitter {
|
|
|
44
46
|
|
|
45
47
|
@objc(setAudioRole:)
|
|
46
48
|
func setAudioRole(audioRole: String) {
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
49
|
+
audioSessionQueue.async { [self] in
|
|
50
|
+
if audioManagerActivated {
|
|
51
|
+
log("AudioManager is already activated, audio role cannot be changed.")
|
|
52
|
+
return
|
|
53
|
+
}
|
|
54
|
+
self.callAudioRole = audioRole.lowercased() == "listener" ? .listener : .communicator
|
|
50
55
|
}
|
|
51
|
-
self.callAudioRole = audioRole.lowercased() == "listener" ? .listener : .communicator
|
|
52
|
-
|
|
53
56
|
}
|
|
54
57
|
|
|
55
58
|
@objc(setDefaultAudioDeviceEndpointType:)
|
|
56
59
|
func setDefaultAudioDeviceEndpointType(endpointType: String) {
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
+
audioSessionQueue.async { [self] in
|
|
61
|
+
if audioManagerActivated {
|
|
62
|
+
log("AudioManager is already activated, default audio device cannot be changed.")
|
|
63
|
+
return
|
|
64
|
+
}
|
|
65
|
+
self.defaultAudioDevice = endpointType.lowercased() == "earpiece" ? .earpiece : .speaker
|
|
60
66
|
}
|
|
61
|
-
self.defaultAudioDevice = endpointType.lowercased() == "earpiece" ? .earpiece : .speaker
|
|
62
|
-
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
@objc
|
|
66
70
|
func start() {
|
|
67
|
-
|
|
68
|
-
|
|
71
|
+
audioSessionQueue.async { [self] in
|
|
72
|
+
if audioManagerActivated {
|
|
73
|
+
return
|
|
74
|
+
}
|
|
75
|
+
let session = AVAudioSession.sharedInstance()
|
|
76
|
+
previousAudioSessionState = AudioSessionState(
|
|
77
|
+
category: session.category,
|
|
78
|
+
mode: session.mode,
|
|
79
|
+
options: session.categoryOptions
|
|
80
|
+
)
|
|
81
|
+
configureAudioSession()
|
|
82
|
+
audioManagerActivated = true
|
|
69
83
|
}
|
|
70
|
-
let session = AVAudioSession.sharedInstance()
|
|
71
|
-
previousAudioSessionState = AudioSessionState(
|
|
72
|
-
category: session.category,
|
|
73
|
-
mode: session.mode,
|
|
74
|
-
options: session.categoryOptions
|
|
75
|
-
)
|
|
76
|
-
configureAudioSession()
|
|
77
|
-
audioManagerActivated = true
|
|
78
84
|
}
|
|
79
85
|
|
|
80
86
|
@objc
|
|
81
87
|
func stop() {
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
let
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
88
|
+
audioSessionQueue.async { [self] in
|
|
89
|
+
if !audioManagerActivated {
|
|
90
|
+
return
|
|
91
|
+
}
|
|
92
|
+
if let prev = previousAudioSessionState {
|
|
93
|
+
let session = AVAudioSession.sharedInstance()
|
|
94
|
+
do {
|
|
95
|
+
try session.setCategory(prev.category, mode: prev.mode, options: prev.options)
|
|
96
|
+
} catch {
|
|
97
|
+
log("Error restoring previous audio session: \(error.localizedDescription)")
|
|
98
|
+
}
|
|
99
|
+
previousAudioSessionState = nil
|
|
91
100
|
}
|
|
92
|
-
|
|
101
|
+
audioManagerActivated = false
|
|
93
102
|
}
|
|
94
|
-
audioManagerActivated = false
|
|
95
|
-
|
|
96
103
|
}
|
|
97
104
|
|
|
98
105
|
private func configureAudioSession() {
|
|
@@ -135,9 +142,7 @@ class StreamInCallManager: RCTEventEmitter {
|
|
|
135
142
|
|
|
136
143
|
if currentCategory != intendedCategory.rawValue || currentMode != intendedMode.rawValue || currentOptions != intendedOptions || !currentIsActive {
|
|
137
144
|
session.lockForConfiguration()
|
|
138
|
-
defer {
|
|
139
|
-
session.unlockForConfiguration()
|
|
140
|
-
}
|
|
145
|
+
defer { session.unlockForConfiguration() }
|
|
141
146
|
do {
|
|
142
147
|
try session.setCategory(intendedCategory, mode: intendedMode, options: intendedOptions)
|
|
143
148
|
try session.setActive(true)
|
|
@@ -290,11 +295,6 @@ class StreamInCallManager: RCTEventEmitter {
|
|
|
290
295
|
}
|
|
291
296
|
}
|
|
292
297
|
|
|
293
|
-
@objc
|
|
294
|
-
func methodQueue() -> DispatchQueue {
|
|
295
|
-
return DispatchQueue(label: "io.getstream.rn.audioSessionQueue", qos: .userInitiated)
|
|
296
|
-
}
|
|
297
|
-
|
|
298
298
|
// MARK: - Logging Helper
|
|
299
299
|
private func log(_ message: String) {
|
|
300
300
|
NSLog("InCallManager: %@", message)
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '1.22.1-alpha.
|
|
1
|
+
export const version = '1.22.1-alpha.1';
|