blob: a4db9a70fea690a47a86913d33ceae9c4d20f516 [file] [log] [blame]
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +00001/*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
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
11#ifndef WEBRTC_VIDEO_ENGINE_VIE_INPUT_MANAGER_H_
12#define WEBRTC_VIDEO_ENGINE_VIE_INPUT_MANAGER_H_
13
pbos@webrtc.org52c5c702013-08-12 19:51:57 +000014#include <map>
15
andrew@webrtc.org5e8ee6f2012-10-30 21:58:00 +000016#include "webrtc/modules/video_capture/include/video_capture.h"
pbos@webrtc.org281cff82013-05-17 13:44:48 +000017#include "webrtc/system_wrappers/interface/scoped_ptr.h"
18#include "webrtc/typedefs.h"
19#include "webrtc/video_engine/include/vie_capture.h"
20#include "webrtc/video_engine/vie_defines.h"
21#include "webrtc/video_engine/vie_frame_provider_base.h"
22#include "webrtc/video_engine/vie_manager_base.h"
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000023
24namespace webrtc {
25
andresp@webrtc.orgac6d9192013-05-13 10:50:50 +000026class Config;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000027class CriticalSectionWrapper;
28class ProcessThread;
29class RWLockWrapper;
30class ViECapturer;
31class ViEExternalCapture;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000032class VoiceEngine;
33
34class ViEInputManager : private ViEManagerBase {
35 friend class ViEInputManagerScoped;
36 public:
andresp@webrtc.orgac6d9192013-05-13 10:50:50 +000037 ViEInputManager(int engine_id, const Config& config);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000038 ~ViEInputManager();
39
40 void SetModuleProcessThread(ProcessThread* module_process_thread);
41
42 // Returns number of capture devices.
43 int NumberOfCaptureDevices();
44
45 // Gets name and id for a capture device.
pbos@webrtc.org67879bc2013-04-09 13:41:51 +000046 int GetDeviceName(uint32_t device_number,
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000047 char* device_nameUTF8,
pbos@webrtc.org67879bc2013-04-09 13:41:51 +000048 uint32_t device_name_length,
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000049 char* device_unique_idUTF8,
pbos@webrtc.org67879bc2013-04-09 13:41:51 +000050 uint32_t device_unique_idUTF8Length);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000051
52 // Returns the number of capture capabilities for a specified device.
53 int NumberOfCaptureCapabilities(const char* device_unique_idUTF8);
54
55 // Gets a specific capability for a capture device.
56 int GetCaptureCapability(const char* device_unique_idUTF8,
pbos@webrtc.org67879bc2013-04-09 13:41:51 +000057 const uint32_t device_capability_number,
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000058 CaptureCapability& capability);
59
60 // Show OS specific Capture settings.
61 int DisplayCaptureSettingsDialogBox(const char* device_unique_idUTF8,
62 const char* dialog_titleUTF8,
63 void* parent_window,
pbos@webrtc.org67879bc2013-04-09 13:41:51 +000064 uint32_t positionX,
65 uint32_t positionY);
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000066 int GetOrientation(const char* device_unique_idUTF8,
67 RotateCapturedFrame& orientation);
68
69 // Creates a capture module for the specified capture device and assigns
70 // a capture device id for the device.
71 // Return zero on success, ViEError on failure.
72 int CreateCaptureDevice(const char* device_unique_idUTF8,
pbos@webrtc.org67879bc2013-04-09 13:41:51 +000073 const uint32_t device_unique_idUTF8Length,
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000074 int& capture_id);
75 int CreateCaptureDevice(VideoCaptureModule* capture_module,
76 int& capture_id);
77 int CreateExternalCaptureDevice(ViEExternalCapture*& external_capture,
78 int& capture_id);
79 int DestroyCaptureDevice(int capture_id);
80
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000081 private:
82 // Gets and allocates a free capture device id. Assumed protected by caller.
83 bool GetFreeCaptureId(int* freecapture_id);
84
85 // Frees a capture id assigned in GetFreeCaptureId.
86 void ReturnCaptureId(int capture_id);
87
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000088 // Gets the ViEFrameProvider for this capture observer.
89 ViEFrameProviderBase* ViEFrameProvider(
90 const ViEFrameCallback* capture_observer) const;
91
92 // Gets the ViEFrameProvider for this capture observer.
93 ViEFrameProviderBase* ViEFrameProvider(int provider_id) const;
94
95 // Gets the ViECapturer for the capture device id.
96 ViECapturer* ViECapturePtr(int capture_id) const;
97
andresp@webrtc.orgac6d9192013-05-13 10:50:50 +000098 const Config& config_;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +000099 int engine_id_;
100 scoped_ptr<CriticalSectionWrapper> map_cs_;
pbos@webrtc.org8623e9b2013-03-08 13:12:29 +0000101 scoped_ptr<CriticalSectionWrapper> device_info_cs_;
pbos@webrtc.org52c5c702013-08-12 19:51:57 +0000102
103 typedef std::map<int, ViEFrameProviderBase*> FrameProviderMap;
104 FrameProviderMap vie_frame_provider_map_;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +0000105
106 // Capture devices.
107 VideoCaptureModule::DeviceInfo* capture_device_info_;
108 int free_capture_device_id_[kViEMaxCaptureDevices];
109
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +0000110 ProcessThread* module_process_thread_; // Weak.
111};
112
113// Provides protected access to ViEInputManater.
114class ViEInputManagerScoped: private ViEManagerScopedBase {
115 public:
116 explicit ViEInputManagerScoped(const ViEInputManager& vie_input_manager);
117
118 ViECapturer* Capture(int capture_id) const;
andrew@webrtc.orgb015cbe2012-10-22 18:19:23 +0000119 ViEFrameProviderBase* FrameProvider(int provider_id) const;
120 ViEFrameProviderBase* FrameProvider(const ViEFrameCallback*
121 capture_observer) const;
122};
123
124} // namespace webrtc
125
126#endif // WEBRTC_VIDEO_ENGINE_VIE_INPUT_MANAGER_H_