summaryrefslogtreecommitdiff
path: root/src/exif_cfg.h
diff options
context:
space:
mode:
authorDennis Real <github@tildepipe.org>2012-03-24 14:41:15 +0100
committerDennis Real <github@tildepipe.org>2012-03-24 14:41:15 +0100
commit10b7b1e3e10ba650b240a742947cb6850bbadd23 (patch)
tree801dbba31979dfea932f54a5d8d5187d7e325b80 /src/exif_cfg.h
parent3c284dc81dcb26249114b7ecf32ed0000f492b8b (diff)
Support for Canon Exif makernote tags
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