| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google 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 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 // | 44 // |
| 45 class PLATFORM_EXPORT DecodingImageGenerator final : public SkImageGenerator { | 45 class PLATFORM_EXPORT DecodingImageGenerator final : public SkImageGenerator { |
| 46 USING_FAST_MALLOC(DecodingImageGenerator); | 46 USING_FAST_MALLOC(DecodingImageGenerator); |
| 47 WTF_MAKE_NONCOPYABLE(DecodingImageGenerator); | 47 WTF_MAKE_NONCOPYABLE(DecodingImageGenerator); |
| 48 public: | 48 public: |
| 49 static SkImageGenerator* create(SkData*); | 49 static SkImageGenerator* create(SkData*); |
| 50 | 50 |
| 51 DecodingImageGenerator(PassRefPtr<ImageFrameGenerator>, const SkImageInfo&,
size_t index); | 51 DecodingImageGenerator(PassRefPtr<ImageFrameGenerator>, const SkImageInfo&,
size_t index); |
| 52 ~DecodingImageGenerator() override; | 52 ~DecodingImageGenerator() override; |
| 53 | 53 |
| 54 void setGenerationId(size_t id) { m_generationId = id; } | |
| 55 void setCanYUVDecode(bool yes) { m_canYUVDecode = yes; } | 54 void setCanYUVDecode(bool yes) { m_canYUVDecode = yes; } |
| 56 | 55 |
| 57 protected: | 56 protected: |
| 58 SkData* onRefEncodedData() override; | 57 SkData* onRefEncodedData() override; |
| 59 | 58 |
| 60 bool onGetPixels(const SkImageInfo&, void* pixels, size_t rowBytes, SkPMColo
r table[], int* tableCount) override; | 59 bool onGetPixels(const SkImageInfo&, void* pixels, size_t rowBytes, SkPMColo
r table[], int* tableCount) override; |
| 61 | 60 |
| 62 bool onQueryYUV8(SkYUVSizeInfo*, SkYUVColorSpace*) const override; | 61 bool onQueryYUV8(SkYUVSizeInfo*, SkYUVColorSpace*) const override; |
| 63 | 62 |
| 64 bool onGetYUV8Planes(const SkYUVSizeInfo&, void* planes[3]) override; | 63 bool onGetYUV8Planes(const SkYUVSizeInfo&, void* planes[3]) override; |
| 65 | 64 |
| 66 private: | 65 private: |
| 67 RefPtr<ImageFrameGenerator> m_frameGenerator; | 66 RefPtr<ImageFrameGenerator> m_frameGenerator; |
| 68 size_t m_frameIndex; | 67 size_t m_frameIndex; |
| 69 size_t m_generationId; | |
| 70 bool m_canYUVDecode; | 68 bool m_canYUVDecode; |
| 71 }; | 69 }; |
| 72 | 70 |
| 73 } // namespace blink | 71 } // namespace blink |
| 74 | 72 |
| 75 #endif // DecodingImageGenerator_h_ | 73 #endif // DecodingImageGenerator_h_ |
| OLD | NEW |