EXIF library (libexif) Internals  0.6.24
exif-data.c File Reference
#include <config.h>
#include <libexif/exif-mnote-data.h>
#include <libexif/exif-data.h>
#include <libexif/exif-ifd.h>
#include <libexif/exif-mnote-data-priv.h>
#include <libexif/exif-utils.h>
#include <libexif/exif-loader.h>
#include <libexif/exif-log.h>
#include <libexif/i18n.h>
#include <libexif/exif-system.h>
#include <libexif/apple/exif-mnote-data-apple.h>
#include <libexif/canon/exif-mnote-data-canon.h>
#include <libexif/fuji/exif-mnote-data-fuji.h>
#include <libexif/olympus/exif-mnote-data-olympus.h>
#include <libexif/pentax/exif-mnote-data-pentax.h>
#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
Include dependency graph for exif-data.c:

Go to the source code of this file.

Data Structures

struct  _ExifDataPrivate
 
struct  _ByteOrderChangeData
 

Macros

#define JPEG_MARKER_SOI   0xd8
 
#define JPEG_MARKER_APP0   0xe0
 
#define JPEG_MARKER_APP1   0xe1
 
#define CHECKOVERFLOW(offset, datasize, structsize)   (( offset >= datasize) || (structsize > datasize) || (offset > datasize - structsize ))
 
#define CHECK_REC(i)
 
#define LOG_TOO_SMALL
 

Typedefs

typedef struct _ByteOrderChangeData ByteOrderChangeData
 

Enumerations

enum  ExifDataTypeMakerNote {
  EXIF_DATA_TYPE_MAKER_NOTE_NONE = 0 , EXIF_DATA_TYPE_MAKER_NOTE_CANON = 1 , EXIF_DATA_TYPE_MAKER_NOTE_OLYMPUS = 2 , EXIF_DATA_TYPE_MAKER_NOTE_PENTAX = 3 ,
  EXIF_DATA_TYPE_MAKER_NOTE_NIKON = 4 , EXIF_DATA_TYPE_MAKER_NOTE_CASIO = 5 , EXIF_DATA_TYPE_MAKER_NOTE_FUJI = 6
}
 

Functions

static void * exif_data_alloc (ExifData *data, unsigned int i)
 
ExifMnoteDataexif_data_get_mnote_data (ExifData *d)
 Return the MakerNote data out of the EXIF data. More...
 
ExifDataexif_data_new (void)
 Allocate a new ExifData. More...
 
ExifDataexif_data_new_mem (ExifMem *mem)
 Allocate a new ExifData using the given memory allocator. More...
 
ExifDataexif_data_new_from_data (const unsigned char *data, unsigned int size)
 Allocate a new ExifData and load EXIF data from a memory buffer. More...
 
static int exif_data_load_data_entry (ExifData *data, ExifEntry *entry, const unsigned char *d, unsigned int size, unsigned int offset)
 
static void exif_data_save_data_entry (ExifData *data, ExifEntry *e, unsigned char **d, unsigned int *ds, unsigned int offset)
 
static void exif_data_load_data_thumbnail (ExifData *data, const unsigned char *d, unsigned int ds, ExifLong o, ExifLong s)
 
static unsigned int level_cost (unsigned int n)
 Calculate the recursion cost added by one level of IFD loading. More...
 
static void exif_data_load_data_content (ExifData *data, ExifIfd ifd, const unsigned char *d, unsigned int ds, unsigned int offset, unsigned int recursion_cost)
 Load data for an IFD. More...
 
static int cmp_func (const unsigned char *p1, const unsigned char *p2, ExifByteOrder o)
 
static int cmp_func_intel (const void *elem1, const void *elem2)
 
static int cmp_func_motorola (const void *elem1, const void *elem2)
 
static void exif_data_save_data_content (ExifData *data, ExifContent *ifd, unsigned char **d, unsigned int *ds, unsigned int offset)
 
static void interpret_maker_note (ExifData *data, const unsigned char *d, unsigned int ds)
 If MakerNote is recognized, load it. More...
 
void exif_data_load_data (ExifData *data, const unsigned char *d_orig, unsigned int ds)
 Load the ExifData structure from the raw JPEG or EXIF data in the given memory buffer. More...
 
void exif_data_save_data (ExifData *data, unsigned char **d, unsigned int *ds)
 Store raw EXIF data representing the ExifData structure into a memory buffer. More...
 
