~ubuntu-branches/ubuntu/natty/libexif/natty-security

« back to all changes in this revision

Viewing changes to libexif/exif-data.h

  • Committer: Bazaar Package Importer
  • Author(s): Emmanuel Bouthenot
  • Date: 2009-04-19 17:53:15 UTC
  • mfrom: (6.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090419175315-5aiwj7jbm26srabc
Tags: 0.6.17-1
* Adopt the package within pkg-phototools:
  - Set the Maintainer to the group
  - Add Frederic Peters and myself as Uploaders.
  - Add Vcs-Browser and Vcs-Git fields accordingly.
* New upstream release:
  - remove patches merged upsteam:
    + 30_olympus_makernote.dpatch
    + 40_crash_looking_up_invalid_values.dpatch
    + 50_relibtoolize.dpatch
    + CVE-2007-6351.dpatch
    + CVE-2007-6352.dpatch
  - convert existing patches from dpatch to quilt.
  - Fix a bug while reading exif datas in some cases (Closes: #447907)
* Switch packaging to debhelper 7
* Update debian/control:
  - Drop duplicate section field for exif12
  - Bump Standards-Version to 3.8.1
  - Replace deprecated ${Source-Version} by ${binary:Version}
  - Enhance libexif-dev long description.
  - Add homepage field.
  - Add DM-Upload-Allowed field.
* Force remove of files not fully cleaned
* Remove empty doc files in libexif-dev.
* Update debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*! \file exif-data.h
2
 
 * \brief FIXME foo bar blah
 
2
 * \brief Defines the ExifData type and the associated functions.
3
3
 *
4
 
 * \author Lutz M�ller <lutz@users.sourceforge.net>
 
4
 * \author Lutz Mueller <lutz@users.sourceforge.net>
5
5
 * \date 2001-2005
6
6
 *
7
7
 * This library is free software; you can redistribute it and/or
55
55
 
56
56
/*! \brief load exif data from file
57
57
 *  \param[in] path filename including path
58
 
 *  
59
 
 *  Foo bar blah bleh baz.
60
58
 */
61
59
ExifData *exif_data_new_from_file (const char *path);
62
60
ExifData *exif_data_new_from_data (const unsigned char *data,
100
98
void exif_data_dump (ExifData *data);
101
99
void exif_data_log  (ExifData *data, ExifLog *log);
102
100
 
103
 
/* For your convenience */
 
101
/** convenience macro. */
104
102
#define exif_data_get_entry(d,t)                                        \
105
103
        (exif_content_get_entry(d->ifd[EXIF_IFD_0],t) ?                 \
106
104
         exif_content_get_entry(d->ifd[EXIF_IFD_0],t) :                 \