2017-06-22 15:26:30 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright 2017 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_FRAME_BUFFER_H_
|
|
|
|
|
#define SDK_OBJC_NATIVE_SRC_OBJC_FRAME_BUFFER_H_
|
2017-06-22 15:26:30 +02:00
|
|
|
|
|
|
|
|
#import <CoreVideo/CoreVideo.h>
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "common_video/include/video_frame_buffer.h"
|
2017-06-22 15:26:30 +02:00
|
|
|
|
|
|
|
|
@protocol RTCVideoFrameBuffer;
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
class ObjCFrameBuffer : public VideoFrameBuffer {
|
|
|
|
|
public:
|
|
|
|
|
explicit ObjCFrameBuffer(id<RTCVideoFrameBuffer>);
|
|
|
|
|
~ObjCFrameBuffer() override;
|
|
|
|
|
|
|
|
|
|
Type type() const override;
|
|
|
|
|
|
|
|
|
|
int width() const override;
|
|
|
|
|
int height() const override;
|
|
|
|
|
|
|
|
|
|
rtc::scoped_refptr<I420BufferInterface> ToI420() override;
|
|
|
|
|
|
|
|
|
|
id<RTCVideoFrameBuffer> wrapped_frame_buffer() const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
id<RTCVideoFrameBuffer> frame_buffer_;
|
|
|
|
|
int width_;
|
|
|
|
|
int height_;
|
|
|
|
|
};
|
|
|
|
|
|
2018-03-07 10:32:03 +01:00
|
|
|
id<RTCVideoFrameBuffer> ToObjCVideoFrameBuffer(
|
|
|
|
|
const rtc::scoped_refptr<VideoFrameBuffer>& buffer);
|
|
|
|
|
|
2017-06-22 15:26:30 +02:00
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2018-08-30 09:30:29 +02:00
|
|
|
#endif // SDK_OBJC_NATIVE_SRC_OBJC_FRAME_BUFFER_H_
|