OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 23 matching lines...) Expand all Loading... |
34 | 34 |
35 typedef Vector<unsigned char> GIFRow; | 35 typedef Vector<unsigned char> GIFRow; |
36 | 36 |
37 namespace blink { | 37 namespace blink { |
38 | 38 |
39 // This class decodes the GIF image format. | 39 // This class decodes the GIF image format. |
40 class PLATFORM_EXPORT GIFImageDecoder final : public ImageDecoder { | 40 class PLATFORM_EXPORT GIFImageDecoder final : public ImageDecoder { |
41 WTF_MAKE_NONCOPYABLE(GIFImageDecoder); | 41 WTF_MAKE_NONCOPYABLE(GIFImageDecoder); |
42 | 42 |
43 public: | 43 public: |
44 GIFImageDecoder(AlphaOption, ColorSpaceOption, size_t maxDecodedBytes); | 44 GIFImageDecoder(AlphaOption, |
| 45 ColorSpaceOption, |
| 46 sk_sp<SkColorSpace>, |
| 47 size_t maxDecodedBytes); |
45 ~GIFImageDecoder() override; | 48 ~GIFImageDecoder() override; |
46 | 49 |
47 enum GIFParseQuery { GIFSizeQuery, GIFFrameCountQuery }; | 50 enum GIFParseQuery { GIFSizeQuery, GIFFrameCountQuery }; |
48 | 51 |
49 // ImageDecoder: | 52 // ImageDecoder: |
50 String filenameExtension() const override { return "gif"; } | 53 String filenameExtension() const override { return "gif"; } |
51 void onSetData(SegmentReader* data) override; | 54 void onSetData(SegmentReader* data) override; |
52 int repetitionCount() const override; | 55 int repetitionCount() const override; |
53 bool frameIsCompleteAtIndex(size_t) const override; | 56 bool frameIsCompleteAtIndex(size_t) const override; |
54 float frameDurationAtIndex(size_t) const override; | 57 float frameDurationAtIndex(size_t) const override; |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 bool canReusePreviousFrameBuffer(size_t) const override; | 96 bool canReusePreviousFrameBuffer(size_t) const override; |
94 | 97 |
95 bool m_currentBufferSawAlpha; | 98 bool m_currentBufferSawAlpha; |
96 mutable int m_repetitionCount; | 99 mutable int m_repetitionCount; |
97 std::unique_ptr<GIFImageReader> m_reader; | 100 std::unique_ptr<GIFImageReader> m_reader; |
98 }; | 101 }; |
99 | 102 |
100 } // namespace blink | 103 } // namespace blink |
101 | 104 |
102 #endif | 105 #endif |
OLD | NEW |