mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 06:40:43 +01:00

Bug: None Change-Id: I18744c371f0ea5e365158860eb1941121aeeb8fd Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/350308 Reviewed-by: Kári Helgason <kthelgason@webrtc.org> Commit-Queue: Yury Yarashevich <yura.yaroshevich@gmail.com> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Reviewed-by: Peter Hanspers <peterhanspers@webrtc.org> Cr-Commit-Position: refs/heads/main@{#42375}
26 lines
759 B
Objective-C
26 lines
759 B
Objective-C
/*
|
|
* Copyright 2024 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 "RTCRtpSource.h"
|
|
|
|
#include "api/transport/rtp/rtp_source.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RTC_OBJC_TYPE (RTCRtpSource)
|
|
()
|
|
|
|
/** Initialize an RTCRtpSource with a native RtpSource. */
|
|
- (instancetype)initWithNativeRtpSource
|
|
: (const webrtc::RtpSource&)nativeRtpSource NS_DESIGNATED_INITIALIZER;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|