2018-03-07 10:32:03 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright 2018 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2018-08-30 09:30:29 +02:00
|
|
|
#ifndef SDK_OBJC_NATIVE_SRC_OBJC_VIDEO_RENDERER_H_
|
|
|
|
|
#define SDK_OBJC_NATIVE_SRC_OBJC_VIDEO_RENDERER_H_
|
2018-03-07 10:32:03 +01:00
|
|
|
|
|
|
|
|
#import <CoreGraphics/CoreGraphics.h>
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
|
|
#include "api/video/video_frame.h"
|
2018-05-11 11:15:30 +02:00
|
|
|
#include "api/video/video_sink_interface.h"
|
2018-03-07 10:32:03 +01:00
|
|
|
|
|
|
|
|
@protocol RTCVideoRenderer;
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
class ObjCVideoRenderer : public rtc::VideoSinkInterface<VideoFrame> {
|
|
|
|
|
public:
|
|
|
|
|
ObjCVideoRenderer(id<RTCVideoRenderer> renderer);
|
|
|
|
|
void OnFrame(const VideoFrame& nativeVideoFrame) override;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
id<RTCVideoRenderer> renderer_;
|
|
|
|
|
CGSize size_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2018-08-30 09:30:29 +02:00
|
|
|
#endif // SDK_OBJC_NATIVE_SRC_OBJC_VIDEO_RENDERER_H_
|