blob: fb8e338fa517244fef6d4ea861f77ef555cf96ef [file] [log] [blame]
yujieqin916de9f2016-01-25 08:26:16 -08001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkRawCodec_DEFINED
9#define SkRawCodec_DEFINED
10
11#include "SkCodec.h"
msarettad8bcfe2016-03-07 07:09:03 -080012#include "SkColorSpace.h"
yujieqin916de9f2016-01-25 08:26:16 -080013#include "SkImageInfo.h"
14#include "SkTypes.h"
15
16class SkDngImage;
17class SkStream;
18
19/*
20 *
21 * This class implements the decoding for RAW images
22 *
23 */
24class SkRawCodec : public SkCodec {
25public:
26
27 /*
28 * Creates a RAW decoder
29 * Takes ownership of the stream
30 */
Mike Reedede7bac2017-07-23 15:30:02 -040031 static std::unique_ptr<SkCodec> MakeFromStream(std::unique_ptr<SkStream>, Result*);
yujieqin916de9f2016-01-25 08:26:16 -080032
33 ~SkRawCodec() override;
34
35protected:
36
37 Result onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, const Options&,
Leon Scroggins571b30f2017-07-11 17:35:31 +000038 int*) override;
yujieqin916de9f2016-01-25 08:26:16 -080039
Hal Canarydb683012016-11-23 08:55:18 -070040 SkEncodedImageFormat onGetEncodedFormat() const override {
41 return SkEncodedImageFormat::kDNG;
yujieqin916de9f2016-01-25 08:26:16 -080042 }
43
44 SkISize onGetScaledDimensions(float desiredScale) const override;
45
46 bool onDimensionsSupported(const SkISize&) override;
47
Leon Scroggins III96765962018-12-07 14:04:47 -050048 // SkCodec only applies the colorXform if it's necessary for color space
49 // conversion. SkRawCodec will always convert, so tell SkCodec not to.
50 bool usesColorXform() const override { return false; }
51
yujieqin916de9f2016-01-25 08:26:16 -080052private:
53
54 /*
55 * Creates an instance of the decoder
56 * Called only by NewFromStream, takes ownership of dngImage.
57 */
58 SkRawCodec(SkDngImage* dngImage);
59
Ben Wagner145dbcd2016-11-03 14:40:50 -040060 std::unique_ptr<SkDngImage> fDngImage;
yujieqin916de9f2016-01-25 08:26:16 -080061
62 typedef SkCodec INHERITED;
63};
64
65#endif