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