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"
|
2024-09-16 11:41:17 +03:00
|
|
|
#import "sdk/objc/base/RTCMacros.h"
|
2017-06-22 15:26:30 +02:00
|
|
|
|
2020-05-04 16:14:32 +02:00
|
|
|
@protocol RTC_OBJC_TYPE
|
|
|
|
|
(RTCVideoFrameBuffer);
|
2017-06-22 15:26:30 +02:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
class ObjCFrameBuffer : public VideoFrameBuffer {
|
|
|
|
|
public:
|
2020-05-04 16:14:32 +02:00
|
|
|
explicit ObjCFrameBuffer(id<RTC_OBJC_TYPE(RTCVideoFrameBuffer)>);
|
2017-06-22 15:26:30 +02:00
|
|
|
~ObjCFrameBuffer() override;
|
|
|
|
|
|
|
|
|
|
Type type() const override;
|
|
|
|
|
|
|
|
|
|
int width() const override;
|
|
|
|
|
int height() const override;
|
|
|
|
|
|
|
|
|
|
rtc::scoped_refptr<I420BufferInterface> ToI420() override;
|
2022-08-24 01:49:29 +09:00
|
|
|
rtc::scoped_refptr<VideoFrameBuffer> CropAndScale(int offset_x,
|
|
|
|
|
int offset_y,
|
|
|
|
|
int crop_width,
|
|
|
|
|
int crop_height,
|
|
|
|
|
int scaled_width,
|
|
|
|
|
int scaled_height) override;
|
2017-06-22 15:26:30 +02:00
|
|
|
|
2020-05-04 16:14:32 +02:00
|
|
|
id<RTC_OBJC_TYPE(RTCVideoFrameBuffer)> wrapped_frame_buffer() const;
|
2017-06-22 15:26:30 +02:00
|
|
|
|
|
|
|
|
private:
|
2020-05-04 16:14:32 +02:00
|
|
|
id<RTC_OBJC_TYPE(RTCVideoFrameBuffer)> frame_buffer_;
|
2017-06-22 15:26:30 +02:00
|
|
|
int width_;
|
|
|
|
|
int height_;
|
|
|
|
|
};
|
|
|
|
|
|
2020-05-04 16:14:32 +02:00
|
|
|
id<RTC_OBJC_TYPE(RTCVideoFrameBuffer)> ToObjCVideoFrameBuffer(
|
2018-03-07 10:32:03 +01:00
|
|
|
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_
|