Index: webrtc/api/objc/RTCVideoRendererAdapter+Private.h |
diff --git a/webrtc/api/objc/RTCVideoRendererAdapter+Private.h b/webrtc/api/objc/RTCVideoRendererAdapter+Private.h |
index c181b9b41c8fb1511e0059d29be808e2ec70e12e..fbc0393eda87a6803a5bf0a9c2987be389817da8 100644 |
--- a/webrtc/api/objc/RTCVideoRendererAdapter+Private.h |
+++ b/webrtc/api/objc/RTCVideoRendererAdapter+Private.h |
@@ -26,12 +26,12 @@ NS_ASSUME_NONNULL_BEGIN |
@property(nonatomic, readonly) id<RTCVideoRenderer> videoRenderer; |
/** |
- * The native VideoRendererInterface surface exposed by this adapter. Calls made |
+ * The native VideoSinkInterface surface exposed by this adapter. Calls made |
* to this interface will be adapted and passed to the RTCVideoRenderer supplied |
* during construction. This pointer is unsafe and owned by this class. |
*/ |
@property(nonatomic, readonly) |
- webrtc::VideoRendererInterface *nativeVideoRenderer; |
+ rtc::VideoSinkInterface<cricket::VideoFrame>* nativeVideoRenderer; |
tkchin_webrtc
2016/03/18 19:14:16
me> *native
nisse-webrtc
2016/03/21 08:37:56
Done.
|
/** Initialize an RTCVideoRendererAdapter with an RTCVideoRenderer. */ |
- (instancetype)initWithNativeRenderer:(id<RTCVideoRenderer>)videoRenderer |