| 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, | 44 GIFImageDecoder(AlphaOption, const ColorBehavior&, size_t maxDecodedBytes); |
| 45 ColorSpaceOption, | |
| 46 sk_sp<SkColorSpace>, | |
| 47 size_t maxDecodedBytes); | |
| 48 ~GIFImageDecoder() override; | 45 ~GIFImageDecoder() override; |
| 49 | 46 |
| 50 enum GIFParseQuery { GIFSizeQuery, GIFFrameCountQuery }; | 47 enum GIFParseQuery { GIFSizeQuery, GIFFrameCountQuery }; |
| 51 | 48 |
| 52 // ImageDecoder: | 49 // ImageDecoder: |
| 53 String filenameExtension() const override { return "gif"; } | 50 String filenameExtension() const override { return "gif"; } |
| 54 void onSetData(SegmentReader* data) override; | 51 void onSetData(SegmentReader* data) override; |
| 55 int repetitionCount() const override; | 52 int repetitionCount() const override; |
| 56 bool frameIsCompleteAtIndex(size_t) const override; | 53 bool frameIsCompleteAtIndex(size_t) const override; |
| 57 float frameDurationAtIndex(size_t) const override; | 54 float frameDurationAtIndex(size_t) const override; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 bool canReusePreviousFrameBuffer(size_t) const override; | 92 bool canReusePreviousFrameBuffer(size_t) const override; |
| 96 | 93 |
| 97 bool m_currentBufferSawAlpha; | 94 bool m_currentBufferSawAlpha; |
| 98 mutable int m_repetitionCount; | 95 mutable int m_repetitionCount; |
| 99 std::unique_ptr<GIFImageReader> m_reader; | 96 std::unique_ptr<GIFImageReader> m_reader; |
| 100 }; | 97 }; |
| 101 | 98 |
| 102 } // namespace blink | 99 } // namespace blink |
| 103 | 100 |
| 104 #endif | 101 #endif |
| OLD | NEW |