Home | History | Annotate | Download | only in OMXCameraAdapter

Lines Matching refs:temp_value

525             char temp_value[256]; // arbitrarily long string
526 snprintf(temp_value,
527 sizeof(temp_value)/sizeof(char),
529 ret = exifTable->insertElement(TAG_FOCALLENGTH, temp_value);
537 char temp_value[EXIF_DATE_TIME_SIZE + 1];
539 snprintf(temp_value, EXIF_DATE_TIME_SIZE,
548 ret = exifTable->insertElement(TAG_DATETIME, temp_value);
553 char temp_value[5];
554 snprintf(temp_value, sizeof(temp_value)/sizeof(char), "%lu", capData->mWidth);
555 ret = exifTable->insertElement(TAG_IMAGE_WIDTH, temp_value);
559 char temp_value[5];
560 snprintf(temp_value, sizeof(temp_value)/sizeof(char), "%lu", capData->mHeight);
561 ret = exifTable->insertElement(TAG_IMAGE_LENGTH, temp_value);
565 char temp_value[256]; // arbitrarily long string
566 snprintf(temp_value,
567 sizeof(temp_value)/sizeof(char) - 1,
572 ret = exifTable->insertElement(TAG_GPS_LAT, temp_value);
580 char temp_value[256]; // arbitrarily long string
581 snprintf(temp_value,
582 sizeof(temp_value)/sizeof(char) - 1,
587 ret = exifTable->insertElement(TAG_GPS_LONG, temp_value);
595 char temp_value[256]; // arbitrarily long string
596 snprintf(temp_value,
597 sizeof(temp_value)/sizeof(char) - 1,
600 ret = exifTable->insertElement(TAG_GPS_ALT, temp_value);
604 char temp_value[5];
605 snprintf(temp_value,
606 sizeof(temp_value)/sizeof(char) - 1,
608 ret = exifTable->insertElement(TAG_GPS_ALT_REF, temp_value);
616 char temp_value[GPS_PROCESSING_SIZE];
618 memcpy(temp_value, ExifAsciiPrefix, sizeof(ExifAsciiPrefix));
619 memcpy(temp_value + sizeof(ExifAsciiPrefix),
622 ret = exifTable->insertElement(TAG_GPS_PROCESSING_METHOD, temp_value);
626 char temp_value[256]; // arbitrarily long string
627 snprintf(temp_value,
628 sizeof(temp_value)/sizeof(char) - 1,
634 ret = exifTable->insertElement(TAG_GPS_VERSION_ID, temp_value);
638 char temp_value[256]; // arbitrarily long string
639 snprintf(temp_value,
640 sizeof(temp_value)/sizeof(char) - 1,
645 ret = exifTable->insertElement(TAG_GPS_TIMESTAMP, temp_value);