Home
last modified time | relevance | path

Searched refs:RTCVideoCodecInfo (Results 1 – 24 of 24) sorted by relevance

/external/webrtc/sdk/objc/components/video_codec/
DRTCDefaultVideoEncoderFactory.m18 #import "base/RTCVideoCodecInfo.h"
28 + (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)supportedCodecs {
34 RTC_OBJC_TYPE(RTCVideoCodecInfo) *constrainedHighInfo =
35 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecH264Name
43 RTC_OBJC_TYPE(RTCVideoCodecInfo) *constrainedBaselineInfo =
44 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecH264Name
47 RTC_OBJC_TYPE(RTCVideoCodecInfo) *vp8Info =
48 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecVp8Name];
50 NSMutableArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *result = [@[
58 addObject:[[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecVp9Name]];
[all …]
DRTCDefaultVideoDecoderFactory.m18 #import "base/RTCVideoCodecInfo.h"
26 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)supportedCodecs {
32 RTC_OBJC_TYPE(RTCVideoCodecInfo) *constrainedHighInfo =
33 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecH264Name
41 RTC_OBJC_TYPE(RTCVideoCodecInfo) *constrainedBaselineInfo =
42 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecH264Name
45 RTC_OBJC_TYPE(RTCVideoCodecInfo) *vp8Info =
46 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecVp8Name];
48 NSMutableArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *result = [@[
56 addObject:[[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecVp9Name]];
[all …]
DRTCVideoEncoderFactoryH264.m18 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)supportedCodecs {
19 NSMutableArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *codecs = [NSMutableArray array];
27 RTC_OBJC_TYPE(RTCVideoCodecInfo) *constrainedHighInfo =
28 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:codecName
37 RTC_OBJC_TYPE(RTCVideoCodecInfo) *constrainedBaselineInfo =
38 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:codecName
45 - (id<RTC_OBJC_TYPE(RTCVideoEncoder)>)createEncoder:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info { argument
DRTCVideoDecoderFactoryH264.m18 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)supportedCodecs {
19 NSMutableArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *codecs = [NSMutableArray array];
27 RTC_OBJC_TYPE(RTCVideoCodecInfo) *constrainedHighInfo =
28 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:codecName
37 RTC_OBJC_TYPE(RTCVideoCodecInfo) *constrainedBaselineInfo =
38 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:codecName
45 - (id<RTC_OBJC_TYPE(RTCVideoDecoder)>)createDecoder:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info { argument
DRTCDefaultVideoEncoderFactory.h25 @property(nonatomic, retain) RTC_OBJC_TYPE(RTCVideoCodecInfo) *preferredCodec;
27 + (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)supportedCodecs;
DRTCVideoEncoderH264.h20 - (instancetype)initWithCodecInfo:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)codecInfo;
DRTCVideoEncoderH264.mm22 #import "api/peerconnection/RTCVideoCodecInfo+Private.h"
314 RTC_OBJC_TYPE(RTCVideoCodecInfo) * _codecInfo;
340 - (instancetype)initWithCodecInfo:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)codecInfo { argument
/external/webrtc/sdk/objc/base/
DRTCVideoEncoderFactory.h26 - (void)registerCurrentEncoderInfo : (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info;
27 - (nullable RTC_OBJC_TYPE(RTCVideoCodecInfo) *)encoderForBitrate:(NSInteger)bitrate;
28 - (nullable RTC_OBJC_TYPE(RTCVideoCodecInfo) *)encoderForBrokenEncoder;
31 - (nullable RTC_OBJC_TYPE(RTCVideoCodecInfo) *)encoderForResolutionChangeBySize:(CGSize)size;
42 : (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info;
43 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)
47 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)implementations;
DRTCVideoDecoderFactory.h26 : (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info;
27 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)
DRTCVideoCodecInfo.m11 #import "RTCVideoCodecInfo.h"
13 @implementation RTC_OBJC_TYPE (RTCVideoCodecInfo) category
32 - (BOOL)isEqualToCodecInfo:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info { argument
DRTCVideoCodecInfo.h19 @interface RTC_OBJC_TYPE (RTCVideoCodecInfo) : NSObject <NSCoding>
29 - (BOOL)isEqualToCodecInfo:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info;
/external/webrtc/sdk/objc/native/src/
Dobjc_video_encoder_factory.mm20 #import "sdk/objc/api/peerconnection/RTCVideoCodecInfo+Private.h"
118 RTC_OBJC_TYPE(RTCVideoCodecInfo) *info =
119 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithNativeSdpVideoFormat:format];
123 RTC_OBJC_TYPE(RTCVideoCodecInfo) *info = [selector_ encoderForBrokenEncoder];
130 RTC_OBJC_TYPE(RTCVideoCodecInfo) *info = [selector_ encoderForBitrate:rate.kbps<NSInteger>()];
139 RTC_OBJC_TYPE(RTCVideoCodecInfo) *info = [selector_
166 for (RTC_OBJC_TYPE(RTCVideoCodecInfo) * supportedCodec in [encoder_factory_ supportedCodecs]) {
177 for (RTC_OBJC_TYPE(RTCVideoCodecInfo) * supportedCodec in [encoder_factory_ implementations]) {
188 RTC_OBJC_TYPE(RTCVideoCodecInfo) *info =
189 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithNativeSdpVideoFormat:format];
Dobjc_video_decoder_factory.mm20 #import "sdk/objc/api/peerconnection/RTCVideoCodecInfo+Private.h"
98 for (RTC_OBJC_TYPE(RTCVideoCodecInfo) * codecInfo in decoder_factory_.supportedCodecs) {
115 for (RTC_OBJC_TYPE(RTCVideoCodecInfo) * supportedCodec in decoder_factory_.supportedCodecs) {
/external/webrtc/examples/objc/AppRTCMobile/
DARDSettingsModel.h56 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)availableVideoCodecs;
61 - (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)currentVideoCodecSettingFromStore;
71 - (BOOL)storeVideoCodecSetting:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)videoCodec;
DARDSettingsModel.m73 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)availableVideoCodecs {
77 - (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)currentVideoCodecSettingFromStore {
81 Class expectedClass = [RTC_OBJC_TYPE(RTCVideoCodecInfo) class];
83 RTC_OBJC_TYPE(RTCVideoCodecInfo) *videoCodecSetting =
94 - (BOOL)storeVideoCodecSetting:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)videoCodec { argument
175 - (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)defaultVideoCodecSetting {
/external/webrtc/examples/objc/AppRTCMobile/ios/
DRTCVideoCodecInfo+HumanReadable.m11 #import "RTCVideoCodecInfo+HumanReadable.h"
15 @implementation RTC_OBJC_TYPE (RTCVideoCodecInfo) category
DRTCVideoCodecInfo+HumanReadable.h13 @interface RTC_OBJC_TYPE (RTCVideoCodecInfo)
DARDSettingsViewController.m13 #import "RTCVideoCodecInfo+HumanReadable.h"
65 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)videoCodecArray {
217 RTC_OBJC_TYPE(RTCVideoCodecInfo) *codec = self.videoCodecArray[indexPath.row];
234 RTC_OBJC_TYPE(RTCVideoCodecInfo) *videoCodec = self.videoCodecArray[indexPath.row];
/external/webrtc/sdk/objc/api/peerconnection/
DRTCVideoCodecInfo+Private.mm11 #import "RTCVideoCodecInfo+Private.h"
15 @implementation RTC_OBJC_TYPE (RTCVideoCodecInfo) category
DRTCVideoCodecInfo+Private.h18 @interface RTC_OBJC_TYPE (RTCVideoCodecInfo) variable
/external/webrtc/sdk/objc/unittests/
Dobjc_video_decoder_factory_tests.mm36 RTC_OBJC_TYPE(RTCVideoCodecInfo)* supported =
37 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:@"H264" parameters:nil];
Dobjc_video_encoder_factory_tests.mm38 RTC_OBJC_TYPE(RTCVideoCodecInfo)* supported =
39 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:@"H264" parameters:nil];
/external/webrtc/sdk/
DBUILD.gn108 "objc/base/RTCVideoCodecInfo.h",
109 "objc/base/RTCVideoCodecInfo.m",
909 "objc/api/peerconnection/RTCVideoCodecInfo+Private.h",
910 "objc/api/peerconnection/RTCVideoCodecInfo+Private.mm",
1279 "objc/base/RTCVideoCodecInfo.h",
1476 "objc/base/RTCVideoCodecInfo.h",
/external/webrtc/examples/
DBUILD.gn333 "objc/AppRTCMobile/ios/RTCVideoCodecInfo+HumanReadable.h",
334 "objc/AppRTCMobile/ios/RTCVideoCodecInfo+HumanReadable.m",