From 10b7b1e3e10ba650b240a742947cb6850bbadd23 Mon Sep 17 00:00:00 2001 From: Dennis Real Date: Sat, 24 Mar 2012 14:41:15 +0100 Subject: Support for Canon Exif makernote tags --- src/exif_cfg.h | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'src/exif_cfg.h') diff --git a/src/exif_cfg.h b/src/exif_cfg.h index 390c1ad..31acc50 100644 --- a/src/exif_cfg.h +++ b/src/exif_cfg.h @@ -30,7 +30,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. typedef struct { - ExifIfd ifd; /* section */ + ExifIfd ifd; /* section */ ExifTag tag; /* tag */ } t_EXIF_INFO; @@ -59,6 +59,9 @@ const t_EXIF_INFO Exif_tag_list [] = }; + +/* Nikon */ + #define EXIF_NIKON_MAKERNOTE_END 0 /* end marker: if 0 used as a tag we must find something else */ /* show these nikon makernote tags */ @@ -78,4 +81,19 @@ const unsigned int Exif_makernote_nikon_tag_list [] = EXIF_NIKON_MAKERNOTE_END /* end marker */ }; + + +/* Canon */ +#define EXIF_CANON_MAKERNOTE_END 0xFFFF /* end marker: if this is used as a tag we must find something else */ + +/* show these canon makernote tags */ +const unsigned int Exif_makernote_canon_tag_list [] = +{ + 8, /* Image Number */ + 9, /* Owner Name */ + + EXIF_CANON_MAKERNOTE_END /* end marker */ +}; + + #endif -- cgit v1.2.3