2020-04-10 07:42:14 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef PICTURE_H
|
|
|
|
#define PICTURE_H
|
|
|
|
|
|
|
|
// picture (more precisely media) related strutures and functions
|
|
|
|
#include "units.h"
|
2020-04-11 15:41:56 +00:00
|
|
|
#include <stddef.h> // For NULL
|
2020-04-10 07:42:14 +00:00
|
|
|
|
2020-04-11 15:30:34 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-04-19 15:01:58 +00:00
|
|
|
struct dive;
|
|
|
|
|
2020-04-10 07:42:14 +00:00
|
|
|
struct picture {
|
|
|
|
char *filename;
|
|
|
|
offset_t offset;
|
|
|
|
location_t location;
|
|
|
|
};
|
2020-04-11 15:41:56 +00:00
|
|
|
static const struct picture empty_picture = { NULL, { 0 }, { { 0 }, { 0 } } };
|
2020-04-10 07:42:14 +00:00
|
|
|
|
2020-04-19 15:01:58 +00:00
|
|
|
/* loop through all pictures of a dive */
|
|
|
|
#define FOR_EACH_PICTURE(_dive) \
|
|
|
|
if ((_dive) && (_dive)->pictures.nr) \
|
|
|
|
for (struct picture *picture = (_dive)->pictures.pictures; \
|
|
|
|
picture < (_dive)->pictures.pictures + (_dive)->pictures.nr; \
|
|
|
|
picture++)
|
|
|
|
|
2020-04-11 15:41:56 +00:00
|
|
|
/* Table of pictures. Attention: this stores pictures,
|
|
|
|
* *not* pointers to pictures. This has two crucial consequences:
|
|
|
|
* 1) Pointers to pictures are not stable. They may be
|
|
|
|
* invalidated if the table is reallocated.
|
|
|
|
* 2) add_to_picture_table(), etc. take ownership of the
|
|
|
|
* picture. Notably of the filename. */
|
|
|
|
struct picture_table {
|
|
|
|
int nr, allocated;
|
|
|
|
struct picture *pictures;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* picture table functions */
|
|
|
|
extern void clear_picture_table(struct picture_table *);
|
|
|
|
extern void add_to_picture_table(struct picture_table *, int idx, struct picture pic);
|
|
|
|
extern void copy_pictures(const struct picture_table *s, struct picture_table *d);
|
|
|
|
extern void add_picture(struct picture_table *, struct picture newpic);
|
2020-04-17 21:18:58 +00:00
|
|
|
extern void remove_from_picture_table(struct picture_table *, int idx);
|
2020-04-14 17:08:49 +00:00
|
|
|
extern int get_picture_idx(const struct picture_table *, const char *filename); /* Return -1 if not found */
|
2020-04-14 18:06:19 +00:00
|
|
|
extern void sort_picture_table(struct picture_table *);
|
2020-04-10 07:42:14 +00:00
|
|
|
|
2020-04-19 15:01:58 +00:00
|
|
|
extern struct picture *create_picture(const char *filename, int shift_time, bool match_all, struct dive **dive);
|
|
|
|
extern bool picture_check_valid_time(timestamp_t timestamp, int shift_time);
|
|
|
|
|
2020-04-11 15:30:34 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-04-10 07:42:14 +00:00
|
|
|
#endif // PICTURE_H
|