Home | History | Annotate | only in /external/glide/third_party/gif_decoder
Up to higher level directory
NameDateSize
.gitignore05-Aug-201547
AndroidManifest.xml05-Aug-2015334
build.gradle05-Aug-2015403
build.xml05-Aug-20153.7K
custom_rules.xml05-Aug-2015381
LICENSE05-Aug-20151.1K
lint.xml05-Aug-2015103
pom.xml05-Aug-2015593
project.properties05-Aug-2015126
README.third_party05-Aug-2015922
src/05-Aug-2015

README.third_party

      1 URL: https://gist.githubusercontent.com/devunwired/4479231/raw/df2725be4ae0f12f5265deaf0a769936ea94950b/GifDecoder.java
      2 Version: df2725be4ae0f12f5265deaf0a769936ea94950b
      3 License: MIT
      4 License File: LICENSE
      5 
      6 Description:
      7 Implementation of GifDecoder that is more memory efficient to animate for 
      8 Android devices. This implementation does not house in memory a Bitmap for 
      9 every image frame. Images are instead decoded on-the-fly, and only the minimum 
     10 data to create the next frame in the sequence is kept. The implementation has 
     11 also been adapted to reduce memory allocations in the decoding process to 
     12 reduce time to render each frame.
     13  
     14 Adapted from: 
     15 http://show.docjava.com/book/cgij/exportToHTML/ip/gif/stills/GifDecoder.java.html
     16 
     17 Local Modifications:
     18 Broke headers and frames out into separate files and added ability to share 
     19 headers between multiple decoders. Added interface for reusing bitmaps each 
     20 frame.  
     21