/* * 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 SkJpegMultiPicture_codec_DEFINED #define SkJpegMultiPicture_codec_DEFINED #include "include/core/SkRefCnt.h" #include <cstdint> #include <memory> #include <vector> class SkData; /* * Parsed Jpeg Multi-Picture Format structure as specified in CIPA DC-x007-2009. An introduction to * the format can be found in Figure 1 (Basic MP File format data structure) and Figure 6 (Internal * Structure of the MP Index IFD) in that document. This parsing will extract only the size and * offset parameters from the images in the Index Image File Directory. */ struct SkJpegMultiPictureParameters { … }; #endif