diff options
author | Dennis Real <github@tildepipe.org> | 2012-03-21 19:47:15 +0100 |
---|---|---|
committer | Dennis Real <github@tildepipe.org> | 2012-03-21 19:47:15 +0100 |
commit | e401bd9c78a82b8290ec524e56b7c832631725e6 (patch) | |
tree | ec3203018c9dd2edb0d6cf2971c16b6b43c2fbfe /src/exif_nikon.h | |
parent | 39cbd1ed2b6693beea5e974a6ae83207c6e9a826 (diff) |
1. Own module for nikon maker notes
2. Support for AFInfo2
Diffstat (limited to 'src/exif_nikon.h')
-rw-r--r-- | src/exif_nikon.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/exif_nikon.h b/src/exif_nikon.h index e2baf0d..f12b5ce 100644 --- a/src/exif_nikon.h +++ b/src/exif_nikon.h @@ -26,16 +26,8 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #ifndef EXIF_NIKON_H #define EXIF_NIKON_H -/* Flash control mode */ -/* http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/Nikon.html#FlashControlMode */ -#define EXN_FLASH_CONTROL_MODES_MAX 9 -char *EXN_NikonFlashControlModeValues[EXN_FLASH_CONTROL_MODES_MAX] = {"Off", - "iTTL-BL", "iTTL", "Auto Aperture", - "Automatic", "GN (distance priority)", - "Manual", "Repeating Flash", - "N/A" /* "N/A" is not a nikon setting */ - }; - -#define EXN_FLASH_CONTROL_MODE_MASK 0x7F +#include <libexif/exif-data.h> + +extern void exn_get_mnote_nikon_tags(ExifData *ed, char * buffer, unsigned int maxsize); #endif |