| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 ~DecodingImageGenerator() override; | 52 ~DecodingImageGenerator() override; |
| 53 | 53 |
| 54 void setGenerationId(size_t id) { m_generationId = id; } | 54 void setGenerationId(size_t id) { m_generationId = id; } |
| 55 void setCanYUVDecode(bool yes) { m_canYUVDecode = yes; } | 55 void setCanYUVDecode(bool yes) { m_canYUVDecode = yes; } |
| 56 | 56 |
| 57 protected: | 57 protected: |
| 58 SkData* onRefEncodedData() override; | 58 SkData* onRefEncodedData() override; |
| 59 | 59 |
| 60 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; |
| 61 | 61 |
| 62 bool onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3],
SkYUVColorSpace*) override; | 62 bool onQueryYUV8(SkYUVSizeInfo*, SkYUVColorSpace*) const override; |
| 63 |
| 64 bool onGetYUV8Planes(const SkYUVSizeInfo&, void* planes[3]) override; |
| 63 | 65 |
| 64 private: | 66 private: |
| 65 RefPtr<ImageFrameGenerator> m_frameGenerator; | 67 RefPtr<ImageFrameGenerator> m_frameGenerator; |
| 66 size_t m_frameIndex; | 68 size_t m_frameIndex; |
| 67 size_t m_generationId; | 69 size_t m_generationId; |
| 68 bool m_canYUVDecode; | 70 bool m_canYUVDecode; |
| 69 }; | 71 }; |
| 70 | 72 |
| 71 } // namespace blink | 73 } // namespace blink |
| 72 | 74 |
| 73 #endif // DecodingImageGenerator_h_ | 75 #endif // DecodingImageGenerator_h_ |
| OLD | NEW |