mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 22:30:40 +01:00

Bug: webrtc:8317 Change-Id: I2da3cc6578dd8ff6e88052bc33cd38cb92af46dc Reviewed-on: https://webrtc-review.googlesource.com/73242 Reviewed-by: Magnus Jedvert <magjed@webrtc.org> Reviewed-by: Rasmus Brandt <brandtr@webrtc.org> Commit-Queue: Kári Helgason <kthelgason@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23077}
83 lines
2.6 KiB
Text
83 lines
2.6 KiB
Text
/*
|
|
* 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.
|
|
*/
|
|
|
|
#import "WebRTC/RTCVideoCodecH264.h"
|
|
|
|
#include <vector>
|
|
|
|
#import "RTCVideoCodec+Private.h"
|
|
#import "WebRTC/RTCVideoCodec.h"
|
|
|
|
#include "rtc_base/timeutils.h"
|
|
|
|
// H264 specific settings.
|
|
@implementation RTCCodecSpecificInfoH264
|
|
|
|
@synthesize packetizationMode = _packetizationMode;
|
|
|
|
- (webrtc::CodecSpecificInfo)nativeCodecSpecificInfo {
|
|
webrtc::CodecSpecificInfo codecSpecificInfo;
|
|
codecSpecificInfo.codecType = webrtc::kVideoCodecH264;
|
|
codecSpecificInfo.codec_name = [kRTCVideoCodecH264Name cStringUsingEncoding:NSUTF8StringEncoding];
|
|
codecSpecificInfo.codecSpecific.H264.packetization_mode =
|
|
(webrtc::H264PacketizationMode)_packetizationMode;
|
|
|
|
return codecSpecificInfo;
|
|
}
|
|
|
|
@end
|
|
|
|
// Encoder factory.
|
|
@implementation RTCVideoEncoderFactoryH264
|
|
|
|
- (NSArray<RTCVideoCodecInfo *> *)supportedCodecs {
|
|
NSMutableArray<RTCVideoCodecInfo *> *codecs = [NSMutableArray array];
|
|
NSString *codecName = kRTCVideoCodecH264Name;
|
|
|
|
NSDictionary<NSString *, NSString *> *constrainedHighParams = @{
|
|
@"profile-level-id" : kRTCMaxSupportedH264ProfileLevelConstrainedHigh,
|
|
@"level-asymmetry-allowed" : @"1",
|
|
@"packetization-mode" : @"1",
|
|
};
|
|
RTCVideoCodecInfo *constrainedHighInfo =
|
|
[[RTCVideoCodecInfo alloc] initWithName:codecName parameters:constrainedHighParams];
|
|
[codecs addObject:constrainedHighInfo];
|
|
|
|
NSDictionary<NSString *, NSString *> *constrainedBaselineParams = @{
|
|
@"profile-level-id" : kRTCMaxSupportedH264ProfileLevelConstrainedBaseline,
|
|
@"level-asymmetry-allowed" : @"1",
|
|
@"packetization-mode" : @"1",
|
|
};
|
|
RTCVideoCodecInfo *constrainedBaselineInfo =
|
|
[[RTCVideoCodecInfo alloc] initWithName:codecName parameters:constrainedBaselineParams];
|
|
[codecs addObject:constrainedBaselineInfo];
|
|
|
|
return [codecs copy];
|
|
}
|
|
|
|
- (id<RTCVideoEncoder>)createEncoder:(RTCVideoCodecInfo *)info {
|
|
return [[RTCVideoEncoderH264 alloc] initWithCodecInfo:info];
|
|
}
|
|
|
|
@end
|
|
|
|
// Decoder factory.
|
|
@implementation RTCVideoDecoderFactoryH264
|
|
|
|
- (id<RTCVideoDecoder>)createDecoder:(RTCVideoCodecInfo *)info {
|
|
return [[RTCVideoDecoderH264 alloc] init];
|
|
}
|
|
|
|
- (NSArray<RTCVideoCodecInfo *> *)supportedCodecs {
|
|
NSString *codecName = kRTCVideoCodecH264Name;
|
|
return @[ [[RTCVideoCodecInfo alloc] initWithName:codecName parameters:nil] ];
|
|
}
|
|
|
|
@end
|