Searched defs:orientation (Results 1 - 10 of 10) sorted by relevance

/device/moto/shamu/camera/QCamera2/stack/mm-jpeg-interface/src/
H A Dmm_jpeg_exif.c602 /* set orientation to ORIENTATION_UNDEFINED */
603 int16_t orientation = 0; local
607 (void *)&orientation);
/device/lge/mako/camera/
H A DQCameraParameters.cpp201 const char* orientation = get("orientation"); local
202 if (orientation && !strcmp(orientation, portrait))
206 void QCameraParameters::setOrientation(int orientation) argument
208 if (orientation == CAMERA_ORIENTATION_PORTRAIT) {
209 set("orientation", portrait);
211 set("orientation", landscape);
/device/lge/mako/camera/mm-camera-interface/
H A Dmm_omx_jpeg_encoder.c332 int orientation; local
378 before hand. The orientation is set in the exif tag and
379 decoder will decode it will the right orientation. need to add double
382 /*Get the orientation tag values depending on rotation*/
385 orientation = 1; /*Normal*/
388 orientation = 6; /*Rotated 90 CCW*/
391 orientation = 3; /*Rotated 180*/
394 orientation = 8; /*Rotated 90 CW*/
397 orientation = 1;
404 tag.tag_entry.data._short = orientation;
439 int orientation; local
[all...]
/device/moto/shamu/camera/QCamera/HAL/core/src/
H A DQCameraParameters.cpp213 const char* orientation = get("orientation"); local
214 if (orientation && !strcmp(orientation, portrait))
218 void QCameraParameters::setOrientation(int orientation) argument
220 if (orientation == CAMERA_ORIENTATION_PORTRAIT) {
221 set("orientation", portrait);
223 set("orientation", landscape);
/device/asus/grouper/audio/
H A Daudio_hw.c117 int orientation; member in struct:audio_device
212 if (adev->orientation == ORIENTATION_LANDSCAPE)
1090 ret = str_parms_get_str(parms, "orientation", value, sizeof(value));
1092 int orientation; local
1095 orientation = ORIENTATION_LANDSCAPE;
1097 orientation = ORIENTATION_PORTRAIT;
1099 orientation = ORIENTATION_SQUARE;
1101 orientation = ORIENTATION_UNDEFINED;
1104 if (orientation != adev->orientation) {
[all...]
/device/generic/goldfish/camera/
H A DEmulatedFakeCamera3.cpp246 info->orientation = gEmulatedCameraFactory.getFakeCameraOrientation();
1118 static const int32_t orientation = 0; // unrotated (0 degrees) local
1119 info.update(ANDROID_SENSOR_ORIENTATION, &orientation, 1);
/device/lge/hammerhead/camera/QCamera2/HAL3/
H A DQCamera3Channel.cpp1412 int32_t *orientation = (int32_t *)POINTER_OF( local
1414 settings->jpeg_orientation = *orientation;
H A DQCamera3HWI.cpp4568 info->orientation = gCamCapability[cameraId]->sensor_mount_angle;
5577 int32_t orientation = local
5579 rc = AddSetMetaEntryToBatch(hal_metadata, CAM_INTF_META_JPEG_ORIENTATION, sizeof(orientation), &orientation);
/device/moto/shamu/camera/QCamera2/HAL3/
H A DQCamera3Channel.cpp2018 int32_t *orientation = (int32_t *)POINTER_OF_PARAM( local
2020 settings->jpeg_orientation = *orientation;
H A DQCamera3HWI.cpp5320 info->orientation = gCamCapability[cameraId]->sensor_mount_angle;
6449 int32_t orientation = local
6452 if (orientation == 0) {
6454 } else if (orientation == 90) {
6456 } else if (orientation == 180) {
6458 } else if (orientation == 270) {
6462 rc = AddSetParmEntryToBatch(hal_metadata, CAM_INTF_META_JPEG_ORIENTATION, sizeof(orientation), &orientation);

Completed in 774 milliseconds