2018-06-20 16:18:59 -07: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
|
|
|
#import <AVFoundation/AVFoundation.h>
|
2018-06-20 16:18:59 -07:00
|
|
|
|
2018-08-30 09:30:29 +02:00
|
|
|
#import "RTCI420Buffer.h"
|
|
|
|
|
#import "RTCMutableYUVPlanarBuffer.h"
|
2018-06-20 16:18:59 -07:00
|
|
|
|
2018-08-30 09:30:29 +02:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
2018-06-20 16:18:59 -07:00
|
|
|
|
2018-08-30 09:30:29 +02:00
|
|
|
/** Extension of the I420 buffer with mutable data access */
|
2018-09-17 10:22:56 +02:00
|
|
|
RTC_OBJC_EXPORT
|
2020-05-04 16:14:32 +02:00
|
|
|
@protocol RTC_OBJC_TYPE
|
2025-01-08 05:55:05 -08:00
|
|
|
(RTCMutableI420Buffer)<RTC_OBJC_TYPE(RTCI420Buffer),
|
|
|
|
|
RTC_OBJC_TYPE(RTCMutableYUVPlanarBuffer)> @end
|
2018-06-20 16:18:59 -07:00
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|