niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
mflodman@webrtc.org | cee447a | 2012-06-28 07:29:46 +0000 | [diff] [blame^] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
mflodman@webrtc.org | cee447a | 2012-06-28 07:29:46 +0000 | [diff] [blame^] | 11 | #ifndef WEBRTC_VIDEO_ENGINE_VIE_IMPL_H_ // NOLINT |
| 12 | #define WEBRTC_VIDEO_ENGINE_VIE_IMPL_H_ // NOLINT |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 13 | |
mflodman@webrtc.org | cee447a | 2012-06-28 07:29:46 +0000 | [diff] [blame^] | 14 | #include "engine_configurations.h" // NOLINT |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 15 | #include "video_engine/vie_defines.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 16 | |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 17 | #include "video_engine/vie_base_impl.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 18 | |
| 19 | #ifdef WEBRTC_VIDEO_ENGINE_CAPTURE_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 20 | #include "video_engine/vie_capture_impl.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 21 | #endif |
| 22 | #ifdef WEBRTC_VIDEO_ENGINE_CODEC_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 23 | #include "video_engine/vie_codec_impl.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 24 | #endif |
| 25 | #ifdef WEBRTC_VIDEO_ENGINE_ENCRYPTION_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 26 | #include "video_engine/vie_encryption_impl.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 27 | #endif |
| 28 | #ifdef WEBRTC_VIDEO_ENGINE_FILE_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 29 | #include "video_engine/vie_file_impl.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 30 | #endif |
| 31 | #ifdef WEBRTC_VIDEO_ENGINE_IMAGE_PROCESS_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 32 | #include "video_engine/vie_image_process_impl.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 33 | #endif |
| 34 | #ifdef WEBRTC_VIDEO_ENGINE_NETWORK_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 35 | #include "video_engine/vie_network_impl.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 36 | #endif |
| 37 | #ifdef WEBRTC_VIDEO_ENGINE_RENDER_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 38 | #include "video_engine/vie_render_impl.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 39 | #endif |
| 40 | #ifdef WEBRTC_VIDEO_ENGINE_RTP_RTCP_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 41 | #include "video_engine/vie_rtp_rtcp_impl.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 42 | #endif |
| 43 | #ifdef WEBRTC_VIDEO_ENGINE_EXTERNAL_CODEC_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 44 | #include "video_engine/vie_external_codec_impl.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 45 | #endif |
| 46 | |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 47 | namespace webrtc { |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 48 | |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 49 | class VideoEngineImpl |
| 50 | : public ViEBaseImpl |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 51 | #ifdef WEBRTC_VIDEO_ENGINE_CODEC_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 52 | , public ViECodecImpl |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 53 | #endif |
| 54 | #ifdef WEBRTC_VIDEO_ENGINE_CAPTURE_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 55 | , public ViECaptureImpl |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 56 | #endif |
| 57 | #ifdef WEBRTC_VIDEO_ENGINE_ENCRYPTION_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 58 | , public ViEEncryptionImpl |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 59 | #endif |
| 60 | #ifdef WEBRTC_VIDEO_ENGINE_FILE_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 61 | , public ViEFileImpl |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 62 | #endif |
| 63 | #ifdef WEBRTC_VIDEO_ENGINE_IMAGE_PROCESS_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 64 | , public ViEImageProcessImpl |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 65 | #endif |
| 66 | #ifdef WEBRTC_VIDEO_ENGINE_NETWORK_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 67 | , public ViENetworkImpl |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 68 | #endif |
| 69 | #ifdef WEBRTC_VIDEO_ENGINE_RENDER_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 70 | , public ViERenderImpl |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 71 | #endif |
| 72 | #ifdef WEBRTC_VIDEO_ENGINE_RTP_RTCP_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 73 | , public ViERTP_RTCPImpl |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 74 | #endif |
| 75 | #ifdef WEBRTC_VIDEO_ENGINE_EXTERNAL_CODEC_API |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 76 | , public ViEExternalCodecImpl |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 77 | #endif |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 78 | { // NOLINT |
| 79 | public: |
mflodman@webrtc.org | b11424b | 2012-01-25 13:42:03 +0000 | [diff] [blame] | 80 | VideoEngineImpl() |
| 81 | : |
| 82 | #ifdef WEBRTC_VIDEO_ENGINE_CODEC_API |
| 83 | ViECodecImpl(ViEBaseImpl::shared_data()) |
| 84 | #endif |
| 85 | #ifdef WEBRTC_VIDEO_ENGINE_CAPTURE_API |
| 86 | , ViECaptureImpl(ViEBaseImpl::shared_data()) |
| 87 | #endif |
| 88 | #ifdef WEBRTC_VIDEO_ENGINE_ENCRYPTION_API |
| 89 | , ViEEncryptionImpl(ViEBaseImpl::shared_data()) |
| 90 | #endif |
| 91 | #ifdef WEBRTC_VIDEO_ENGINE_FILE_API |
| 92 | , ViEFileImpl(ViEBaseImpl::shared_data()) |
| 93 | #endif |
| 94 | #ifdef WEBRTC_VIDEO_ENGINE_IMAGE_PROCESS_API |
| 95 | , ViEImageProcessImpl(ViEBaseImpl::shared_data()) |
| 96 | #endif |
| 97 | #ifdef WEBRTC_VIDEO_ENGINE_NETWORK_API |
| 98 | , ViENetworkImpl(ViEBaseImpl::shared_data()) |
| 99 | #endif |
| 100 | #ifdef WEBRTC_VIDEO_ENGINE_RENDER_API |
| 101 | , ViERenderImpl(ViEBaseImpl::shared_data()) |
| 102 | #endif |
| 103 | #ifdef WEBRTC_VIDEO_ENGINE_RTP_RTCP_API |
| 104 | , ViERTP_RTCPImpl(ViEBaseImpl::shared_data()) |
| 105 | #endif |
| 106 | #ifdef WEBRTC_VIDEO_ENGINE_EXTERNAL_CODEC_API |
| 107 | , ViEExternalCodecImpl(ViEBaseImpl::shared_data()) |
| 108 | #endif |
| 109 | {} |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 110 | virtual ~VideoEngineImpl() {} |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 111 | }; |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 112 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 113 | } // namespace webrtc |
mflodman@webrtc.org | 1bdf1df | 2011-12-20 11:57:47 +0000 | [diff] [blame] | 114 | |
mflodman@webrtc.org | cee447a | 2012-06-28 07:29:46 +0000 | [diff] [blame^] | 115 | #endif // WEBRTC_VIDEO_ENGINE_VIE_IMPL_H_ // NOLINT |