OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_H_ |
6 #define CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_H_ | 6 #define CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 | 10 |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 void OnDeviceSupportedFormatsEnumerated( | 122 void OnDeviceSupportedFormatsEnumerated( |
123 const media::VideoCaptureFormats& supported_formats) override; | 123 const media::VideoCaptureFormats& supported_formats) override; |
124 void OnDeviceFormatsInUseReceived( | 124 void OnDeviceFormatsInUseReceived( |
125 const media::VideoCaptureFormats& formats_in_use) override; | 125 const media::VideoCaptureFormats& formats_in_use) override; |
126 void OnDelegateAdded(int32 device_id) override; | 126 void OnDelegateAdded(int32 device_id) override; |
127 | 127 |
128 // Sends an IPC message to browser process when all clients are done with the | 128 // Sends an IPC message to browser process when all clients are done with the |
129 // buffer. | 129 // buffer. |
130 void OnClientBufferFinished(int buffer_id, | 130 void OnClientBufferFinished(int buffer_id, |
131 const scoped_refptr<ClientBuffer>& buffer, | 131 const scoped_refptr<ClientBuffer>& buffer, |
132 uint32 release_sync_point); | 132 uint32 release_sync_point, |
| 133 double consumer_resource_utilization); |
133 | 134 |
134 void StopDevice(); | 135 void StopDevice(); |
135 void RestartCapture(); | 136 void RestartCapture(); |
136 void StartCaptureInternal(); | 137 void StartCaptureInternal(); |
137 | 138 |
138 virtual void Send(IPC::Message* message); | 139 virtual void Send(IPC::Message* message); |
139 | 140 |
140 // Helpers. | 141 // Helpers. |
141 bool RemoveClient(int client_id, ClientInfoMap* clients); | 142 bool RemoveClient(int client_id, ClientInfoMap* clients); |
142 | 143 |
| 144 // Called (by an unknown thread) when all consumers are done with a VideoFrame |
| 145 // and its ref-count has gone to zero. This helper function grabs the |
| 146 // RESOURCE_UTILIZATION value from the |metadata| and then runs the given |
| 147 // callback, to trampoline back to the IO thread with the values. |
| 148 static void DidFinishConsumingFrame( |
| 149 const media::VideoFrameMetadata* metadata, |
| 150 uint32* release_sync_point_storage, // Takes ownership. |
| 151 const base::Callback<void(uint32, double)>& callback_to_io_thread); |
| 152 |
143 const scoped_refptr<VideoCaptureMessageFilter> message_filter_; | 153 const scoped_refptr<VideoCaptureMessageFilter> message_filter_; |
144 int device_id_; | 154 int device_id_; |
145 const int session_id_; | 155 const int session_id_; |
146 | 156 |
147 // Vector of callbacks to be notified of device format enumerations, used only | 157 // Vector of callbacks to be notified of device format enumerations, used only |
148 // on IO Thread. | 158 // on IO Thread. |
149 std::vector<VideoCaptureDeviceFormatsCB> device_formats_cb_queue_; | 159 std::vector<VideoCaptureDeviceFormatsCB> device_formats_cb_queue_; |
150 // Vector of callbacks to be notified of a device's in use capture format(s), | 160 // Vector of callbacks to be notified of a device's in use capture format(s), |
151 // used only on IO Thread. | 161 // used only on IO Thread. |
152 std::vector<VideoCaptureDeviceFormatsCB> device_formats_in_use_cb_queue_; | 162 std::vector<VideoCaptureDeviceFormatsCB> device_formats_in_use_cb_queue_; |
(...skipping 24 matching lines...) Expand all Loading... |
177 // in |client_buffers_|. | 187 // in |client_buffers_|. |
178 // NOTE: Weak pointers must be invalidated before all other member variables. | 188 // NOTE: Weak pointers must be invalidated before all other member variables. |
179 base::WeakPtrFactory<VideoCaptureImpl> weak_factory_; | 189 base::WeakPtrFactory<VideoCaptureImpl> weak_factory_; |
180 | 190 |
181 DISALLOW_COPY_AND_ASSIGN(VideoCaptureImpl); | 191 DISALLOW_COPY_AND_ASSIGN(VideoCaptureImpl); |
182 }; | 192 }; |
183 | 193 |
184 } // namespace content | 194 } // namespace content |
185 | 195 |
186 #endif // CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_H_ | 196 #endif // CONTENT_RENDERER_MEDIA_VIDEO_CAPTURE_IMPL_H_ |
OLD | NEW |