Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(442)

Side by Side Diff: src/codec/SkWebpCodec.h

Issue 1472123002: Make SkCodec support peek() and read() (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rebase Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/codec/SkJpegCodec.cpp ('k') | src/codec/SkWebpCodec.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkWebpCodec_DEFINED 8 #ifndef SkWebpCodec_DEFINED
9 #define SkWebpCodec_DEFINED 9 #define SkWebpCodec_DEFINED
10 10
11 #include "SkCodec.h" 11 #include "SkCodec.h"
12 #include "SkEncodedFormat.h" 12 #include "SkEncodedFormat.h"
13 #include "SkImageInfo.h" 13 #include "SkImageInfo.h"
14 #include "SkTypes.h" 14 #include "SkTypes.h"
15 15
16 class SkStream; 16 class SkStream;
17 17
18 static const size_t WEBP_VP8_HEADER_SIZE = 30;
19
18 class SkWebpCodec final : public SkCodec { 20 class SkWebpCodec final : public SkCodec {
19 public: 21 public:
20 // Assumes IsWebp was called and returned true. 22 // Assumes IsWebp was called and returned true.
21 static SkCodec* NewFromStream(SkStream*); 23 static SkCodec* NewFromStream(SkStream*);
22 static bool IsWebp(SkStream*); 24 static bool IsWebp(const void*, size_t);
23 protected: 25 protected:
24 Result onGetPixels(const SkImageInfo&, void*, size_t, const Options&, SkPMCo lor*, int*, int*) 26 Result onGetPixels(const SkImageInfo&, void*, size_t, const Options&, SkPMCo lor*, int*, int*)
25 override; 27 override;
26 SkEncodedFormat onGetEncodedFormat() const override { return kWEBP_SkEncoded Format; } 28 SkEncodedFormat onGetEncodedFormat() const override { return kWEBP_SkEncoded Format; }
27 29
28 bool onReallyHasAlpha() const override { 30 bool onReallyHasAlpha() const override {
29 return this->getInfo().alphaType() != kOpaque_SkAlphaType; 31 return this->getInfo().alphaType() != kOpaque_SkAlphaType;
30 } 32 }
31 33
32 SkISize onGetScaledDimensions(float desiredScale) const override; 34 SkISize onGetScaledDimensions(float desiredScale) const override;
33 35
34 bool onDimensionsSupported(const SkISize&) override; 36 bool onDimensionsSupported(const SkISize&) override;
35 37
36 bool onGetValidSubset(SkIRect* /* desiredSubset */) const override; 38 bool onGetValidSubset(SkIRect* /* desiredSubset */) const override;
37 private: 39 private:
38 SkWebpCodec(const SkImageInfo&, SkStream*); 40 SkWebpCodec(const SkImageInfo&, SkStream*);
39 41
40 typedef SkCodec INHERITED; 42 typedef SkCodec INHERITED;
41 }; 43 };
42 #endif // SkWebpCodec_DEFINED 44 #endif // SkWebpCodec_DEFINED
OLDNEW
« no previous file with comments | « src/codec/SkJpegCodec.cpp ('k') | src/codec/SkWebpCodec.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698