| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef MEDIA_CAPTURE_VIDEO_LINUX_CAMERA_FACING_CHROMEOS_H_ |
| 6 #define MEDIA_CAPTURE_VIDEO_LINUX_CAMERA_FACING_CHROMEOS_H_ |
| 7 |
| 8 #include <stddef.h> |
| 9 |
| 10 #include <string> |
| 11 #include <unordered_map> |
| 12 |
| 13 #include <base/strings/string_piece.h> |
| 14 #include "media/capture/capture_export.h" |
| 15 |
| 16 namespace media { |
| 17 |
| 18 // CameraFacingChromeOS reads the file /etc/camera/camera_characteristics.conf |
| 19 // and populates |camera_id_to_facing_|, |usb_id_to_camera_id_| and |
| 20 // |model_id_to_camera_id_|. |
| 21 // |
| 22 // Each line in the config file can be: |
| 23 // 1. Empty line |
| 24 // 2. Line starts with '#': comments |
| 25 // 3. Line follows the format: |
| 26 // camera[camera_id].[root_level_attribute]=[value] OR |
| 27 // camera[camera_id].module[module_id].[module_level_attribute]=[value] |
| 28 // |
| 29 // There are several assumptions of the config file: |
| 30 // 1. One camera ID has exactly one lens_facing attribute, at root level. |
| 31 // 2. usb_path is specified at module level. usb_path may not present at all, |
| 32 // but if it presents, the same usb_path does not appear accross different |
| 33 // camera IDs. |
| 34 // 3. usb_vid_pid is specified at module level. If usb_path does not present, |
| 35 // each module needs to have one unique usb_vid_pid. |
| 36 // |
| 37 // Example of the config file: |
| 38 // camera0.lens_facing=0 |
| 39 // camera0.sensor_orientation=0 |
| 40 // camera0.module0.usb_vid_pid=0123:4567 |
| 41 // camera0.module0.horizontal_view_angle=68.4 |
| 42 // camera0.module0.lens_info_available_focal_lengths=1.64 |
| 43 // camera0.module0.lens_info_minimum_focus_distance=0.22 |
| 44 // camera0.module0.lens_info_optimal_focus_distance=0.5 |
| 45 // camera0.module0.vertical_view_angle=41.6 |
| 46 // camera0.module1.usb_vid_pid=89ab:cdef |
| 47 // camera0.module1.lens_info_available_focal_lengths=1.69,2 |
| 48 // camera1.lens_facing=1 |
| 49 // camera1.sensor_orientation=180 |
| 50 class CAPTURE_EXPORT CameraFacingChromeOS { |
| 51 public: |
| 52 enum LensFacing { FRONT = 0, BACK = 1 }; |
| 53 |
| 54 CameraFacingChromeOS(); |
| 55 CAPTURE_EXPORT CameraFacingChromeOS(const std::string& config_file_path); |
| 56 CAPTURE_EXPORT ~CameraFacingChromeOS(); |
| 57 |
| 58 // Get camera facing by specifying USB vid and pid and device path. |model_id| |
| 59 // should be formatted as "vid:pid". |device_id| is something like |
| 60 // "/dev/video2". It first tries to match usb path, obtained from |device_id|. |
| 61 // If fails, |model_id| is then used. |
| 62 // Returns LensFacing::FRONT or LensFacing::BACK. |
| 63 // Default is LensFacing::FRONT. |
| 64 CAPTURE_EXPORT LensFacing GetCameraFacing(const std::string& device_id, |
| 65 const std::string& model_id) const; |
| 66 |
| 67 static const LensFacing kLensFacingDefault = LensFacing::FRONT; |
| 68 |
| 69 private: |
| 70 std::string GetUsbId(const std::string& device_id) const; |
| 71 // Read file content and populate |camera_id_to_facing_|, |
| 72 // |usb_id_to_camera_id_| and |model_id_to_camera_id_|. |
| 73 void InitializeDeviceInfo(const std::string& config_file_path); |
| 74 |
| 75 std::unordered_map<int, LensFacing> camera_id_to_facing_; |
| 76 std::unordered_map<std::string, int> usb_id_to_camera_id_; |
| 77 std::unordered_map<std::string, int> model_id_to_camera_id_; |
| 78 }; |
| 79 |
| 80 } // namespace media |
| 81 |
| 82 #endif // MEDIA_CAPTURE_VIDEO_LINUX_CAMERA_FACING_CHROMEOS_H_ |
| OLD | NEW |