Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1232)

Unified Diff: third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.h

Issue 2386453003: WIP: Implement APNG (Closed)
Patch Set: Decode later frames row by row Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.h
diff --git a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.h b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.h
index 7ce6aa0faf83c7c6d2ece1ce6cc94ea5d07f7427..9547337db3750cbebccf3b2e98aad0734381098e 100644
--- a/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.h
+++ b/third_party/WebKit/Source/platform/image-decoders/png/PNGImageDecoder.h
@@ -43,26 +43,44 @@ class PLATFORM_EXPORT PNGImageDecoder final : public ImageDecoder {
size_t offset = 0);
~PNGImageDecoder() override;
+ enum class PNGParseQuery { PNGSizeQuery, PNGMetaDataQuery };
+
// ImageDecoder:
String filenameExtension() const override { return "png"; }
+ int repetitionCount() const override;
+ bool frameIsCompleteAtIndex(size_t) const override;
+ float frameDurationAtIndex(size_t) const override;
+ size_t clearCacheExceptFrame(size_t) override;
// Callbacks from libpng
void headerAvailable();
void rowAvailable(unsigned char* row, unsigned rowIndex, int);
void complete();
+ // Additional methods used for APNG
+ void setRepetitionCount(size_t);
+
private:
// ImageDecoder:
- void decodeSize() override { decode(true); }
- void decode(size_t) override { decode(false); }
+ void decodeSize() override { parse(PNGParseQuery::PNGSizeQuery); }
+ void decode(size_t) override;
+ size_t decodeFrameCount() override;
+ void initializeNewFrame(size_t) override;
+ void clearFrameBuffer(size_t) override;
- // Decodes the image. If |onlySize| is true, stops decoding after
- // calculating the image size. If decoding fails but there is no more
- // data coming, sets the "decode failure" flag.
- void decode(bool onlySize);
+ bool initFrameBuffer(size_t);
+ void parse(PNGParseQuery);
+ // Used by clearCacheExceptFrame if two frames need to be kept in cache.
+ size_t clearCacheExceptTwoFrames(size_t, size_t);
std::unique_ptr<PNGImageReader> m_reader;
const unsigned m_offset;
+ size_t m_frameCount;
+ size_t m_currentFrame;
+ // m_repetitionCount is set to cAnimationLoopOnce by default, so the
+ // DeferredImageDecoder takes into account that this may be an animated
+ // image, but we don't know for sure yet.
+ int m_repetitionCount;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698