From: Dan F. <dfa...@us...> - 2009-10-01 05:07:29
|
Update of /cvsroot/libexif/libexif In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4193 Modified Files: NEWS ChangeLog Log Message: Added a new public API function, exif_loader_get_buf(), which returns a pointer to the raw data in the ExifLoader. Without this, the only way to get the ExifLoader data out was as an ExifData and using only the default set of ExifDataOptions. Index: NEWS =================================================================== RCS file: /cvsroot/libexif/libexif/NEWS,v retrieving revision 1.54 retrieving revision 1.55 diff -u -p -d -r1.54 -r1.55 --- NEWS 27 Sep 2009 04:48:53 -0000 1.54 +++ NEWS 1 Oct 2009 05:07:12 -0000 1.55 @@ -17,14 +17,16 @@ libexif-0.6.x: removed from a file when EXIF_DATA_OPTION_IGNORE_UNKNOWN_TAGS is set * Changed exif_tag_get_support_level_in_ifd() to return a value when possible when the data type for the given EXIF data is unknown. This will cause - tags to be added or deleted when tag fixup is requested without a data - type being set. + tags to be added or deleted when tag fixup is requested even, without a + data type being set. * Added support for writing Pentax and Casio type2 MakerNotes * Improved display of Pentax and Casio type2 MakerNotes * Completely fixed bug #1617997 to display APEX values correctly * Stopped some crashes due to read-beyond-buffer accesses in MakerNotes * Don't abort MakerNote parsing after the first invalid tag * Sped up exif_content_fix() + * Fixed negative exposure values in Canon makernotes (bug #2797280) + * New API entry point: exif_loader_get_buf() libexif-0.6.17 (2008-11-06): * Updated translations: cs, de, pl, sk, vi Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/libexif/ChangeLog,v retrieving revision 1.321 retrieving revision 1.322 diff -u -p -d -r1.321 -r1.322 --- ChangeLog 30 Sep 2009 06:56:14 -0000 1.321 +++ ChangeLog 1 Oct 2009 05:07:12 -0000 1.322 @@ -1,3 +1,10 @@ +2009-09-30 Dan Fandrich <da...@co...> + + * Added a new public API function, exif_loader_get_buf(), which + returns a pointer to the raw data in the ExifLoader. Without this, + the only way to get the ExifLoader data out was as an + ExifData and using only the default set of ExifDataOptions. + 2009-09-29 Dan Fandrich <da...@co...> * Added EXIF_DATA_TYPE_UNKNOWN as a backwards-compatible |