OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 * | 9 * |
10 */ | 10 */ |
11 | 11 |
12 #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" | 12 #include "webrtc/modules/video_coding/codecs/h264/include/h264.h" |
13 | 13 |
| 14 #if defined(WEBRTC_OPENH264) |
| 15 #include "webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h" |
| 16 #include "webrtc/modules/video_coding/codecs/h264/h264_decoder_impl.h" |
| 17 #endif |
14 #if defined(WEBRTC_IOS) | 18 #if defined(WEBRTC_IOS) |
15 #include "webrtc/modules/video_coding/codecs/h264/h264_video_toolbox_decoder.h" | 19 #include "webrtc/modules/video_coding/codecs/h264/h264_video_toolbox_decoder.h" |
16 #include "webrtc/modules/video_coding/codecs/h264/h264_video_toolbox_encoder.h" | 20 #include "webrtc/modules/video_coding/codecs/h264/h264_video_toolbox_encoder.h" |
17 #endif | 21 #endif |
18 | 22 |
19 #include "webrtc/base/checks.h" | 23 #include "webrtc/base/checks.h" |
20 | 24 |
21 namespace webrtc { | 25 namespace webrtc { |
22 | 26 |
23 // We need this file to be C++ only so it will compile properly for all | 27 // We need this file to be C++ only so it will compile properly for all |
24 // platforms. In order to write ObjC specific implementations we use private | 28 // platforms. In order to write ObjC specific implementations we use private |
25 // externs. This function is defined in h264.mm. | 29 // externs. This function is defined in h264.mm. |
26 #if defined(WEBRTC_IOS) | 30 #if defined(WEBRTC_IOS) |
27 extern bool IsH264CodecSupportedObjC(); | 31 extern bool IsH264CodecSupportedObjC(); |
28 #endif | 32 #endif |
29 | 33 |
| 34 // If any H.264 codec is supported (iOS HW or OpenH264). |
30 bool IsH264CodecSupported() { | 35 bool IsH264CodecSupported() { |
31 #if defined(WEBRTC_IOS) | 36 #if defined(WEBRTC_IOS) |
32 return IsH264CodecSupportedObjC(); | 37 if (IsH264CodecSupportedObjC()) { |
| 38 return true; |
| 39 } |
| 40 #endif |
| 41 #if defined(WEBRTC_OPENH264) |
| 42 return true; |
33 #else | 43 #else |
34 return false; | 44 return false; |
35 #endif | 45 #endif |
| 46 } |
| 47 |
| 48 // If H.264 codec is supported and OpenH264 is the implementation used, meaning |
| 49 // H264EncoderImpl and H264DecoderImpl. |
| 50 bool IsOpenH264CodecSupported() { |
| 51 #if defined(WEBRTC_OPENH264) |
| 52 #if defined(WEBRTC_IOS) |
| 53 // If on iOS and we have HW H.264 support we will prefer that over OpenH264 |
| 54 // and say that OpenH264 is not supported (even though some H264 is). |
| 55 // TODO(hbos): If we could support both HW and SW implementations then we |
| 56 // should do so and have the ability to choose. |
| 57 return !IsH264CodecSupportedObjC(); |
| 58 #else |
| 59 return true; |
| 60 #endif |
| 61 #else |
| 62 return false; |
| 63 #endif |
36 } | 64 } |
37 | 65 |
38 H264Encoder* H264Encoder::Create() { | 66 H264Encoder* H264Encoder::Create() { |
39 RTC_DCHECK(H264Encoder::IsSupported()); | 67 RTC_DCHECK(H264Encoder::IsSupported()); |
40 #if defined(WEBRTC_IOS) && defined(WEBRTC_VIDEO_TOOLBOX_SUPPORTED) | 68 #if defined(WEBRTC_IOS) && defined(WEBRTC_VIDEO_TOOLBOX_SUPPORTED) |
41 return new H264VideoToolboxEncoder(); | 69 if (IsH264CodecSupportedObjC()) { |
42 #else | 70 return new H264VideoToolboxEncoder(); |
| 71 } |
| 72 #endif |
| 73 #if defined(WEBRTC_OPENH264) |
| 74 if (IsOpenH264CodecSupported()) { |
| 75 return new H264EncoderImpl(); |
| 76 } |
| 77 #endif |
43 RTC_NOTREACHED(); | 78 RTC_NOTREACHED(); |
44 return nullptr; | 79 return nullptr; |
45 #endif | |
46 } | 80 } |
47 | 81 |
48 bool H264Encoder::IsSupported() { | 82 bool H264Encoder::IsSupported() { |
49 return IsH264CodecSupported(); | 83 return IsH264CodecSupported(); |
50 } | 84 } |
51 | 85 |
| 86 bool H264Encoder::IsSupportedOpenH264() { |
| 87 return IsOpenH264CodecSupported(); |
| 88 } |
| 89 |
52 H264Decoder* H264Decoder::Create() { | 90 H264Decoder* H264Decoder::Create() { |
53 RTC_DCHECK(H264Decoder::IsSupported()); | 91 RTC_DCHECK(H264Decoder::IsSupported()); |
54 #if defined(WEBRTC_IOS) && defined(WEBRTC_VIDEO_TOOLBOX_SUPPORTED) | 92 #if defined(WEBRTC_IOS) && defined(WEBRTC_VIDEO_TOOLBOX_SUPPORTED) |
55 return new H264VideoToolboxDecoder(); | 93 if (IsH264CodecSupportedObjC()) { |
56 #else | 94 return new H264VideoToolboxDecoder(); |
| 95 } |
| 96 #endif |
| 97 #if defined(WEBRTC_OPENH264) |
| 98 if (IsOpenH264CodecSupported()) { |
| 99 return new H264DecoderImpl(); |
| 100 } |
| 101 #endif |
57 RTC_NOTREACHED(); | 102 RTC_NOTREACHED(); |
58 return nullptr; | 103 return nullptr; |
59 #endif | |
60 } | 104 } |
61 | 105 |
62 bool H264Decoder::IsSupported() { | 106 bool H264Decoder::IsSupported() { |
63 return IsH264CodecSupported(); | 107 return IsH264CodecSupported(); |
64 } | 108 } |
65 | 109 |
| 110 bool H264Decoder::IsSupportedOpenH264() { |
| 111 return IsOpenH264CodecSupported(); |
| 112 } |
| 113 |
66 } // namespace webrtc | 114 } // namespace webrtc |
OLD | NEW |