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 28 matching lines...) Expand all Loading... |
39 | 39 |
40 class ImageFrameGenerator; | 40 class ImageFrameGenerator; |
41 | 41 |
42 // Implements SkImageGenerator, used by SkPixelRef to populate a discardable mem
ory | 42 // Implements SkImageGenerator, used by SkPixelRef to populate a discardable mem
ory |
43 // with a decoded image frame. ImageFrameGenerator does the actual decoding. | 43 // with a decoded image frame. ImageFrameGenerator does the actual decoding. |
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*); | |
50 | |
51 DecodingImageGenerator(PassRefPtr<ImageFrameGenerator>, const SkImageInfo&,
size_t index); | 49 DecodingImageGenerator(PassRefPtr<ImageFrameGenerator>, const SkImageInfo&,
size_t index); |
52 ~DecodingImageGenerator() override; | 50 ~DecodingImageGenerator() override; |
53 | 51 |
54 void setGenerationId(size_t id) { m_generationId = id; } | 52 void setGenerationId(size_t id) { m_generationId = id; } |
| 53 void setCanYUVDecode(bool yes) { m_canYUVDecode = yes; } |
| 54 |
| 55 static SkImageGenerator* create(SkData*); // Highly unsual access. |
55 | 56 |
56 protected: | 57 protected: |
57 SkData* onRefEncodedData() override; | 58 SkData* onRefEncodedData() override; |
58 | 59 |
59 bool onGetPixels(const SkImageInfo&, void* pixels, size_t rowBytes, SkPMColo
r table[], int* tableCount) override; | 60 bool onGetPixels(const SkImageInfo&, void* pixels, size_t rowBytes, SkPMColo
r table[], int* tableCount) override; |
60 | 61 |
61 bool onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3],
SkYUVColorSpace*) override; | 62 bool onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3],
SkYUVColorSpace*) override; |
62 | 63 |
63 private: | 64 private: |
64 RefPtr<ImageFrameGenerator> m_frameGenerator; | 65 RefPtr<ImageFrameGenerator> m_frameGenerator; |
65 size_t m_frameIndex; | 66 size_t m_frameIndex; |
66 size_t m_generationId; | 67 size_t m_generationId; |
| 68 bool m_canYUVDecode; |
67 }; | 69 }; |
68 | 70 |
69 } // namespace blink | 71 } // namespace blink |
70 | 72 |
71 #endif // DecodingImageGenerator_h_ | 73 #endif // DecodingImageGenerator_h_ |
OLD | NEW |