chromium/third_party/libwebp/src/imageio/metadata.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.
//

#include "./metadata.h"

#include <stdlib.h>
#include <string.h>

#include "webp/types.h"

void MetadataInit(Metadata* const metadata) {}

void MetadataPayloadDelete(MetadataPayload* const payload) {}

void MetadataFree(Metadata* const metadata) {}

int MetadataCopy(const char* metadata, size_t metadata_len,
                 MetadataPayload* const payload) {}

// -----------------------------------------------------------------------------