aboutsummaryrefslogtreecommitdiff
path: root/third_party/gif_decoder
diff options
context:
space:
mode:
authorRobert Papp <papp.robert.s@gmail.com>2014-08-29 16:35:46 +0200
committerSam Judd <judds@google.com>2014-08-31 13:26:00 -0700
commitde24d6a2112bebef8d42def8c1f21c79ab7d418f (patch)
tree046cae3bc1f6d3edeceeecce0c44fe08a1fe00cc /third_party/gif_decoder
parent9df9953e2d43570c81cc3b419c19556eb50dc695 (diff)
downloadglide-de24d6a2112bebef8d42def8c1f21c79ab7d418f.tar.gz
Fix some comments: - typos, - documented empty blocks, - shortened some {@link}s, - converted some multi-line comments to single-line/javadocs.
Diffstat (limited to 'third_party/gif_decoder')
-rw-r--r--third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/GifFrame.java13
1 files changed, 7 insertions, 6 deletions
diff --git a/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/GifFrame.java b/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/GifFrame.java
index aebe6d64..1cfa6847 100644
--- a/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/GifFrame.java
+++ b/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/GifFrame.java
@@ -5,17 +5,18 @@ package com.bumptech.glide.gifdecoder;
*/
class GifFrame {
int ix, iy, iw, ih;
- /* Control Flags. */
+ /** Control Flag. */
boolean interlace;
+ /** Control Flag. */
boolean transparency;
- /* Disposal Method. */
+ /** Disposal Method. */
int dispose;
- /* Transparency Index. */
+ /** Transparency Index. */
int transIndex;
- /* Delay, in ms, to next frame. */
+ /** Delay, in ms, to next frame. */
int delay;
- /* Index in the raw buffer where we need to start reading to decode. */
+ /** Index in the raw buffer where we need to start reading to decode. */
int bufferFrameStart;
- /* Local Color Table. */
+ /** Local Color Table. */
int[] lct;
}