ExifDataexif_data_new_from_file (const char *path)
 Allocate a new ExifData and load EXIF data from a JPEG file. More...
 
void exif_data_ref (ExifData *data)
 
void exif_data_unref (ExifData *data)
 
void exif_data_free (ExifData *data)
 
void exif_data_dump (ExifData *data)
 Dump all EXIF data to stdout. More...
 
ExifByteOrder exif_data_get_byte_order (ExifData *data)
 Return the byte order in use by this EXIF structure. More...
 
void exif_data_foreach_content (ExifData *data, ExifDataForeachContentFunc func, void *user_data)
 Execute a function on each IFD in turn. More...
 
static void entry_set_byte_order (ExifEntry *e, void *data)
 
static void content_set_byte_order (ExifContent *content, void *data)
 
void exif_data_set_byte_order (ExifData *data, ExifByteOrder order)
 Set the byte order to use for this EXIF data. More...
 
void exif_data_log (ExifData *data, ExifLog *log)
 Set the log message object for all IFDs. More...
 
ExifLogexif_data_get_log (ExifData *)
 
const char * exif_data_option_get_name (ExifDataOption o)
 Return a short textual description of the given ExifDataOption. More...
 
const char * exif_data_option_get_description (ExifDataOption o)
 Return a verbose textual description of the given ExifDataOption. More...
 
void exif_data_set_option (ExifData *d, ExifDataOption o)
 Set the given option on the given ExifData. More...
 
void exif_data_unset_option (ExifData *d, ExifDataOption o)
 Clear the given option on the given ExifData. More...
 
static void fix_func (ExifContent *c, void *UNUSED(data))
 
void exif_data_fix (ExifData *d)
 Fix the EXIF data to bring it into specification. More...
 
void exif_data_set_data_type (ExifData *d, ExifDataType dt)
 Set the data type for the given ExifData. More...
 
ExifDataType exif_data_get_data_type (ExifData *d)
 Return the data type for the given ExifData. More...
 

Variables

static const unsigned char ExifHeader [] = {0x45, 0x78, 0x69, 0x66, 0x00, 0x00}
 
struct {
   ExifDataOption   option
 
   const char *   name
 
