Home | History | Annotate | Download | only in libexif

Lines Matching refs:ifd

33 #include <libexif/exif-ifd.h>
48 /*! Data for each IFD */
49 ExifContent *ifd[EXIF_IFD_COUNT];
61 * #ExifContent for each IFD and the default set of options,
70 * The #ExifData contains an empty #ExifContent for each IFD and the default
153 * on each IFD to fix existing entries, create any new entries that are
163 /*! Execute a function on each IFD in turn.
241 /*! Return an #ExifEntry for the given tag if found in any IFD.
242 * Each IFD is searched in turn and the first containing a tag with
250 (exif_content_get_entry(d->ifd[EXIF_IFD_0],t) ? \
251 exif_content_get_entry(d->ifd[EXIF_IFD_0],t) : \
252 exif_content_get_entry(d->ifd[EXIF_IFD_1],t) ? \
253 exif_content_get_entry(d->ifd[EXIF_IFD_1],t) : \
254 exif_content_get_entry(d->ifd[EXIF_IFD_EXIF],t) ? \
255 exif_content_get_entry(d->ifd[EXIF_IFD_EXIF],t) : \
256 exif_content_get_entry(d->ifd[EXIF_IFD_GPS],t) ? \
257 exif_content_get_entry(d->ifd[EXIF_IFD_GPS],t) : \
258 exif_content_get_entry(d->ifd[EXIF_IFD_INTEROPERABILITY],t) ? \
259 exif_content_get_entry(d->ifd[EXIF_IFD_INTEROPERABILITY],t) : NULL)