1 2 3 4 5 6 7 8 9 10 11
// Parse XMP blocks using libxml2 #ifndef XMP_PARSER_H #define XMP_PARSER_H #include "units.h" // for timestamp_t #include <stddef.h> // for size_t timestamp_t parse_xmp(const char *data, size_t size); // On failure returns 0. #endif // XMP_PARSER_H