Support progressive animated webp #2353
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation
To support progressive animated webp, so that Fresco can play animation while download the image.
WebPDemuxtoWebPDemuxPartialin webp.cppDecodeProducerto decode intermediate webp dataAnimatedDrawable2. So I modifiedAnimatedDrawable2to support playing from the last frame played by the previous data, and addedcreateDrawable(Drawable previousDrawable, CloseableImage image)toDrawableFactoryto update Drawable instead of creating a new DrawableControllerListenertoAbstractDraweeControllerto start animation every time data arrivesTest Plan
We can use
ImageRequestBuilder.setProgressiveRenderingEnabledto enable the progressive animated webp. I add a switch toImageFormatWebpFragmentin SHOWCASE module so that we can test the function.First, we construct a weak network environment, by modifying the proxy configuration or modifying the code of NetworkFetchProducer, and then turning on the switch, we can see that some frames can be played before the image is completely downloaded.