blob: 7232d1796278afc5a690d5741e92c169edc24bb3 [file] [log] [blame]
/*
* Copyright 2023 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkJpegXmp_codec_DEFINED
#define SkJpegXmp_codec_DEFINED
#include "include/core/SkRefCnt.h"
#include "include/private/SkXmp.h"
class SkData;
#include <memory>
#include <vector>
// Find and parse all XMP metadata, given a list of all APP1 segment parameters.
std::unique_ptr<SkXmp> SkJpegMakeXmp(const std::vector<sk_sp<const SkData>>& decoderApp1Params);
#endif