exif_data          98 modules/dng.c  static struct t_data_for_exif exif_data;
exif_data         232 modules/dng.c      {0x8827, T_SHORT|T_PTR,1,  (int)&exif_data.iso},       // ISOSpeedRatings
exif_data         245 modules/dng.c      {0xA405, T_SHORT|T_PTR,1,  (int)&exif_data.effective_focal_length},    // FocalLengthIn35mmFilm
exif_data         573 modules/dng.c      get_tag(IFD_0, ORIENTATION_TAG)->offset = get_orientation_for_exif(exif_data.orientation);
exif_data         575 modules/dng.c      get_tag(IFD_EXIF, EXPOSURE_PROGRAM_TAG)->offset = get_exp_program_for_exif(exif_data.exp_program);
exif_data         576 modules/dng.c      get_tag(IFD_EXIF, METERING_MODE_TAG)->offset = get_metering_mode_for_exif(exif_data.metering_mode);
exif_data         577 modules/dng.c      get_tag(IFD_EXIF, FLASH_MODE_TAG)->offset = get_flash_mode_for_exif(exif_data.flash_mode, exif_data.flash_fired);
exif_data         729 modules/dng.c      exif_data.iso=shooting_get_iso_market();
exif_data         765 modules/dng.c      exif_data.exp_program = camera_info.state.mode_shooting;
exif_data         770 modules/dng.c      exif_data.effective_focal_length = get_effective_focal_length(shooting_get_zoom()) / 1000;
exif_data         772 modules/dng.c      get_property_case(camera_info.props.orientation_sensor, &exif_data.orientation, sizeof(exif_data.orientation));
exif_data         777 modules/dng.c      get_property_case(camera_info.props.flash_mode, &exif_data.flash_mode, sizeof(exif_data.flash_mode));
exif_data         778 modules/dng.c      get_property_case(camera_info.props.flash_fire, &exif_data.flash_fired, sizeof(exif_data.flash_fired));
exif_data         779 modules/dng.c      get_property_case(camera_info.props.metering_mode, &exif_data.metering_mode, sizeof(exif_data.metering_mode));