1 #ifndef __LV2_CAMERA_H__ 2 #define __LV2_CAMERA_H__ 7 #define CAMERA_ERRO_DOUBLE_INIT 0x80140801 8 #define CAMERA_ERRO_NEED_INIT 0x80140803 9 #define CAMERA_ERRO_BAD_PARAM 0x80140804 10 #define CAMERA_ERRO_DOUBLE_OPEN 0x80140805 11 #define CAMERA_ERRO_NEED_OPEN 0x80140806 12 #define CAMERA_ERRO_NO_DEVICE_FOUND 0x80140807 13 #define CAMERA_ERRO_DEVICE_DEACTIVATED 0x80140808 14 #define CAMERA_ERRO_NEED_START 0x80140809 15 #define CAMERA_ERRO_UNKNOWN_FORMAT 0x8014080a 16 #define CAMERA_ERRO_UNKNOWN_RESOLUTION 0x8014080b 17 #define CAMERA_ERRO_BAD_FRAMERATE 0x8014080c 18 #define CAMERA_ERRO_TIMEOUT 0x8014080d 19 #define CAMERA_ERRO_BUSY 0x8014080e 20 #define CAMERA_ERRO_FATAL 0x8014080f 21 #define CAMERA_ERRO_MUTEX 0x80140810 27 typedef enum _camera_attrib
30 CAM_ATTR_RED_BLUE_GAIN,
34 CAM_ATTR_AUTO_EXPOSURE,
35 CAM_ATTR_AUTO_GAIN_CONTROL,
36 CAM_ATTR_AUTO_WHITE_BALANCE,
37 CAM_ATTR_AUTO_BRIGHTNESS,
41 CAM_ATTR_NONZERO_COEFFS,
44 CAM_ATTR_BACKLIGHT_COMPENSATION,
51 CAM_ATTR_AUTO_GAIN_CONTROL_LIMIT,
53 CAM_ATTR_FRAMERATE_ADJUST,
54 CAM_ATTR_PIXEL_OUTLIER_FILTER,
55 CAM_ATTR_AUTO_GAIN_CONTROL_LOW,
56 CAM_ATTR_AUTO_GAIN_CONTROL_HIGH,
58 CAM_ATTR_FORMAT_CAP=100,
59 CAM_ATTR_FORMAT_INDEX,
63 CAM_ATTR_INTERVAL_TYPE,
64 CAM_ATTR_INTERVAL_INDEX,
65 CAM_ATTR_INTERVAL_VALUE,
66 CAM_ATTR_COLOR_MATCHING,
71 CAM_ATTR_USBVIDCLASS_REQUEST_CODE,
72 CAM_ATTR_USBVIDCLASS_REQUEST_DATA,
75 CAM_ATTR_READ_MODE=300,
83 typedef enum _camera_type
87 CAM_TYPE_PLAYSTATION_EYE,
88 CAM_TYPE_USBVIDEO_CLASS,
91 typedef enum _camera_format
102 typedef enum _camera_resolution
114 cameraResolution resolution;
123 sys_mem_container_t container;
129 cameraResolution resolution;
139 sys_mem_container_t container;
156 s32 cameraStart(s32 num);
157 s32 cameraStop(s32 num);
159 s32 cameraClose(s32 num);
161 s32 cameraRead(s32 num,u32 *frame,u32 *readcount);
164 s32 cameraReset(s32 num);
165 s32 cameraGetAttribute(s32 num,cameraAttrib attribute,u32* arg0,u32* arg1);
166 s32 cameraSetAttribute(s32 num,cameraAttrib attribute,u32 arg0,u32 arg1);
167 s32 cameraGetType(s32 num,cameraType* type);
168 s32 cameraGetDeviceGUID(s32 num,u32* guid);
171 s32 cameraIsStarted(s32 num);
172 s32 cameraIsOpen(s32 num);
173 s32 cameraIsAvailable(s32 num);
174 s32 cameraIsAttached(s32 num);
176 s32 cameraSetNotifyEventQueue(u64 key);
177 s32 cameraSetNotifyEventQueue2(u64 key,u64 source,u64 flag);
178 s32 cameraRemoveNotifyEventQueue(u64 key);
179 s32 cameraRemoveNotifyEventQueue2(u64 key);
180 s32 cameraReadComplete(s32 num,u32 buf,u32 arg);
181 s32 cameraPrepExtensionUnit(s32 num,u8* guidExtCode);
182 s32 cameraCtrlExtensionUnit(s32 num,u8 req,u16 wval,u16 wlen,u8* data);
183 s32 cameraGetExtensionUnit(s32 num,u16 wval,u16 wlen,u8* data);
184 s32 cameraSetExtensionUnit(s32 num,u16 wval,u16 wlen,u8* data);
Memory management functions.