• Home
  • Raw
  • Download

Lines Matching refs:mExifInfo

682     memset(&mExifInfo, 0, sizeof(mExifInfo));  in ExynosCamera()
1817 mExifInfo.enableThumb = true; in yuv2Jpeg()
1830 m_setExifChangedAttribute(&mExifInfo, rect); in yuv2Jpeg()
1832 mExifInfo.enableThumb = false; in yuv2Jpeg()
1850 if (jpegEnc.encode((int *)&jpegBuf->size.s, &mExifInfo)) { in yuv2Jpeg()
3014 memset(mExifInfo.gps_processing_method, 0, sizeof(mExifInfo.gps_processing_method)); in setGpsProcessingMethod()
3018 if (len > sizeof(mExifInfo.gps_processing_method)) { in setGpsProcessingMethod()
3019 len = sizeof(mExifInfo.gps_processing_method); in setGpsProcessingMethod()
3021 memcpy(mExifInfo.gps_processing_method, gpsProcessingMethod, len); in setGpsProcessingMethod()
3661 strncpy((char *)mExifInfo.maker, property, in m_setExifFixedAttribute()
3662 sizeof(mExifInfo.maker) - 1); in m_setExifFixedAttribute()
3663 mExifInfo.maker[sizeof(mExifInfo.maker) - 1] = '\0'; in m_setExifFixedAttribute()
3666 strncpy((char *)mExifInfo.model, property, in m_setExifFixedAttribute()
3667 sizeof(mExifInfo.model) - 1); in m_setExifFixedAttribute()
3668 mExifInfo.model[sizeof(mExifInfo.model) - 1] = '\0'; in m_setExifFixedAttribute()
3671 strncpy((char *)mExifInfo.software, property, in m_setExifFixedAttribute()
3672 sizeof(mExifInfo.software) - 1); in m_setExifFixedAttribute()
3673 mExifInfo.software[sizeof(mExifInfo.software) - 1] = '\0'; in m_setExifFixedAttribute()
3676 mExifInfo.ycbcr_positioning = EXIF_DEF_YCBCR_POSITIONING; in m_setExifFixedAttribute()
3680 mExifInfo.fnumber.num = EXIF_DEF_FNUMBER_NUM; in m_setExifFixedAttribute()
3681 mExifInfo.fnumber.den = EXIF_DEF_FNUMBER_DEN; in m_setExifFixedAttribute()
3683 mExifInfo.exposure_program = EXIF_DEF_EXPOSURE_PROGRAM; in m_setExifFixedAttribute()
3685 memcpy(mExifInfo.exif_version, EXIF_DEF_EXIF_VERSION, sizeof(mExifInfo.exif_version)); in m_setExifFixedAttribute()
3687 uint32_t av = APEX_FNUM_TO_APERTURE((double)mExifInfo.fnumber.num/mExifInfo.fnumber.den); in m_setExifFixedAttribute()
3688 mExifInfo.aperture.num = av*EXIF_DEF_APEX_DEN; in m_setExifFixedAttribute()
3689 mExifInfo.aperture.den = EXIF_DEF_APEX_DEN; in m_setExifFixedAttribute()
3691 mExifInfo.max_aperture.num = mExifInfo.aperture.num; in m_setExifFixedAttribute()
3692 mExifInfo.max_aperture.den = mExifInfo.aperture.den; in m_setExifFixedAttribute()
3694 mExifInfo.focal_length.num = m_defaultCameraInfo->focalLengthNum; in m_setExifFixedAttribute()
3695 mExifInfo.focal_length.den = m_defaultCameraInfo->focalLengthDen; in m_setExifFixedAttribute()
3697 strcpy((char *)mExifInfo.user_comment, EXIF_DEF_USERCOMMENTS); in m_setExifFixedAttribute()
3699 mExifInfo.color_space = EXIF_DEF_COLOR_SPACE; in m_setExifFixedAttribute()
3701 mExifInfo.exposure_mode = EXIF_DEF_EXPOSURE_MODE; in m_setExifFixedAttribute()
3705 memcpy(mExifInfo.gps_version_id, gps_version, sizeof(gps_version)); in m_setExifFixedAttribute()
3708 mExifInfo.compression_scheme = EXIF_DEF_COMPRESSION; in m_setExifFixedAttribute()
3709 mExifInfo.x_resolution.num = EXIF_DEF_RESOLUTION_NUM; in m_setExifFixedAttribute()
3710 mExifInfo.x_resolution.den = EXIF_DEF_RESOLUTION_DEN; in m_setExifFixedAttribute()
3711 mExifInfo.y_resolution.num = EXIF_DEF_RESOLUTION_NUM; in m_setExifFixedAttribute()
3712 mExifInfo.y_resolution.den = EXIF_DEF_RESOLUTION_DEN; in m_setExifFixedAttribute()
3713 mExifInfo.resolution_unit = EXIF_DEF_RESOLUTION_UNIT; in m_setExifFixedAttribute()