From: Jan P. <pa...@us...> - 2006-10-03 19:42:19
|
Update of /cvsroot/libexif/libexif/libexif/olympus In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2105 Modified Files: mnote-olympus-entry.c Log Message: Added some AF Position values Index: mnote-olympus-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-entry.c,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -d -r1.25 -r1.26 --- mnote-olympus-entry.c 3 Oct 2006 14:44:27 -0000 1.25 +++ mnote-olympus-entry.c 3 Oct 2006 19:42:16 -0000 1.26 @@ -312,6 +312,12 @@ mnote_olympus_entry_get_value (MnoteOlym case 2: strncpy (v, _("AF Position: Bottom"), maxlen); break; case 3: strncpy (v, _("AF Position: Left"), maxlen); break; case 4: strncpy (v, _("AF Position: Right"), maxlen); break; + case 5: strncpy (v, _("AF Position: Upper-left"), maxlen); break; + case 6: strncpy (v, _("AF Position: Upper-right"), maxlen); break; + case 7: strncpy (v, _("AF Position: Lower-left"), maxlen); break; + case 8: strncpy (v, _("AF Position: Lower-right"), maxlen); break; + case 9: strncpy (v, _("AF Position: Far Left"), maxlen); break; + case 10: strncpy (v, _("AF Position: Far Right"), maxlen); break; default: strncpy (v, _("Unknown AF Position"), maxlen); } break; |