| /* |
| * 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 "RTCDefaultVideoDecoderFactory.h" |
| |
| #import "RTCH264ProfileLevelId.h" |
| #import "RTCVideoDecoderH264.h" |
| #import "api/video_codec/RTCVideoCodecConstants.h" |
| #import "api/video_codec/RTCVideoDecoderVP8.h" |
| #import "api/video_codec/RTCVideoDecoderVP9.h" |
| #import "base/RTCVideoCodecInfo.h" |
| |
| #if defined(RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY) |
| #import "api/video_codec/RTCVideoDecoderAV1.h" // nogncheck |
| #endif |
| |
| @implementation RTC_OBJC_TYPE (RTCDefaultVideoDecoderFactory) |
| |
| - (NSArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *)supportedCodecs { |
| NSMutableArray<RTC_OBJC_TYPE(RTCVideoCodecInfo) *> *result = |
| [NSMutableArray array]; |
| |
| [result |
| addObjectsFromArray:[RTC_OBJC_TYPE(RTCVideoDecoderH264) supportedCodecs]]; |
| [result |
| addObjectsFromArray:[RTC_OBJC_TYPE(RTCVideoDecoderVP8) supportedCodecs]]; |
| |
| [result |
| addObjectsFromArray:[RTC_OBJC_TYPE(RTCVideoDecoderVP9) supportedCodecs]]; |
| |
| #if defined(RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY) |
| [result |
| addObjectsFromArray:[RTC_OBJC_TYPE(RTCVideoDecoderAV1) supportedCodecs]]; |
| #endif |
| |
| return result; |
| } |
| |
| - (id<RTC_OBJC_TYPE(RTCVideoDecoder)>)createDecoder: |
| (RTC_OBJC_TYPE(RTCVideoCodecInfo) *)info { |
| if ([info.name isEqualToString:kRTCVideoCodecH264Name]) { |
| return [[RTC_OBJC_TYPE(RTCVideoDecoderH264) alloc] init]; |
| } else if ([info.name isEqualToString:kRTCVideoCodecVp8Name]) { |
| return [RTC_OBJC_TYPE(RTCVideoDecoderVP8) vp8Decoder]; |
| } else if ([info.name isEqualToString:kRTCVideoCodecVp9Name] && |
| [RTC_OBJC_TYPE(RTCVideoDecoderVP9) isSupported]) { |
| return [RTC_OBJC_TYPE(RTCVideoDecoderVP9) vp9Decoder]; |
| } |
| |
| #if defined(RTC_DAV1D_IN_INTERNAL_DECODER_FACTORY) |
| if ([info.name isEqualToString:kRTCVideoCodecAv1Name]) { |
| return [RTC_OBJC_TYPE(RTCVideoDecoderAV1) av1Decoder]; |
| } |
| #endif |
| |
| return nil; |
| } |
| |
| @end |