Home | History | Annotate | Download | only in camera

Lines Matching refs:camera

20 * This file maps the Camera Hardware Interface to V4L2.
479 * assume camera service will keep singleton of each camera
480 * so this function will always only be called once per camera instance
491 android::CameraHal* camera = NULL;
504 ALOGE("camera service provided cameraid out of bounds, "
575 ALOGE("Couldn't get camera properties");
580 camera = new android::CameraHal(cameraid);
582 if(!camera)
589 if(properties && (camera->initialize(properties) != android::NO_ERROR))
591 ALOGE("Couldn't initialize camera instance");
596 gCameraHals[cameraid] = camera;
611 if(camera) {
612 delete camera;
613 camera = NULL;
623 // TODO(XXX): Ducati is not loaded yet when camera service gets here
626 // this going to be the first call from camera service
627 // initialize camera properties here...
648 // this going to be the first call from camera service
649 // initialize camera properties here...
656 //Get camera properties for camera index
659 ALOGE("Couldn't get camera properties");
687 CAMHAL_LOGEB("getProperties() returned a NULL property set for Camera id %d", camera_id);