   const char *   description
 
exif_data_option []
 

Macro Definition Documentation

◆ CHECK_REC

#define CHECK_REC (   i)
Value:
if ((i) == ifd) { \
exif_log (data->priv->log, EXIF_LOG_CODE_DEBUG, \
"ExifData", "Recursive entry in IFD " \
"'%s' detected. Skipping...", \
break; \
} \
if (data->ifd[(i)]->count) { \
exif_log (data->priv->log, EXIF_LOG_CODE_DEBUG, \
"ExifData", "Attempt to load IFD " \
"'%s' multiple times detected. " \
"Skipping...", \
break; \
}
ExifIfd ifd
Definition: exif-ifd.c:28
const char * exif_ifd_get_name(ExifIfd ifd)
Return a textual name of the given IFD.
Definition: exif-ifd.c:40
@ EXIF_LOG_CODE_DEBUG
Definition: exif-log.h:56

Definition at line 349 of file exif-data.c.

◆ CHECKOVERFLOW

#define CHECKOVERFLOW (   offset,
  datasize,
  structsize 
)    (( offset >= datasize) || (structsize > datasize) || (offset > datasize - structsize ))

Definition at line 51 of file exif-data.c.

◆ JPEG_MARKER_APP0

#define JPEG_MARKER_APP0   0xe0

Definition at line 47 of file exif-data.c.

◆ JPEG_MARKER_APP1

#define JPEG_MARKER_APP1   0xe1

Definition at line 49 of file exif-data.c.

◆ JPEG_MARKER_SOI

#define JPEG_MARKER_SOI   0xd8

Definition at line 45 of file exif-data.c.

◆ LOG_TOO_SMALL

#define LOG_TOO_SMALL
Value:
exif_log (data->priv->log, EXIF_LOG_CODE_CORRUPT_DATA, "ExifData", \
_("Size of data too small to allow for EXIF data."));
void exif_log(ExifLog *log, ExifLogCode code, const char *domain, const char *format,...)
Definition: exif-log.c:135
@ EXIF_LOG_CODE_CORRUPT_DATA
Definition: exif-log.h:58
#define _(String)
Definition: i18n.h:48

Definition at line 839 of file exif-data.c.

Typedef Documentation

◆ ByteOrderChangeData

Definition at line 1182 of file exif-data.c.

Enumeration Type Documentation

◆ ExifDataTypeMakerNote

Enumerator
EXIF_DATA_TYPE_MAKER_NOTE_NONE 
EXIF_DATA_TYPE_MAKER_NOTE_CANON 
EXIF_DATA_TYPE_MAKER_NOTE_OLYMPUS 
EXIF_DATA_TYPE_MAKER_NOTE_PENTAX 
EXIF_DATA_TYPE_MAKER_NOTE_NIKON 
EXIF_DATA_TYPE_MAKER_NOTE_CASIO 
EXIF_DATA_TYPE_MAKER_NOTE_FUJI 

Definition at line 775 of file exif-data.c.

Function Documentation

◆ cmp_func()

static int cmp_func ( const unsigned char *  p1,
const unsigned char *  p2,
ExifByteOrder  o 
)
static

Definition at line 541 of file exif-data.c.

References exif_get_short().

Referenced by cmp_func_intel(), and cmp_func_motorola().

Here is the call graph for this function:

◆ cmp_func_intel()

static int cmp_func_intel ( const void *  elem1,
const void *  elem2 
)
static

Definition at line 550 of file exif-data.c.

References cmp_func(), and EXIF_BYTE_ORDER_INTEL.

Referenced by exif_data_save_data_content().

Here is the call graph for this function:

◆ cmp_func_motorola()

static int cmp_func_motorola ( const void *  elem1,
const void *  elem2 
)
static

Definition at line 557 of file exif-data.c.

References cmp_func(), and EXIF_BYTE_ORDER_MOTOROLA.

Referenced by exif_data_save_data_content().

Here is the call graph for this function:

◆ content_set_byte_order()

static void content_set_byte_order ( ExifContent content,
void *  data 
)
static

Definition at line 1211 of file exif-data.c.

References entry_set_byte_order(), and exif_content_foreach_entry().

Referenced by exif_data_set_byte_order().

Here is the call graph for this function:

◆ entry_set_byte_order()

static void entry_set_byte_order ( ExifEntry e,
void *  data 
)
static

Definition at line 1200 of file exif-data.c.

References _ExifEntry::components, _ExifEntry::data, exif_array_set_byte_order(), _ExifEntry::format, _ByteOrderChangeData::new, and _ByteOrderChangeData::old.

Referenced by content_set_byte_order().

Here is the call graph for this function:

◆ exif_data_alloc()

static void* exif_data_alloc ( ExifData data,
unsigned int  i 
)
static

Definition at line 74 of file exif-data.c.

References EXIF_LOG_NO_MEMORY, exif_mem_alloc(), _ExifDataPrivate::log, _ExifDataPrivate::mem, and _ExifData::priv.

Referenced by exif_data_load_data_entry(), exif_data_load_data_thumbnail(), and exif_data_save_data().

Here is the call graph for this function:

◆ exif_data_dump()

void exif_data_dump ( ExifData data)

Dump all EXIF data to stdout.

This is intended for diagnostic purposes only.

Parameters
[in]dataEXIF data

Definition at line 1146 of file exif-data.c.

References _ExifContent::count, _ExifData::data, exif_content_dump(), EXIF_IFD_COUNT, exif_ifd_get_name(), _ExifData::ifd, and _ExifData::size.

Referenced by data_null_test(), and main().

Here is the call graph for this function:

◆ exif_data_fix()

void exif_data_fix ( ExifData d)

Fix the EXIF data to bring it into specification.

Call exif_content_fix on each IFD to fix existing entries, create any new entries that are mandatory but do not yet exist, and remove any entries that are not allowed.

Parameters
[in,out]dEXIF data

Definition at line 1342 of file exif-data.c.

References exif_data_foreach_content(), and fix_func().

Referenced by data_null_test(), entry_null_test(), exif_data_load_data(), and main().

Here is the call graph for this function:

◆ exif_data_foreach_content()

void exif_data_foreach_content ( ExifData data,
ExifDataForeachContentFunc  func,
void *  user_data 
)

Execute a function on each IFD in turn.

Parameters
[in]dataEXIF data over which to iterate
[in]funcfunction to call for each entry
[in]user_datadata to pass into func on each call

Definition at line 1182 of file exif-data.c.

Referenced by data_null_test(), exif_data_fix(), exif_data_set_byte_order(), main(), and test_parse().

◆ exif_data_free()

void exif_data_free ( ExifData data)

Definition at line 1109 of file exif-data.c.

References _ExifData::data, exif_content_unref(), EXIF_IFD_COUNT, exif_log_unref(), exif_mem_free(), exif_mem_unref(), exif_mnote_data_unref(), _ExifData::ifd, _ExifDataPrivate::log, _ExifDataPrivate::md, _ExifDataPrivate::mem, and _ExifData::priv.

Referenced by exif_data_new_mem(), and exif_data_unref().

Here is the call graph for this function:

◆ exif_data_get_byte_order()

ExifByteOrder exif_data_get_byte_order ( ExifData data)

Return the byte order in use by this EXIF structure.

Parameters
[in]dataEXIF data
Returns
byte order

Definition at line 1173 of file exif-data.c.

References _ExifDataPrivate::order, and _ExifData::priv.

Referenced by data_null_test(), exif_entry_fix(), exif_entry_format_value(), exif_entry_get_value(), exif_entry_initialize(), main(), test_exif_data(), and test_parse().

◆ exif_data_get_data_type()

ExifDataType exif_data_get_data_type ( ExifData d)

Return the data type for the given ExifData.

Parameters
[in]dEXIF data
Returns
data type, or EXIF_DATA_TYPE_UNKNOWN on error

Definition at line 1357 of file exif-data.c.

References _ExifDataPrivate::data_type, EXIF_DATA_TYPE_UNKNOWN, and _ExifData::priv.

Referenced by data_null_test(), exif_content_fix(), and remove_not_recorded().

◆ exif_data_get_log()

ExifLog * exif_data_get_log ( ExifData data)

Definition at line 1250 of file exif-data.c.

References _ExifDataPrivate::log, and _ExifData::priv.

Referenced by exif_entry_alloc(), exif_entry_log(), and exif_entry_realloc().

◆ exif_data_get_mnote_data()

ExifMnoteData* exif_data_get_mnote_data ( ExifData d)

Return the MakerNote data out of the EXIF data.

Only certain MakerNote formats that are recognized by libexif are supported. The pointer references a member of the ExifData structure and must NOT be freed by the caller.

Parameters
[in]dEXIF data
Returns
MakerNote data, or NULL if not found or not supported

Definition at line 90 of file exif-data.c.

References _ExifDataPrivate::md, and _ExifData::priv.

Referenced by data_null_test(), dump_makernote(), and test_exif_data().

◆ exif_data_load_data()

void exif_data_load_data ( ExifData data,
const unsigned char *  d,
unsigned int  size 
)

Load the ExifData structure from the raw JPEG or EXIF data in the given memory buffer.

If the EXIF data contains a recognized MakerNote, it is loaded and stored as well for later retrieval by exif_data_get_mnote_data. If the EXIF_DATA_OPTION_FOLLOW_SPECIFICATION option has been set on this ExifData, then the tags are automatically fixed after loading (by calling exif_data_fix).

Parameters
[in,out]dataEXIF data
[in]dpointer to raw JPEG or EXIF data
[in]sizenumber of bytes of data at d

Definition at line 844 of file exif-data.c.

References _, EXIF_BYTE_ORDER_INTEL, EXIF_BYTE_ORDER_MOTOROLA, exif_data_fix(), exif_data_load_data_content(), EXIF_DATA_OPTION_FOLLOW_SPECIFICATION, exif_get_long(), exif_get_short(), EXIF_IFD_0, EXIF_IFD_1, exif_log(), EXIF_LOG_CODE_CORRUPT_DATA, EXIF_LOG_CODE_DEBUG, ExifHeader, interpret_maker_note(), JPEG_MARKER_APP1, JPEG_MARKER_SOI, _ExifDataPrivate::log, LOG_TOO_SMALL, _ExifDataPrivate::options, _ExifDataPrivate::order, and _ExifData::priv.

Referenced by data_null_test(), exif_data_new_from_data(), and exif_loader_get_data().

Here is the call graph for this function:

◆ exif_data_load_data_content()

static void exif_data_load_data_content ( ExifData data,
ExifIfd  ifd,
const unsigned char *  d,
unsigned int  ds,
unsigned int  offset,
unsigned int  recursion_cost 
)
static

Load data for an IFD.

Parameters
[in,out]dataExifData
[in]ifdIFD to load
[in]dpointer to buffer containing raw IFD data
[in]dssize of raw data in buffer at d
[in]offsetoffset into buffer at d at which IFD starts
[in]recursion_costfactor indicating how expensive this recursive call could be

Definition at line 391 of file exif-data.c.

References CHECK_REC, CHECKOVERFLOW, exif_content_add_entry(), exif_data_load_data_entry(), exif_data_load_data_thumbnail(), EXIF_DATA_OPTION_IGNORE_UNKNOWN_TAGS, exif_entry_new_mem(), exif_entry_unref(), exif_get_long(), exif_get_short(), EXIF_IFD_COUNT, EXIF_IFD_EXIF, exif_ifd_get_name(), EXIF_IFD_GPS, EXIF_IFD_INTEROPERABILITY, exif_log(), EXIF_LOG_CODE_CORRUPT_DATA, EXIF_LOG_CODE_DEBUG, EXIF_LOG_CODE_NO_MEMORY, EXIF_TAG_EXIF_IFD_POINTER, exif_tag_get_name(), exif_tag_get_name_in_ifd(), EXIF_TAG_GPS_INFO_IFD_POINTER, EXIF_TAG_INTEROPERABILITY_IFD_POINTER, EXIF_TAG_JPEG_INTERCHANGE_FORMAT, EXIF_TAG_JPEG_INTERCHANGE_FORMAT_LENGTH, _ExifData::ifd, ifd, level_cost(), _ExifDataPrivate::log, _ExifDataPrivate::mem, _ExifDataPrivate::options, _ExifDataPrivate::order, _ExifData::priv, and tag.

Referenced by exif_data_load_data().

Here is the call graph for this function:

◆ exif_data_load_data_entry()

static int exif_data_load_data_entry ( ExifData data,
ExifEntry entry,
const unsigned char *  d,
unsigned int  size,
unsigned int  offset 
)
static

◆ exif_data_load_data_thumbnail()

static void exif_data_load_data_thumbnail ( ExifData data,
const unsigned char *  d,
unsigned int  ds,
ExifLong  o,
ExifLong  s 
)
static

Definition at line 325 of file exif-data.c.

References CHECKOVERFLOW, _ExifData::data, exif_data_alloc(), exif_log(), EXIF_LOG_CODE_DEBUG, EXIF_LOG_NO_MEMORY, exif_mem_free(), _ExifDataPrivate::log, _ExifDataPrivate::mem, _ExifData::priv, and _ExifData::size.

Referenced by exif_data_load_data_content().

Here is the call graph for this function:

◆ exif_data_log()

void exif_data_log ( ExifData data,
ExifLog log 
)

Set the log message object for all IFDs.

Parameters
[in]dataEXIF data
[in]logExifLog

Definition at line 1233 of file exif-data.c.

References exif_content_log(), EXIF_IFD_COUNT, exif_log_ref(), exif_log_unref(), _ExifData::ifd, _ExifDataPrivate::log, and _ExifData::priv.

Referenced by data_null_test(), exif_loader_get_data(), main(), and test_parse().

Here is the call graph for this function:

◆ exif_data_new()

ExifData* exif_data_new ( void  )

Allocate a new ExifData.

The ExifData contains an empty ExifContent for each IFD and the default set of options, which has EXIF_DATA_OPTION_IGNORE_UNKNOWN_TAGS and EXIF_DATA_OPTION_FOLLOW_SPECIFICATION set.

Returns
allocated ExifData, or NULL on error

Definition at line 96 of file exif-data.c.

References exif_data_new_mem(), exif_mem_new_default(), and exif_mem_unref().

Referenced by data_null_test(), entry_null_test(), exif_data_new_from_data(), and main().

Here is the call graph for this function:

◆ exif_data_new_from_data()

ExifData* exif_data_new_from_data ( const unsigned char *  data,
unsigned int  size 
)

Allocate a new ExifData and load EXIF data from a memory buffer.

Parameters
[in]datapointer to raw JPEG or EXIF data
[in]sizenumber of bytes of data at data
Returns
allocated ExifData, or NULL on error

Definition at line 154 of file exif-data.c.

References exif_data_load_data(), exif_data_new(), and size.

Referenced by data_null_test(), main(), and test_parse().

Here is the call graph for this function:

◆ exif_data_new_from_file()

ExifData* exif_data_new_from_file ( const char *  path)

Allocate a new ExifData and load EXIF data from a JPEG file.

Uses an ExifLoader internally to do the loading.

Parameters
[in]pathfilename including path
Returns
allocated ExifData, or NULL on error

Definition at line 1075 of file exif-data.c.

References exif_loader_get_data(), exif_loader_new(), exif_loader_unref(), and exif_loader_write_file().

Referenced by main(), and test_parse().

Here is the call graph for this function:

◆ exif_data_new_mem()

ExifData* exif_data_new_mem ( ExifMem mem)

Allocate a new ExifData using the given memory allocator.

The ExifData contains an empty ExifContent for each IFD and the default set of options, which has EXIF_DATA_OPTION_IGNORE_UNKNOWN_TAGS and EXIF_DATA_OPTION_FOLLOW_SPECIFICATION set.

Returns
allocated ExifData, or NULL on error

Definition at line 107 of file exif-data.c.

References exif_content_new_mem(), exif_data_free(), EXIF_DATA_OPTION_FOLLOW_SPECIFICATION, EXIF_DATA_OPTION_IGNORE_UNKNOWN_TAGS, exif_data_set_data_type(), exif_data_set_option(), EXIF_DATA_TYPE_COUNT, EXIF_IFD_COUNT, exif_mem_alloc(), exif_mem_free(), exif_mem_ref(), _ExifData::ifd, _ExifDataPrivate::mem, _ExifContent::parent, _ExifData::priv, and _ExifDataPrivate::ref_count.

Referenced by data_null_test(), exif_data_new(), and exif_loader_get_data().

Here is the call graph for this function:

◆ exif_data_option_get_description()

const char* exif_data_option_get_description ( ExifDataOption  o)

Return a verbose textual description of the given ExifDataOption.

Parameters
[in]ooption
Returns
verbose localized textual description of the option, or NULL if unknown

Definition at line 1285 of file exif-data.c.

References _, description, exif_data_option, and option.

◆ exif_data_option_get_name()

const char* exif_data_option_get_name ( ExifDataOption  o)

Return a short textual description of the given ExifDataOption.

Parameters
[in]ooption
Returns
localized textual description of the option, or NULL if unknown

Definition at line 1274 of file exif-data.c.

References _, exif_data_option, name, and option.

◆ exif_data_ref()

void exif_data_ref ( ExifData data)

Definition at line 1089 of file exif-data.c.

References _ExifData::priv, and _ExifDataPrivate::ref_count.

Referenced by data_null_test().

◆ exif_data_save_data()

void exif_data_save_data ( ExifData data,
unsigned char **  d,
unsigned int *  ds 
)

Store raw EXIF data representing the ExifData structure into a memory buffer.

The buffer is allocated by this function and must subsequently be freed by the caller using the matching free function as used by the ExifMem in use by this ExifData.

Parameters
[in]dataEXIF data
[out]dpointer to buffer pointer containing raw EXIF data on return
[out]dspointer to variable to hold the number of bytes of data at d, or set to 0 on error

Definition at line 1030 of file exif-data.c.

References EXIF_BYTE_ORDER_INTEL, exif_data_alloc(), exif_data_save_data_content(), EXIF_IFD_0, exif_log(), EXIF_LOG_CODE_DEBUG, exif_set_long(), exif_set_short(), ExifHeader, _ExifData::ifd, _ExifDataPrivate::log, _ExifDataPrivate::order, and _ExifData::priv.

Referenced by data_null_test(), main(), and test_parse().

Here is the call graph for this function:

◆ exif_data_save_data_content()

◆ exif_data_save_data_entry()

static void exif_data_save_data_entry ( ExifData data,
ExifEntry e,
unsigned char **  d,
unsigned int *  ds,
unsigned int  offset 
)
static

◆ exif_data_set_byte_order()

void exif_data_set_byte_order ( ExifData data,
ExifByteOrder  order 
)

Set the byte order to use for this EXIF data.

If any tags already exist (including MakerNote tags) they are are converted to the specified byte order.

Parameters
[in,out]dataEXIF data
[in]orderbyte order

Definition at line 1217 of file exif-data.c.

References content_set_byte_order(), exif_data_foreach_content(), exif_mnote_data_set_byte_order(), _ExifDataPrivate::md, _ByteOrderChangeData::new, _ByteOrderChangeData::old, _ExifDataPrivate::order, and _ExifData::priv.

Referenced by data_null_test(), main(), and test_parse().

Here is the call graph for this function:

◆ exif_data_set_data_type()

void exif_data_set_data_type ( ExifData d,
ExifDataType  dt 
)

Set the data type for the given ExifData.

Parameters
[in]dEXIF data
[in]dtdata type

Definition at line 1348 of file exif-data.c.

References _ExifDataPrivate::data_type, and _ExifData::priv.

Referenced by data_null_test(), exif_data_new_mem(), and main().

◆ exif_data_set_option()

void exif_data_set_option ( ExifData d,
ExifDataOption  o 
)

Set the given option on the given ExifData.

Parameters
[in]dEXIF data
[in]ooption

Definition at line 1296 of file exif-data.c.

References _ExifDataPrivate::options, and _ExifData::priv.

Referenced by data_null_test(), and exif_data_new_mem().

◆ exif_data_unref()

void exif_data_unref ( ExifData data)

Definition at line 1098 of file exif-data.c.

References exif_data_free(), _ExifData::priv, and _ExifDataPrivate::ref_count.

Referenced by data_null_test(), entry_null_test(), main(), test_exif_data(), and test_parse().

Here is the call graph for this function:

◆ exif_data_unset_option()

void exif_data_unset_option ( ExifData d,
ExifDataOption  o 
)

Clear the given option on the given ExifData.

Parameters
[in]dEXIF data
[in]ooption

Definition at line 1305 of file exif-data.c.

References _ExifDataPrivate::options, and _ExifData::priv.

Referenced by data_null_test().

◆ fix_func()

static void fix_func ( ExifContent c,
void *  UNUSEDdata 
)
static

Definition at line 1314 of file exif-data.c.

References _ExifContent::count, _ExifData::data, _ExifContent::entries, exif_content_fix(), exif_content_get_ifd(), exif_content_remove_entry(), EXIF_IFD_1, exif_log(), EXIF_LOG_CODE_DEBUG, _ExifDataPrivate::log, _ExifContent::parent, and _ExifData::priv.

Referenced by exif_data_fix().

Here is the call graph for this function:

◆ interpret_maker_note()

static void interpret_maker_note ( ExifData data,
const unsigned char *  d,
unsigned int  ds 
)
static

◆ level_cost()

static unsigned int level_cost ( unsigned int  n)
static

Calculate the recursion cost added by one level of IFD loading.

The work performed is related to the cost in the exponential relation work=1.1**cost

Definition at line 372 of file exif-data.c.

Referenced by exif_data_load_data_content().

Variable Documentation

◆ description

const char* description

Definition at line 1260 of file exif-data.c.

Referenced by exif_data_option_get_description().

◆ 

const { ... } exif_data_option[]
Initial value:
= {
{EXIF_DATA_OPTION_IGNORE_UNKNOWN_TAGS, N_("Ignore unknown tags"),
N_("Ignore unknown tags when loading EXIF data.")},
{EXIF_DATA_OPTION_FOLLOW_SPECIFICATION, N_("Follow specification"),
N_("Add, correct and remove entries to get EXIF data that follows "
"the specification.")},
{EXIF_DATA_OPTION_DONT_CHANGE_MAKER_NOTE, N_("Do not change maker note"),
N_("When loading and resaving Exif data, save the maker note unmodified."
" Be aware that the maker note can get corrupted.")},
{0, NULL, NULL}
}
@ EXIF_DATA_OPTION_DONT_CHANGE_MAKER_NOTE
Leave the MakerNote alone, which could cause it to be corrupted.
Definition: exif-data.h:182
@ EXIF_DATA_OPTION_IGNORE_UNKNOWN_TAGS
Act as though unknown tags are not present.
Definition: exif-data.h:176
@ EXIF_DATA_OPTION_FOLLOW_SPECIFICATION
Fix the EXIF tags to follow the spec.
Definition: exif-data.h:179
#define N_(String)
Definition: i18n.h:49

Referenced by exif_data_option_get_description(), and exif_data_option_get_name().

◆ ExifHeader

const unsigned char ExifHeader[] = {0x45, 0x78, 0x69, 0x66, 0x00, 0x00}
static

Definition at line 53 of file exif-data.c.

Referenced by exif_data_load_data(), and exif_data_save_data().

◆ name

const char* name ( void  )

Definition at line 1259 of file exif-data.c.

Referenced by exif_data_option_get_name().

◆ option

Definition at line 1258 of file exif-data.c.

Referenced by exif_data_option_get_description(), and exif_data_option_get_name().


libexif Generated by doxygen