Skip to content

Commit 84b5da5

Browse files
committed
v2.2.0
1 parent aedc4a2 commit 84b5da5

20 files changed

+10759
-11083
lines changed

Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Headers/VideoSDKRTC-Swift.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#if 0
22
#elif defined(__arm64__) && __arm64__
3-
// Generated by Apple Swift version 6.0 effective-5.10 (swiftlang-6.0.0.9.10 clang-1600.0.26.2)
3+
// Generated by Apple Swift version 6.0.2 effective-5.10 (swiftlang-6.0.2.1.2 clang-1600.0.26.4)
44
#ifndef VIDEOSDKRTC_SWIFT_H
55
#define VIDEOSDKRTC_SWIFT_H
66
#pragma clang diagnostic push
Binary file not shown.

Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.abi.json

+3,555-3,675
Large diffs are not rendered by default.

Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.private.swiftinterface

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// swift-interface-format-version: 1.0
2-
// swift-compiler-version: Apple Swift version 6.0 effective-5.10 (swiftlang-6.0.0.9.10 clang-1600.0.26.2)
2+
// swift-compiler-version: Apple Swift version 6.0.2 effective-5.10 (swiftlang-6.0.2.1.2 clang-1600.0.26.4)
33
// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name VideoSDKRTC
44
// swift-module-flags-ignorable: -no-verify-emitted-module-interface
55
import ARKit
@@ -865,7 +865,7 @@ public struct NoopCounterMetric<T> : VideoSDKRTC.CounterMetric {
865865
@objc deinit
866866
}
867867
public enum CustomVideoTrackConfig {
868-
case h90p_w160p, h180p_w320p, h216p_w384p, h360p_w640p, h540p_w960p, h720p_w1280p, h1080p_w1920p, h1440p_w2560p, h2160p_w3840p, h120p_w160p, h180p_w240p, h240p_w320p, h360p_w480p, h480p_w640p, h540p_w720p, h720p_w960p, h1080p_w1440p, h1440p_w1920p
868+
case h90p_w160p, h180p_w320p, h216p_w384p, h360p_w640p, h540p_w960p, h720p_w1280p, h1080p_w1920p, h2160p_w3840p, h120p_w160p, h180p_w240p, h240p_w320p, h360p_w480p, h480p_w640p, h1080p_w1440p, h1440p_w1920p
869869
public static func == (a: VideoSDKRTC.CustomVideoTrackConfig, b: VideoSDKRTC.CustomVideoTrackConfig) -> Swift.Bool
870870
public func hash(into hasher: inout Swift.Hasher)
871871
public var hashValue: Swift.Int {
@@ -4663,7 +4663,7 @@ extension VideoSDKRTC.Meeting {
46634663
public func stopHLS()
46644664
public func startTranscription(config: VideoSDKRTC.TranscriptionConfig? = nil)
46654665
public func stopTranscription()
4666-
public func changeMode(_ mode: VideoSDKRTC.Mode)
4666+
public func changeMode(_ mode: VideoSDKRTC.Mode) async
46674667
@available(iOS 13.0.0, *)
46684668
public func enableScreenShare() async
46694669
@available(iOS 13.0.0, *)
@@ -4757,7 +4757,13 @@ public enum MeetingState : Swift.String {
47574757
}
47584758
}
47594759
public enum Mode : Swift.String {
4760-
case CONFERENCE, VIEWER
4760+
@available(*, deprecated, message: "Use SEND_AND_RECV instead.")
4761+
case CONFERENCE
4762+
@available(*, deprecated, message: "Use SIGNALLING_ONLY instead.")
4763+
case VIEWER
4764+
case SEND_AND_RECV
4765+
case SIGNALLING_ONLY
4766+
case RECV_ONLY
47614767
public init?(rawValue: Swift.String)
47624768
public typealias RawValue = Swift.String
47634769
public var rawValue: Swift.String {
@@ -8652,7 +8658,7 @@ public enum VideoQuality : Swift.String, Swift.CaseIterable {
86528658
}
86538659
@_hasMissingDesignatedInitializers final public class VideoSDK {
86548660
public static func config(token: Swift.String)
8655-
public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil, customAudioTrack: VideoSDKRTC.CustomRTCMediaStream? = nil, mode: VideoSDKRTC.Mode? = .CONFERENCE, preferredProtocol: VideoSDKRTC.PreferredProtocol? = PreferredProtocol.UDP_OVER_TCP, signalingBaseUrl: Swift.String? = nil, metaData: [Swift.String : Any]? = [:]) -> VideoSDKRTC.Meeting
8661+
public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil, customAudioTrack: VideoSDKRTC.CustomRTCMediaStream? = nil, multiStream: Swift.Bool? = true, mode: VideoSDKRTC.Mode? = .SEND_AND_RECV, preferredProtocol: VideoSDKRTC.PreferredProtocol? = PreferredProtocol.UDP_OVER_TCP, signalingBaseUrl: Swift.String? = nil, metaData: [Swift.String : Any]? = [:]) -> VideoSDKRTC.Meeting
86568662
public static func createCameraVideoTrack(encoderConfig: VideoSDKRTC.CustomVideoTrackConfig? = .h360p_w640p, facingMode: AVFoundation.AVCaptureDevice.Position? = .front, multiStream: Swift.Bool? = true, codec: VideoSDKRTC.PreferredCodec? = .VP8) throws -> VideoSDKRTC.CustomRTCMediaStream?
86578663
public static func createAudioTrack(noiseConfig: VideoSDKRTC.noiseConfig?) throws -> VideoSDKRTC.CustomRTCMediaStream?
86588664
@objc deinit

Frameworks/VideoSDKRTC.xcframework/ios-arm64/VideoSDKRTC.framework/Modules/VideoSDKRTC.swiftmodule/arm64-apple-ios.swiftinterface

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// swift-interface-format-version: 1.0
2-
// swift-compiler-version: Apple Swift version 6.0 effective-5.10 (swiftlang-6.0.0.9.10 clang-1600.0.26.2)
2+
// swift-compiler-version: Apple Swift version 6.0.2 effective-5.10 (swiftlang-6.0.2.1.2 clang-1600.0.26.4)
33
// swift-module-flags: -target arm64-apple-ios13.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name VideoSDKRTC
44
// swift-module-flags-ignorable: -no-verify-emitted-module-interface
55
import ARKit
@@ -865,7 +865,7 @@ public struct NoopCounterMetric<T> : VideoSDKRTC.CounterMetric {
865865
@objc deinit
866866
}
867867
public enum CustomVideoTrackConfig {
868-
case h90p_w160p, h180p_w320p, h216p_w384p, h360p_w640p, h540p_w960p, h720p_w1280p, h1080p_w1920p, h1440p_w2560p, h2160p_w3840p, h120p_w160p, h180p_w240p, h240p_w320p, h360p_w480p, h480p_w640p, h540p_w720p, h720p_w960p, h1080p_w1440p, h1440p_w1920p
868+
case h90p_w160p, h180p_w320p, h216p_w384p, h360p_w640p, h540p_w960p, h720p_w1280p, h1080p_w1920p, h2160p_w3840p, h120p_w160p, h180p_w240p, h240p_w320p, h360p_w480p, h480p_w640p, h1080p_w1440p, h1440p_w1920p
869869
public static func == (a: VideoSDKRTC.CustomVideoTrackConfig, b: VideoSDKRTC.CustomVideoTrackConfig) -> Swift.Bool
870870
public func hash(into hasher: inout Swift.Hasher)
871871
public var hashValue: Swift.Int {
@@ -4663,7 +4663,7 @@ extension VideoSDKRTC.Meeting {
46634663
public func stopHLS()
46644664
public func startTranscription(config: VideoSDKRTC.TranscriptionConfig? = nil)
46654665
public func stopTranscription()
4666-
public func changeMode(_ mode: VideoSDKRTC.Mode)
4666+
public func changeMode(_ mode: VideoSDKRTC.Mode) async
46674667
@available(iOS 13.0.0, *)
46684668
public func enableScreenShare() async
46694669
@available(iOS 13.0.0, *)
@@ -4757,7 +4757,13 @@ public enum MeetingState : Swift.String {
47574757
}
47584758
}
47594759
public enum Mode : Swift.String {
4760-
case CONFERENCE, VIEWER
4760+
@available(*, deprecated, message: "Use SEND_AND_RECV instead.")
4761+
case CONFERENCE
4762+
@available(*, deprecated, message: "Use SIGNALLING_ONLY instead.")
4763+
case VIEWER
4764+
case SEND_AND_RECV
4765+
case SIGNALLING_ONLY
4766+
case RECV_ONLY
47614767
public init?(rawValue: Swift.String)
47624768
public typealias RawValue = Swift.String
47634769
public var rawValue: Swift.String {
@@ -8652,7 +8658,7 @@ public enum VideoQuality : Swift.String, Swift.CaseIterable {
86528658
}
86538659
@_hasMissingDesignatedInitializers final public class VideoSDK {
86548660
public static func config(token: Swift.String)
8655-
public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil, customAudioTrack: VideoSDKRTC.CustomRTCMediaStream? = nil, mode: VideoSDKRTC.Mode? = .CONFERENCE, preferredProtocol: VideoSDKRTC.PreferredProtocol? = PreferredProtocol.UDP_OVER_TCP, signalingBaseUrl: Swift.String? = nil, metaData: [Swift.String : Any]? = [:]) -> VideoSDKRTC.Meeting
8661+
public static func initMeeting(meetingId: Swift.String, participantId: Swift.String = "", participantName: Swift.String = "Guest", micEnabled: Swift.Bool = true, webcamEnabled: Swift.Bool = true, customCameraVideoStream: VideoSDKRTC.CustomRTCMediaStream? = nil, customAudioTrack: VideoSDKRTC.CustomRTCMediaStream? = nil, multiStream: Swift.Bool? = true, mode: VideoSDKRTC.Mode? = .SEND_AND_RECV, preferredProtocol: VideoSDKRTC.PreferredProtocol? = PreferredProtocol.UDP_OVER_TCP, signalingBaseUrl: Swift.String? = nil, metaData: [Swift.String : Any]? = [:]) -> VideoSDKRTC.Meeting
86568662
public static func createCameraVideoTrack(encoderConfig: VideoSDKRTC.CustomVideoTrackConfig? = .h360p_w640p, facingMode: AVFoundation.AVCaptureDevice.Position? = .front, multiStream: Swift.Bool? = true, codec: VideoSDKRTC.PreferredCodec? = .VP8) throws -> VideoSDKRTC.CustomRTCMediaStream?
86578663
public static func createAudioTrack(noiseConfig: VideoSDKRTC.noiseConfig?) throws -> VideoSDKRTC.CustomRTCMediaStream?
86588664
@objc deinit
Binary file not shown.

Frameworks/VideoSDKRTC.xcframework/ios-arm64_x86_64-simulator/VideoSDKRTC.framework/Headers/VideoSDKRTC-Swift.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#if 0
22
#elif defined(__arm64__) && __arm64__
3-
// Generated by Apple Swift version 6.0 effective-5.10 (swiftlang-6.0.0.9.10 clang-1600.0.26.2)
3+
// Generated by Apple Swift version 6.0.2 effective-5.10 (swiftlang-6.0.2.1.2 clang-1600.0.26.4)
44
#ifndef VIDEOSDKRTC_SWIFT_H
55
#define VIDEOSDKRTC_SWIFT_H
66
#pragma clang diagnostic push
@@ -340,7 +340,7 @@ SWIFT_CLASS("_TtC11VideoSDKRTC17TranscriptionText")
340340
#endif
341341

342342
#elif defined(__x86_64__) && __x86_64__
343-
// Generated by Apple Swift version 6.0 effective-5.10 (swiftlang-6.0.0.9.10 clang-1600.0.26.2)
343+
// Generated by Apple Swift version 6.0.2 effective-5.10 (swiftlang-6.0.2.1.2 clang-1600.0.26.4)
344344
#ifndef VIDEOSDKRTC_SWIFT_H
345345
#define VIDEOSDKRTC_SWIFT_H
346346
#pragma clang diagnostic push

0 commit comments

Comments
 (0)