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_THIRD_PARTY_H264) |
| 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/FFmpeg). |
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_THIRD_PARTY_H264) |
| 42 return true; |
33 #else | 43 #else |
34 return false; | 44 return false; |
35 #endif | 45 #endif |
36 } | 46 } |
37 | 47 |
38 H264Encoder* H264Encoder::Create() { | 48 H264Encoder* H264Encoder::Create() { |
39 RTC_DCHECK(H264Encoder::IsSupported()); | 49 RTC_DCHECK(H264Encoder::IsSupported()); |
40 #if defined(WEBRTC_IOS) && defined(WEBRTC_VIDEO_TOOLBOX_SUPPORTED) | 50 #if defined(WEBRTC_IOS) && defined(WEBRTC_VIDEO_TOOLBOX_SUPPORTED) |
41 return new H264VideoToolboxEncoder(); | 51 if (IsH264CodecSupportedObjC()) { |
42 #else | 52 return new H264VideoToolboxEncoder(); |
| 53 } |
| 54 #endif |
| 55 #if defined(WEBRTC_THIRD_PARTY_H264) |
| 56 return new H264EncoderImpl(); |
| 57 #endif |
43 RTC_NOTREACHED(); | 58 RTC_NOTREACHED(); |
44 return nullptr; | 59 return nullptr; |
45 #endif | |
46 } | 60 } |
47 | 61 |
48 bool H264Encoder::IsSupported() { | 62 bool H264Encoder::IsSupported() { |
49 return IsH264CodecSupported(); | 63 return IsH264CodecSupported(); |
50 } | 64 } |
51 | 65 |
52 H264Decoder* H264Decoder::Create() { | 66 H264Decoder* H264Decoder::Create() { |
53 RTC_DCHECK(H264Decoder::IsSupported()); | 67 RTC_DCHECK(H264Decoder::IsSupported()); |
54 #if defined(WEBRTC_IOS) && defined(WEBRTC_VIDEO_TOOLBOX_SUPPORTED) | 68 #if defined(WEBRTC_IOS) && defined(WEBRTC_VIDEO_TOOLBOX_SUPPORTED) |
55 return new H264VideoToolboxDecoder(); | 69 if (IsH264CodecSupportedObjC()) { |
56 #else | 70 return new H264VideoToolboxDecoder(); |
| 71 } |
| 72 #endif |
| 73 #if defined(WEBRTC_THIRD_PARTY_H264) |
| 74 return new H264DecoderImpl(); |
| 75 #endif |
57 RTC_NOTREACHED(); | 76 RTC_NOTREACHED(); |
58 return nullptr; | 77 return nullptr; |
59 #endif | |
60 } | 78 } |
61 | 79 |
62 bool H264Decoder::IsSupported() { | 80 bool H264Decoder::IsSupported() { |
63 return IsH264CodecSupported(); | 81 return IsH264CodecSupported(); |
64 } | 82 } |
65 | 83 |
66 } // namespace webrtc | 84 } // namespace webrtc |
OLD | NEW |