summaryrefslogtreecommitdiff
path: root/src/exif_cfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/exif_cfg.h')
-rw-r--r--src/exif_cfg.h20
1 files changed, 19 insertions, 1 deletions
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