From: Dan F. <dfa...@us...> - 2009-01-13 08:26:47
|
Update of /cvsroot/libexif/libexif/libexif In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv5597/libexif Modified Files: exif-data.c Log Message: Added support for Epson MakerNotes, which have the identical tag format and namespace of the Olympus ones. Index: exif-data.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-data.c,v retrieving revision 1.116 retrieving revision 1.117 diff -u -p -d -r1.116 -r1.117 --- exif-data.c 13 Jan 2009 01:48:39 -0000 1.116 +++ exif-data.c 13 Jan 2009 08:26:41 -0000 1.117 @@ -735,6 +735,7 @@ exif_data_get_type_maker_note (ExifData if ((e->size >= 8) && ( !memcmp (e->data, "OLYMP", 6) || !memcmp (e->data, "OLYMPUS", 8) || !memcmp (e->data, "SANYO", 6) || + !memcmp (e->data, "EPSON", 6) || !memcmp (e->data, "Nikon", 6))) return EXIF_DATA_TYPE_MAKER_NOTE_OLYMPUS; |