kthelgason | fb14312 | 2017-07-25 07:55:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2017 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 <WebRTC/RTCMacros.h> |
| 14 | #import <WebRTC/RTCVideoCodecFactory.h> |
| 15 | |
kthelgason | fb14312 | 2017-07-25 07:55:58 -0700 | [diff] [blame] | 16 | /** Encoder. */ |
| 17 | RTC_EXPORT |
| 18 | @interface RTCVideoEncoderH264 : NSObject<RTCVideoEncoder> |
magjed | 73c0eb5 | 2017-08-07 06:55:28 -0700 | [diff] [blame] | 19 | |
| 20 | - (instancetype)initWithCodecInfo:(RTCVideoCodecInfo *)codecInfo; |
| 21 | |
kthelgason | fb14312 | 2017-07-25 07:55:58 -0700 | [diff] [blame] | 22 | @end |
| 23 | |
| 24 | /** Decoder. */ |
| 25 | RTC_EXPORT |
| 26 | @interface RTCVideoDecoderH264 : NSObject<RTCVideoDecoder> |
| 27 | @end |
| 28 | |
| 29 | /** Encoder factory. */ |
| 30 | RTC_EXPORT |
| 31 | @interface RTCVideoEncoderFactoryH264 : NSObject<RTCVideoEncoderFactory> |
| 32 | @end |
| 33 | |
| 34 | /** Decoder factory. */ |
| 35 | RTC_EXPORT |
| 36 | @interface RTCVideoDecoderFactoryH264 : NSObject<RTCVideoDecoderFactory> |
| 37 | @end |