2018-01-02 13:33:16 +03: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
|
|
|
#import "base/RTCVideoEncoderSettings.h"
|
2018-01-02 13:33:16 +03:00
|
|
|
|
2018-08-30 09:30:29 +02:00
|
|
|
#include "modules/video_coding/include/video_codec_interface.h"
|
2018-01-02 13:33:16 +03:00
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
2018-08-30 09:30:29 +02:00
|
|
|
/* Interfaces for converting to/from internal C++ formats. */
|
2020-05-04 16:14:32 +02:00
|
|
|
@interface RTC_OBJC_TYPE (RTCVideoEncoderSettings)
|
|
|
|
|
(Private)
|
2018-01-02 13:33:16 +03:00
|
|
|
|
2025-01-08 05:45:56 -08:00
|
|
|
- (instancetype)initWithNativeVideoCodec
|
|
|
|
|
: (const webrtc::VideoCodec *__nullable)videoCodec;
|
2018-08-30 09:30:29 +02:00
|
|
|
- (webrtc::VideoCodec)nativeVideoCodec;
|
2018-01-02 13:33:16 +03:00
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|