|
1 | 1 | // 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) |
3 | 3 | // 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
|
4 | 4 | // swift-module-flags-ignorable: -no-verify-emitted-module-interface
|
5 | 5 | import ARKit
|
@@ -865,7 +865,7 @@ public struct NoopCounterMetric<T> : VideoSDKRTC.CounterMetric {
|
865 | 865 | @objc deinit
|
866 | 866 | }
|
867 | 867 | 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 |
869 | 869 | public static func == (a: VideoSDKRTC.CustomVideoTrackConfig, b: VideoSDKRTC.CustomVideoTrackConfig) -> Swift.Bool
|
870 | 870 | public func hash(into hasher: inout Swift.Hasher)
|
871 | 871 | public var hashValue: Swift.Int {
|
@@ -4663,7 +4663,7 @@ extension VideoSDKRTC.Meeting {
|
4663 | 4663 | public func stopHLS()
|
4664 | 4664 | public func startTranscription(config: VideoSDKRTC.TranscriptionConfig? = nil)
|
4665 | 4665 | public func stopTranscription()
|
4666 |
| - public func changeMode(_ mode: VideoSDKRTC.Mode) |
| 4666 | + public func changeMode(_ mode: VideoSDKRTC.Mode) async |
4667 | 4667 | @available(iOS 13.0.0, *)
|
4668 | 4668 | public func enableScreenShare() async
|
4669 | 4669 | @available(iOS 13.0.0, *)
|
@@ -4757,7 +4757,13 @@ public enum MeetingState : Swift.String {
|
4757 | 4757 | }
|
4758 | 4758 | }
|
4759 | 4759 | 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 |
4761 | 4767 | public init?(rawValue: Swift.String)
|
4762 | 4768 | public typealias RawValue = Swift.String
|
4763 | 4769 | public var rawValue: Swift.String {
|
@@ -8652,7 +8658,7 @@ public enum VideoQuality : Swift.String, Swift.CaseIterable {
|
8652 | 8658 | }
|
8653 | 8659 | @_hasMissingDesignatedInitializers final public class VideoSDK {
|
8654 | 8660 | 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 |
8656 | 8662 | 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?
|
8657 | 8663 | public static func createAudioTrack(noiseConfig: VideoSDKRTC.noiseConfig?) throws -> VideoSDKRTC.CustomRTCMediaStream?
|
8658 | 8664 | @objc deinit
|
|
0 commit comments