blob: b53ab31f6b1a822b93168168b8d0f9e1ff9eba1a [file] [log] [blame]
Alex Ray819cfd82013-02-20 17:46:41 -08001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef CAMERA_HAL_H_
18#define CAMERA_HAL_H_
19
20#include <hardware/hardware.h>
21#include <hardware/camera_common.h>
22
23namespace default_camera_hal {
24// CameraHAL contains all module state that isn't specific to an individual
25// camera device.
26class CameraHAL {
27 public:
28 CameraHAL(int num_cameras);
29 ~CameraHAL();
30
31 // Camera Module Interface (see <hardware/camera_common.h>)
32 int getNumberOfCameras();
33 int getCameraInfo(int camera_id, struct camera_info *info);
34 int setCallbacks(const camera_module_callbacks_t *callbacks);
35
36 // Hardware Module Interface (see <hardware/hardware.h>)
37 int open(const hw_module_t* mod, const char* name, hw_device_t** dev);
38
39 private:
40 // Number of cameras
41 const int mNumberOfCameras;
42 // Callback handle
43 const camera_module_callbacks_t *mCallbacks;
44};
45} // namespace default_camera_hal
46
47#endif // CAMERA_HAL_H_