diff options
Diffstat (limited to 'lib/extras/codec_psd.h')
-rw-r--r-- | lib/extras/codec_psd.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/lib/extras/codec_psd.h b/lib/extras/codec_psd.h deleted file mode 100644 index c04ef2d..0000000 --- a/lib/extras/codec_psd.h +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) the JPEG XL Project Authors. All rights reserved. -// -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -#ifndef LIB_EXTRAS_CODEC_PSD_H_ -#define LIB_EXTRAS_CODEC_PSD_H_ - -// Decodes Photoshop PSD/PSB, preserving the layers - -#include <stddef.h> -#include <stdint.h> - -#include "lib/extras/color_hints.h" -#include "lib/jxl/base/padded_bytes.h" -#include "lib/jxl/base/span.h" -#include "lib/jxl/base/status.h" -#include "lib/jxl/codec_in_out.h" -#include "lib/jxl/color_encoding_internal.h" - -namespace jxl { -namespace extras { - -// Decodes `bytes` into `io`. -Status DecodeImagePSD(const Span<const uint8_t> bytes, - const ColorHints& color_hints, ThreadPool* pool, - CodecInOut* io); - -// Not implemented yet -Status EncodeImagePSD(const CodecInOut* io, const ColorEncoding& c_desired, - size_t bits_per_sample, ThreadPool* pool, - PaddedBytes* bytes); - -} // namespace extras -} // namespace jxl - -#endif // LIB_EXTRAS_CODEC_PSD_H_ |