mirror of
https://github.com/webmproject/libwebp.git
synced 2024-11-20 04:18:26 +01:00
48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
|
// Copyright 2012 Google Inc. All Rights Reserved.
|
||
|
//
|
||
|
// This code is licensed under the same terms as WebM:
|
||
|
// Software License Agreement: http://www.webmproject.org/license/software/
|
||
|
// Additional IP Rights Grant: http://www.webmproject.org/license/additional/
|
||
|
// -----------------------------------------------------------------------------
|
||
|
//
|
||
|
// Metadata types and functions.
|
||
|
//
|
||
|
|
||
|
#include "./metadata.h"
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include "webp/types.h"
|
||
|
|
||
|
void MetadataInit(Metadata* const metadata) {
|
||
|
if (metadata == NULL) return;
|
||
|
memset(metadata, 0, sizeof(*metadata));
|
||
|
}
|
||
|
|
||
|
void MetadataPayloadDelete(MetadataPayload* const payload) {
|
||
|
if (payload == NULL) return;
|
||
|
free(payload->bytes);
|
||
|
payload->bytes = NULL;
|
||
|
payload->size = 0;
|
||
|
}
|
||
|
|
||
|
void MetadataFree(Metadata* const metadata) {
|
||
|
if (metadata == NULL) return;
|
||
|
MetadataPayloadDelete(&metadata->exif);
|
||
|
MetadataPayloadDelete(&metadata->iccp);
|
||
|
MetadataPayloadDelete(&metadata->xmp);
|
||
|
}
|
||
|
|
||
|
int MetadataCopy(const char* metadata, size_t metadata_len,
|
||
|
MetadataPayload* const payload) {
|
||
|
if (metadata == NULL || metadata_len == 0 || payload == NULL) return 0;
|
||
|
payload->bytes = (uint8_t*)malloc(metadata_len);
|
||
|
if (payload->bytes == NULL) return 0;
|
||
|
payload->size = metadata_len;
|
||
|
memcpy(payload->bytes, metadata, metadata_len);
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
// -----------------------------------------------------------------------------
|