2018-03-15 20:21:40 +01:00
|
|
|
#ifndef METADATA_H
|
|
|
|
#define METADATA_H
|
|
|
|
|
|
|
|
#include "units.h"
|
|
|
|
|
|
|
|
struct metadata {
|
|
|
|
timestamp_t timestamp;
|
2018-07-10 20:03:26 +02:00
|
|
|
duration_t duration;
|
2018-10-20 14:12:15 -04:00
|
|
|
location_t location;
|
2018-03-15 20:21:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enum mediatype_t {
|
2018-05-15 20:47:35 +02:00
|
|
|
MEDIATYPE_UNKNOWN, // Couldn't (yet) identify file
|
|
|
|
MEDIATYPE_IO_ERROR, // Couldn't read file
|
2018-03-15 20:21:40 +01:00
|
|
|
MEDIATYPE_PICTURE,
|
|
|
|
MEDIATYPE_VIDEO,
|
2018-05-15 20:47:35 +02:00
|
|
|
MEDIATYPE_STILL_LOADING, // Still processing in the background
|
2018-03-15 20:21:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#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
|