Intel® Collaboration Suite for WebRTC  version 4.3.1
Open WebRTC Toolkit (OWT) Client SDK for iOS*
OWTPublishOptions.h
1 // Copyright (C) <2018> Intel Corporation
2 //
3 // SPDX-License-Identifier: Apache-2.0
4 #import <Foundation/Foundation.h>
5 #import <WebRTC/RTCMacros.h>
6 #import <OWT/OWTMediaFormat.h>
7 NS_ASSUME_NONNULL_BEGIN
9 RTC_OBJC_EXPORT
10 @interface OWTPublishOptions : NSObject
11 @property(nonatomic, strong) NSArray<OWTAudioEncodingParameters*>* audio;
12 @property(nonatomic, strong) NSArray<OWTVideoEncodingParameters*>* video;
13 @end
14 NS_ASSUME_NONNULL_END
PublishOptions defines options for publishing a OWTLocalStream.
Definition: OWTPublishOptions.h:10