niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 1 | /* |
astor@webrtc.org | bd7aeba | 2012-06-26 10:47:04 +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 | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 11 | // ViESharedData contains data and instances common to all interface |
| 12 | // implementations. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 13 | |
mflodman@webrtc.org | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 14 | #ifndef WEBRTC_VIDEO_ENGINE_VIE_SHARED_DATA_H_ |
| 15 | #define WEBRTC_VIDEO_ENGINE_VIE_SHARED_DATA_H_ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 16 | |
mflodman@webrtc.org | 4dee309 | 2013-05-16 11:13:18 +0000 | [diff] [blame] | 17 | #include "webrtc/system_wrappers/interface/scoped_ptr.h" |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 18 | |
| 19 | namespace webrtc { |
mflodman@webrtc.org | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 20 | |
andresp@webrtc.org | 7707d06 | 2013-05-13 10:50:50 +0000 | [diff] [blame] | 21 | class Config; |
mflodman@webrtc.org | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 22 | class ProcessThread; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 23 | class ViEChannelManager; |
| 24 | class ViEInputManager; |
mflodman@webrtc.org | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 25 | class ViERenderManager; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 26 | |
mflodman@webrtc.org | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 27 | class ViESharedData { |
mflodman@webrtc.org | b11424b | 2012-01-25 13:42:03 +0000 | [diff] [blame] | 28 | public: |
mflodman@webrtc.org | 4dee309 | 2013-05-16 11:13:18 +0000 | [diff] [blame] | 29 | explicit ViESharedData(const Config& config); |
mflodman@webrtc.org | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 30 | ~ViESharedData(); |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 31 | |
mflodman@webrtc.org | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 32 | void SetLastError(const int error) const; |
| 33 | int LastErrorInternal() const; |
mflodman@webrtc.org | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 34 | int NumberOfCores() const; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 35 | |
mflodman@webrtc.org | 4dee309 | 2013-05-16 11:13:18 +0000 | [diff] [blame] | 36 | // TODO(mflodman) Remove all calls to 'instance_id()'. |
| 37 | int instance_id() { return 0;} |
| 38 | ViEChannelManager* channel_manager() { return channel_manager_.get(); } |
| 39 | ViEInputManager* input_manager() { return input_manager_.get(); } |
| 40 | ViERenderManager* render_manager() { return render_manager_.get(); } |
mflodman@webrtc.org | b11424b | 2012-01-25 13:42:03 +0000 | [diff] [blame] | 41 | |
| 42 | private: |
mflodman@webrtc.org | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 43 | const int number_cores_; |
| 44 | |
mflodman@webrtc.org | 4dee309 | 2013-05-16 11:13:18 +0000 | [diff] [blame] | 45 | scoped_ptr<ViEChannelManager> channel_manager_; |
| 46 | scoped_ptr<ViEInputManager> input_manager_; |
| 47 | scoped_ptr<ViERenderManager> render_manager_; |
mflodman@webrtc.org | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 48 | ProcessThread* module_process_thread_; |
mflodman@webrtc.org | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 49 | mutable int last_error_; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 50 | }; |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 51 | |
mflodman@webrtc.org | 471e83e | 2011-11-24 15:16:00 +0000 | [diff] [blame] | 52 | } // namespace webrtc |
| 53 | |
| 54 | #endif // WEBRTC_VIDEO_ENGINE_VIE_SHARED_DATA_H_ |