blob: 4cf1c9d86eb345b1558a0375ed8b88630d83308d [file] [log] [blame]
Danil Chapovalovd7e09812024-03-20 08:05:241/*
2 * Copyright (c) 2024 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#import <Foundation/Foundation.h>
12
13#import "base/RTCMacros.h"
14#import "base/RTCVideoEncoder.h"
15
16// NativeVideoEncoder pretends to conform to RTCVideoEncoder protocol, but
17// expects its methods won't be called.
18@interface RTC_OBJC_TYPE (RTCNativeVideoEncoder) : NSObject <RTC_OBJC_TYPE (RTCVideoEncoder)>
19
20@end