/external/webrtc/sdk/objc/components/video_codec/ |
D | RTCDefaultVideoEncoderFactory.m | 17 #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]; 49 RTC_OBJC_TYPE(RTCVideoCodecInfo) *vp9Info = 50 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecVp9Name]; [all …]
|
D | RTCDefaultVideoDecoderFactory.m | 17 #import "base/RTCVideoCodecInfo.h" 24 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)supportedCodecs { 30 RTC_OBJC_TYPE(RTCVideoCodecInfo) *constrainedHighInfo = 31 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecH264Name 39 RTC_OBJC_TYPE(RTCVideoCodecInfo) *constrainedBaselineInfo = 40 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecH264Name 43 RTC_OBJC_TYPE(RTCVideoCodecInfo) *vp8Info = 44 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecVp8Name]; 47 RTC_OBJC_TYPE(RTCVideoCodecInfo) *vp9Info = 48 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:kRTCVideoCodecVp9Name]; [all …]
|
D | RTCVideoEncoderFactoryH264.m | 18 - (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
|
D | RTCVideoDecoderFactoryH264.m | 18 - (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
|
D | RTCDefaultVideoEncoderFactory.h | 25 @property(nonatomic, retain) RTC_OBJC_TYPE(RTCVideoCodecInfo) *preferredCodec; 27 + (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)supportedCodecs;
|
D | RTCVideoEncoderH264.h | 20 - (instancetype)initWithCodecInfo:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)codecInfo;
|
D | RTCVideoEncoderH264.mm | 23 #import "api/peerconnection/RTCVideoCodecInfo+Private.h" 315 RTC_OBJC_TYPE(RTCVideoCodecInfo) * _codecInfo; 341 - (instancetype)initWithCodecInfo:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)codecInfo { argument
|
/external/webrtc/sdk/objc/base/ |
D | RTCVideoEncoderFactory.h | 26 - (void)registerCurrentEncoderInfo : (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info; 27 - (nullable RTC_OBJC_TYPE(RTCVideoCodecInfo) *)encoderForBitrate:(NSInteger)bitrate; 28 - (nullable RTC_OBJC_TYPE(RTCVideoCodecInfo) *)encoderForBrokenEncoder; 39 : (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info; 40 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *) 44 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)implementations;
|
D | RTCVideoDecoderFactory.h | 26 : (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info; 27 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)
|
D | RTCVideoCodecInfo.h | 19 @interface RTC_OBJC_TYPE (RTCVideoCodecInfo) : NSObject <NSCoding> 29 - (BOOL)isEqualToCodecInfo:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info;
|
D | RTCVideoCodecInfo.m | 11 #import "RTCVideoCodecInfo.h" 13 @implementation RTC_OBJC_TYPE (RTCVideoCodecInfo) category 32 - (BOOL)isEqualToCodecInfo:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info { argument
|
/external/webrtc/examples/objc/AppRTCMobile/ |
D | ARDSettingsModel.h | 13 #import <WebRTC/RTCVideoCodecInfo.h> 56 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)availableVideoCodecs; 61 - (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)currentVideoCodecSettingFromStore; 71 - (BOOL)storeVideoCodecSetting:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)videoCodec;
|
D | ARDSettingsModel.m | 73 - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)availableVideoCodecs { 77 - (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)currentVideoCodecSettingFromStore { 83 - (BOOL)storeVideoCodecSetting:(RTC_OBJC_TYPE(RTCVideoCodecInfo) *)videoCodec { argument 152 - (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)defaultVideoCodecSetting {
|
/external/webrtc/sdk/objc/native/src/ |
D | objc_video_encoder_factory.mm | 21 #import "sdk/objc/api/peerconnection/RTCVideoCodecInfo+Private.h" 120 RTC_OBJC_TYPE(RTCVideoCodecInfo) *info = 121 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithNativeSdpVideoFormat:format]; 125 RTC_OBJC_TYPE(RTCVideoCodecInfo) *info = [selector_ encoderForBrokenEncoder]; 132 RTC_OBJC_TYPE(RTCVideoCodecInfo) *info = [selector_ encoderForBitrate:rate.kbps<NSInteger>()]; 157 for (RTC_OBJC_TYPE(RTCVideoCodecInfo) * supportedCodec in [encoder_factory_ supportedCodecs]) { 168 for (RTC_OBJC_TYPE(RTCVideoCodecInfo) * supportedCodec in [encoder_factory_ implementations]) { 192 RTC_OBJC_TYPE(RTCVideoCodecInfo) *info = 193 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithNativeSdpVideoFormat:format];
|
D | objc_video_decoder_factory.mm | 19 #import "sdk/objc/api/peerconnection/RTCVideoCodecInfo+Private.h" 97 for (RTC_OBJC_TYPE(RTCVideoCodecInfo) * codecInfo in decoder_factory_.supportedCodecs) { 114 for (RTC_OBJC_TYPE(RTCVideoCodecInfo) * supportedCodec in decoder_factory_.supportedCodecs) {
|
/external/webrtc/examples/objc/AppRTCMobile/ios/ |
D | RTCVideoCodecInfo+HumanReadable.h | 11 #import <WebRTC/RTCVideoCodecInfo.h> 13 @interface RTC_OBJC_TYPE (RTCVideoCodecInfo)
|
D | RTCVideoCodecInfo+HumanReadable.m | 11 #import "RTCVideoCodecInfo+HumanReadable.h" 15 @implementation RTC_OBJC_TYPE (RTCVideoCodecInfo) category
|
D | ARDSettingsViewController.m | 13 #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/ |
D | RTCVideoCodecInfo+Private.mm | 11 #import "RTCVideoCodecInfo+Private.h" 15 @implementation RTC_OBJC_TYPE (RTCVideoCodecInfo) category
|
D | RTCVideoCodecInfo+Private.h | 18 @interface RTC_OBJC_TYPE (RTCVideoCodecInfo) variable
|
/external/webrtc/sdk/objc/unittests/ |
D | objc_video_decoder_factory_tests.mm | 35 RTC_OBJC_TYPE(RTCVideoCodecInfo)* supported = 36 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:@"H264" parameters:nil];
|
D | objc_video_encoder_factory_tests.mm | 38 RTC_OBJC_TYPE(RTCVideoCodecInfo)* supported = 39 [[RTC_OBJC_TYPE(RTCVideoCodecInfo) alloc] initWithName:@"H264" parameters:nil];
|
/external/webrtc/sdk/ |
D | BUILD.gn | 111 "objc/base/RTCVideoCodecInfo.h", 112 "objc/base/RTCVideoCodecInfo.m", 781 "objc/api/peerconnection/RTCVideoCodecInfo+Private.h", 782 "objc/api/peerconnection/RTCVideoCodecInfo+Private.mm", 1035 "objc/Framework/Headers/WebRTC/RTCVideoCodecInfo.h", 1254 "objc/base/RTCVideoCodecInfo.h", 1444 "objc/base/RTCVideoCodecInfo.h",
|
/external/webrtc/examples/ |
D | BUILD.gn | 338 "objc/AppRTCMobile/ios/RTCVideoCodecInfo+HumanReadable.h", 339 "objc/AppRTCMobile/ios/RTCVideoCodecInfo+HumanReadable.m",
|