Call fillIn() to appropriately fill in a FrameInfo Bug: b/160984428 Change-Id: I7e326ca0536799b2a72422c21faa78e83961e84f Reviewed-on: https://skia-review.googlesource.com/c/libgifcodec/+/339829 Reviewed-by: Nigel Tao <nigeltao@google.com> Commit-Queue: Leon Scroggins <scroggo@google.com>
libgifcodec is based on a fork of libgif made by Chromium. It was copied into Skia with https://codereview.chromium.org/2045293002, as https://skia.googlesource.com/skia/+/19b91531e912283d237435d94516575b28713cba.
The header file SkGifCodec.h exposes two functions:
bool SkGifCodec::IsGif(const void*, size_t);
std::unique_ptr<SkCodec> SkGifCodec::MakeFromStream(std::unique_ptr<SkStream>, SkCodec::Result*);
Which can be used by Skia's SkCodec::MakeFromStream to implement GIF Decoding.
See LICENSE.md for the license information.