subsurface/core/metadata.h
Berthold Stoeger 66b71c60a0 Dive pictures: use get_metadata() in dive_create_picture()
Thus, metadata has to be only read once and the picture_load_exif_data()
function can be removed.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2018-04-01 16:04:48 +03:00

30 lines
522 B
C

#ifndef METADATA_H
#define METADATA_H
#include "units.h"
struct metadata {
timestamp_t timestamp;
degrees_t latitude;
degrees_t longitude;
};
enum mediatype_t {
MEDIATYPE_IO_ERROR, // Couldn't read file
MEDIATYPE_UNKNOWN, // Couldn't identify file
MEDIATYPE_PICTURE,
MEDIATYPE_VIDEO,
};
#ifdef __cplusplus
extern "C" {
#endif
enum mediatype_t get_metadata(const char *filename, struct metadata *data);
timestamp_t picture_get_timestamp(const char *filename);
#ifdef __cplusplus
}
#endif
#endif // METADATA_H