we are the owner of the camera
| 126 | bool available_; // free to use ( no other apps are using |
| 127 | bool owner_; // we are the owner of the camera |
| 128 | explicit CameraId(const char* id) |
| 129 | : device_(nullptr), |
| 130 | facing_(ACAMERA_LENS_FACING_FRONT), |
| 131 | available_(false), |
| 132 | owner_(false) { |
| 133 | id_ = id; |
| 134 | } |
| 135 | |
| 136 | explicit CameraId(void) { CameraId(""); } |
| 137 | }; |