mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
b28dba6087
When generating thumbnails, test for video files. If it is, use a dummy-thumbnail. Write only the type (video), but no image to the thumbnail cache, for forward-compatibility. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
31 lines
594 B
C
31 lines
594 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_UNKNOWN, // Couldn't (yet) identify file
|
|
MEDIATYPE_IO_ERROR, // Couldn't read file
|
|
MEDIATYPE_PICTURE,
|
|
MEDIATYPE_VIDEO,
|
|
MEDIATYPE_STILL_LOADING, // Still processing in the background
|
|
};
|
|
|
|
#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
|