2019-09-27 19:16:03 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2015 The WebRTC project authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
#import "RTCMacros.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2020-11-03 14:18:15 +00:00
|
|
|
@class RTC_OBJC_TYPE(RTCAudioTrack);
|
|
|
|
@class RTC_OBJC_TYPE(RTCPeerConnectionFactory);
|
|
|
|
@class RTC_OBJC_TYPE(RTCVideoTrack);
|
2019-09-27 19:16:03 +00:00
|
|
|
|
|
|
|
RTC_OBJC_EXPORT
|
2020-11-03 14:18:15 +00:00
|
|
|
@interface RTC_OBJC_TYPE (RTCMediaStream) : NSObject
|
2019-09-27 19:16:03 +00:00
|
|
|
|
|
|
|
/** The audio tracks in this stream. */
|
2020-11-03 14:18:15 +00:00
|
|
|
@property(nonatomic, strong, readonly) NSArray<RTC_OBJC_TYPE(RTCAudioTrack) *> *audioTracks;
|
2019-09-27 19:16:03 +00:00
|
|
|
|
|
|
|
/** The video tracks in this stream. */
|
2020-11-03 14:18:15 +00:00
|
|
|
@property(nonatomic, strong, readonly) NSArray<RTC_OBJC_TYPE(RTCVideoTrack) *> *videoTracks;
|
2019-09-27 19:16:03 +00:00
|
|
|
|
|
|
|
/** An identifier for this media stream. */
|
|
|
|
@property(nonatomic, readonly) NSString *streamId;
|
|
|
|
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
|
|
|
|
/** Adds the given audio track to this media stream. */
|
2020-11-03 14:18:15 +00:00
|
|
|
- (void)addAudioTrack:(RTC_OBJC_TYPE(RTCAudioTrack) *)audioTrack;
|
2019-09-27 19:16:03 +00:00
|
|
|
|
|
|
|
/** Adds the given video track to this media stream. */
|
2020-11-03 14:18:15 +00:00
|
|
|
- (void)addVideoTrack:(RTC_OBJC_TYPE(RTCVideoTrack) *)videoTrack;
|
2019-09-27 19:16:03 +00:00
|
|
|
|
|
|
|
/** Removes the given audio track to this media stream. */
|
2020-11-03 14:18:15 +00:00
|
|
|
- (void)removeAudioTrack:(RTC_OBJC_TYPE(RTCAudioTrack) *)audioTrack;
|
2019-09-27 19:16:03 +00:00
|
|
|
|
|
|
|
/** Removes the given video track to this media stream. */
|
2020-11-03 14:18:15 +00:00
|
|
|
- (void)removeVideoTrack:(RTC_OBJC_TYPE(RTCVideoTrack) *)videoTrack;
|
2019-09-27 19:16:03 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|