| 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 // Linux specific implementation of VideoCaptureDevice. | 5 // Linux specific implementation of VideoCaptureDevice. |
| 6 // V4L2 is used for capturing. V4L2 does not provide its own thread for | 6 // V4L2 is used for capturing. V4L2 does not provide its own thread for |
| 7 // capturing so this implementation uses a Chromium thread for fetching frames | 7 // capturing so this implementation uses a Chromium thread for fetching frames |
| 8 // from V4L2. | 8 // from V4L2. |
| 9 | 9 |
| 10 #ifndef MEDIA_VIDEO_CAPTURE_LINUX_VIDEO_CAPTURE_DEVICE_LINUX_H_ | 10 #ifndef MEDIA_VIDEO_CAPTURE_LINUX_VIDEO_CAPTURE_DEVICE_LINUX_H_ |
| 11 #define MEDIA_VIDEO_CAPTURE_LINUX_VIDEO_CAPTURE_DEVICE_LINUX_H_ | 11 #define MEDIA_VIDEO_CAPTURE_LINUX_VIDEO_CAPTURE_DEVICE_LINUX_H_ |
| 12 | 12 |
| 13 #include <string> | 13 #include <string> |
| 14 | 14 |
| 15 #include "base/threading/thread.h" | 15 #include "base/threading/thread.h" |
| 16 #include "media/video/capture/video_capture_device.h" | 16 #include "media/video/capture/video_capture_device.h" |
| 17 #include "media/video/capture/video_capture_types.h" | 17 #include "media/video/capture/video_capture_types.h" |
| 18 | 18 |
| 19 namespace media { | 19 namespace media { |
| 20 | 20 |
| 21 class VideoCaptureDeviceLinux : public VideoCaptureDevice { | 21 class VideoCaptureDeviceLinux : public VideoCaptureDevice { |
| 22 public: | 22 public: |
| 23 explicit VideoCaptureDeviceLinux(const Name& device_name); | 23 explicit VideoCaptureDeviceLinux(const Name& device_name); |
| 24 virtual ~VideoCaptureDeviceLinux(); | 24 virtual ~VideoCaptureDeviceLinux(); |
| 25 | 25 |
| 26 // VideoCaptureDevice implementation. | 26 // VideoCaptureDevice implementation. |
| 27 virtual void AllocateAndStart(const VideoCaptureCapability& capture_format, | 27 virtual void AllocateAndStart(const VideoCaptureParams& params, |
| 28 scoped_ptr<Client> client) OVERRIDE; | 28 scoped_ptr<Client> client) OVERRIDE; |
| 29 | 29 |
| 30 virtual void StopAndDeAllocate() OVERRIDE; | 30 virtual void StopAndDeAllocate() OVERRIDE; |
| 31 | 31 |
| 32 private: | 32 private: |
| 33 enum InternalState { | 33 enum InternalState { |
| 34 kIdle, // The device driver is opened but camera is not in use. | 34 kIdle, // The device driver is opened but camera is not in use. |
| 35 kCapturing, // Video is being captured. | 35 kCapturing, // Video is being captured. |
| 36 kError // Error accessing HW functions. | 36 kError // Error accessing HW functions. |
| 37 // User needs to recover by destroying the object. | 37 // User needs to recover by destroying the object. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 57 void SetErrorState(const std::string& reason); | 57 void SetErrorState(const std::string& reason); |
| 58 | 58 |
| 59 InternalState state_; | 59 InternalState state_; |
| 60 scoped_ptr<VideoCaptureDevice::Client> client_; | 60 scoped_ptr<VideoCaptureDevice::Client> client_; |
| 61 Name device_name_; | 61 Name device_name_; |
| 62 int device_fd_; // File descriptor for the opened camera device. | 62 int device_fd_; // File descriptor for the opened camera device. |
| 63 base::Thread v4l2_thread_; // Thread used for reading data from the device. | 63 base::Thread v4l2_thread_; // Thread used for reading data from the device. |
| 64 Buffer* buffer_pool_; | 64 Buffer* buffer_pool_; |
| 65 int buffer_pool_size_; // Number of allocated buffers. | 65 int buffer_pool_size_; // Number of allocated buffers. |
| 66 int timeout_count_; | 66 int timeout_count_; |
| 67 VideoCaptureCapability frame_info_; | 67 VideoCaptureFormat capture_format_; |
| 68 | 68 |
| 69 DISALLOW_IMPLICIT_CONSTRUCTORS(VideoCaptureDeviceLinux); | 69 DISALLOW_IMPLICIT_CONSTRUCTORS(VideoCaptureDeviceLinux); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } // namespace media | 72 } // namespace media |
| 73 | 73 |
| 74 #endif // MEDIA_VIDEO_CAPTURE_LINUX_VIDEO_CAPTURE_DEVICE_LINUX_H_ | 74 #endif // MEDIA_VIDEO_CAPTURE_LINUX_VIDEO_CAPTURE_DEVICE_LINUX_H_ |
| OLD | NEW |