mirror of
https://github.com/webmproject/libwebp.git
synced 2025-05-25 00:21:50 +02:00
Semi-automatically taking the the misc-include-cleaner warnings by clang-tidy and fixing files to be self-contained. Change-Id: Iaaa2b2ec9d6dcce547fa5cb6b4f056dfc8c781ff
50 lines
1.3 KiB
C
50 lines
1.3 KiB
C
// Copyright 2012 Google Inc. All Rights Reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style license
|
|
// that can be found in the COPYING file in the root of the source
|
|
// tree. An additional intellectual property rights grant can be found
|
|
// in the file PATENTS. All contributing project authors may
|
|
// be found in the AUTHORS file in the root of the source tree.
|
|
// -----------------------------------------------------------------------------
|
|
//
|
|
// Metadata types and functions.
|
|
//
|
|
|
|
#ifndef WEBP_IMAGEIO_METADATA_H_
|
|
#define WEBP_IMAGEIO_METADATA_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "webp/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct MetadataPayload {
|
|
uint8_t* bytes;
|
|
size_t size;
|
|
} MetadataPayload;
|
|
|
|
typedef struct Metadata {
|
|
MetadataPayload exif;
|
|
MetadataPayload iccp;
|
|
MetadataPayload xmp;
|
|
} Metadata;
|
|
|
|
#define METADATA_OFFSET(x) offsetof(Metadata, x)
|
|
|
|
void MetadataInit(Metadata* const metadata);
|
|
void MetadataPayloadDelete(MetadataPayload* const payload);
|
|
void MetadataFree(Metadata* const metadata);
|
|
|
|
// Stores 'metadata' to 'payload->bytes', returns false on allocation error.
|
|
int MetadataCopy(const char* metadata, size_t metadata_len,
|
|
MetadataPayload* const payload);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // WEBP_IMAGEIO_METADATA_H_
|