HomeSort by relevance Sort by last modified time
    Searched full:exposure (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /frameworks/base/include/camera/
CameraParameters.h 299 // Exposure compensation index. 0 means exposure is not adjusted.
302 // The maximum exposure compensation index (>=0).
305 // The minimum exposure compensation index (<=0).
308 // The exposure compensation step. Exposure compensation index multiply by
309 // step eqals to EV. Ex: if exposure compensation index is 6 and step is
313 // The state of the auto-exposure lock. "true" means that
314 // auto-exposure is locked to its current value and will not
315 // change. "false" means the auto-exposure routine is free t
    [all...]
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test.h 13 #define KEY_EXPOSURE "exposure"
21 #define KEY_COMPENSATION "exposure-compensation"
40 #define KEY_AUTO_EXPOSURE_LOCK "auto-exposure-lock"
camera_test_menu.cpp 396 const char *exposure[] = {"auto", "macro", "portrait", "landscape", "sports", "night", "night-portrait", "backlighting", "manual"}; variable
1178 params.set(KEY_EXPOSURE, exposure[exposure_mode]);
    [all...]
  /packages/apps/Camera/src/com/android/camera/
CameraSettings.java 143 ListPreference exposure = group.findPreference(KEY_EXPOSURE); local
185 if (exposure != null) buildExposureCompensation(group, exposure);
196 PreferenceGroup group, ListPreference exposure) {
200 removePreference(group, exposure.getKey());
205 // show only integer values for exposure compensation
216 exposure.setEntries(entries);
217 exposure.setEntryValues(entryValues);
371 String exposure = preferences.getString( local
375 return Integer.parseInt(exposure);
    [all...]
  /frameworks/base/core/java/android/hardware/
Camera.java     [all...]
  /frameworks/base/libs/camera/
CameraParameters.cpp 67 const char CameraParameters::KEY_EXPOSURE_COMPENSATION[] = "exposure-compensation";
68 const char CameraParameters::KEY_MAX_EXPOSURE_COMPENSATION[] = "max-exposure-compensation";
69 const char CameraParameters::KEY_MIN_EXPOSURE_COMPENSATION[] = "min-exposure-compensation";
70 const char CameraParameters::KEY_EXPOSURE_COMPENSATION_STEP[] = "exposure-compensation-step";
71 const char CameraParameters::KEY_AUTO_EXPOSURE_LOCK[] = "auto-exposure-lock";
72 const char CameraParameters::KEY_AUTO_EXPOSURE_LOCK_SUPPORTED[] = "auto-exposure-lock-supported";
  /hardware/ti/omap4xxx/camera/
CameraParameters.cpp 44 const char CameraProperties::SUPPORTED_EXPOSURE_MODES[] = "prop-exposure-mode-values";
69 const char CameraProperties::EXPOSURE_MODE[] = "prop-exposure-mode-default";
105 const char CameraProperties::AUTO_EXPOSURE_LOCK[] = "prop-auto-exposure-lock";
106 const char CameraProperties::AUTO_EXPOSURE_LOCK_SUPPORTED[] = "prop-auto-exposure-lock-supported";
TICameraParameters.cpp 46 const char TICameraParameters::KEY_EXPOSURE_MODE[] = "exposure";
47 const char TICameraParameters::KEY_SUPPORTED_EXPOSURE[] = "exposure-mode-values";
54 const char TICameraParameters::KEY_MAN_EXPOSURE[] = "manual-exposure";
159 // TI extensions to add exposure preset modes
  /hardware/ti/omap4xxx/camera/inc/
TICameraParameters.h 112 // TI extensions for Manual Gain and Manual Exposure
178 // TI extensions to add exposure preset modes to android api
General3A_Settings.h 232 int Exposure;
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMX3A.cpp 116 if ( ( str != NULL ) && ( mParameters3A.Exposure != mode ))
118 mParameters3A.Exposure = mode;
119 CAMHAL_LOGDB("Exposure mode %d", mode);
120 if ( 0 <= mParameters3A.Exposure )
278 CAMHAL_LOGVA("Locking Exposure");
284 CAMHAL_LOGVA("UnLocking Exposure");
429 Gen3A.Exposure = getLUTvalue_HALtoOMX(OMXCameraAdapter::DEFAULT_EXPOSURE_MODE, ExpLUT);
461 exp.eExposureControl = (OMX_EXPOSURECONTROLTYPE)Gen3A.Exposure;
468 CAMHAL_LOGEB("Error while configuring exposure mode 0x%x", eError);
472 CAMHAL_LOGDA("Camera exposure mode configured successfully")
    [all...]
  /external/jhead/
exif.c 731 // Simplest way of expressing exposure time, so I trust it most.
737 // More complicated way of expressing exposure time, so only use
    [all...]
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_TI_IVCommon.h 432 * Exposure value is changed relative to the value set by automatic exposure.
435 * Exposure value is changed in absolute value in ms.
606 * Specifies whether the flash should be used to indicate image or video capture. When flash is not used for exposure,
607 * flash will be activated after exposure to indicate image capture.
608 * If video light is not used, the flash can be blinking or constant at low intensity to indicate capture but not affect exposure.
678 * ENABLE means use as determined by the auto exposure algorithm.
732 *for locking the Exposure
749 *for locking the Exposure
750 * Simultaneously lock focus, white balance and exposure (and relevant other settings)
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
exif.js 44 0x829A : "ExposureTime", // Exposure time (in seconds)
46 0x8822 : "ExposureProgram", // Exposure program
53 0x9204 : "ExposureBias", // Exposure bias
67 0xA215 : "ExposureIndex", // Exposure index selected on camera
73 0xA402 : "ExposureMode", // Exposure mode
  /development/tools/emulator/system/camera/
EmulatedFakeCameraDevice.cpp 47 // Makes the image with the original exposure compensation darker.
48 // So the effects of changing the exposure compensation can be seen.
EmulatedCameraDevice.h 146 /* Sets the exposure compensation for the camera device.
478 /* Exposure compensation value */
EmulatedCameraDevice.cpp 114 LOGV("New exposure compensation is %f", mExposureCompensation);
  /device/samsung/crespo/include/
videodev2_samsung.h 55 /* Exposure Methods */
65 /* Manual exposure control items menu type: iris, shutter, iso */
  /frameworks/base/docs/html/sdk/
android-2.2-highlights.jd 123 controling zoom, flash, white balance, geo-tagging, focus and exposure. Camcorder also provides
260 orientation, zoom controls, access to exposure data, and a thumbnail utility. A new camcorder
  /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/
info.html 240 <th>Exposure</th>
  /packages/apps/Camera/res/values/
strings.xml 211 <!-- Exposure settings in preference -->
212 <string name="pref_exposure_title">Exposure</string>
344 <!-- The decrement button in camera preference such as exposure, picture size. [CHAR LIMIT = NONE] -->
346 <!-- The increment button in camera preference such as exposure, picture size. [CHAR LIMIT = NONE] -->
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CropImage.java     [all...]
  /external/chromium/chrome/browser/nacl_host/
nacl_process_host.cc 95 // exposure in case the renderer is compromised. We can increase
  /external/iproute2/include/linux/
atm.h 144 unsigned int tbe; /* Transient Buffer Exposure (24-bit) */
  /external/kernel-headers/original/linux/
atm.h 147 unsigned int tbe; /* Transient Buffer Exposure (24-bit) */

Completed in 3725 milliseconds

1 2 3 4