HomeSort by relevance Sort by last modified time
    Searched defs:gif (Results 1 - 16 of 16) sorted by null

  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifDataLoadProvider.java 1 package com.bumptech.glide.load.resource.gif;
GifDataResource.java 1 package com.bumptech.glide.load.resource.gif;
GifDataTransformation.java 1 package com.bumptech.glide.load.resource.gif;
GifDrawableResource.java 1 package com.bumptech.glide.load.resource.gif;
GifFrameModelLoader.java 1 package com.bumptech.glide.load.resource.gif;
GifFrameResourceDecoder.java 1 package com.bumptech.glide.load.resource.gif;
27 return "GifFrameResourceDecoder.com.bumptech.glide.load.resource.gif";
GifResourceEncoder.java 1 package com.bumptech.glide.load.resource.gif;
20 Log.d(TAG, "Failed to encode gif", e);
29 return "GifResourceEncoder.com.bumptech.glide.load.resource.gif";
GifResourceDecoder.java 1 package com.bumptech.glide.load.resource.gif;
43 return "GifResourceDecoder.com.bumptech.glide.load.resource.gif";
GifData.java 1 package com.bumptech.glide.load.resource.gif;
GifDrawable.java 1 package com.bumptech.glide.load.resource.gif;
GifFrameManager.java 1 package com.bumptech.glide.load.resource.gif;
70 // For non transparent gifs, we can beat the performance of our gif decoder for each frame by decoding jpegs
75 // For transparent gifs, we would have to encode as pngs which is actually slower than our gif decoder so we
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libgif.cpp 41 "images.gif.suppressDecoderWarnings", true,
42 "Suppress GIF warnings and errors when calling image decode "
46 /* Implement the GIF interlace algorithm in an iterator.
118 static const ColorMapObject* find_colormap(const GifFileType* gif) {
119 const ColorMapObject* cmap = gif->Image.ColorMap;
121 cmap = gif->SColorMap;
172 * Skip rows in the source gif image.
173 * @param gif Source image.
174 * @param dst Scratch output needed by gif library call. Must be >= width bytes.
179 static bool skip_src_rows(GifFileType* gif, uint8_t* dst, int width, int rowsToSkip)
233 GifFileType* gif = DGifOpen(sk_stream, DecodeCallBackProc); local
    [all...]
SkMovie_gif.cpp 341 const GifFileType* gif = fGIF; local
342 if (NULL == gif)
345 if (gif->ImageCount < 1) {
349 const int width = gif->SWidth;
350 const int height = gif->SHeight;
389 if (gif->SColorMap != NULL) {
390 const GifColorType& col = gif->SColorMap->Colors[fGIF->SBackGroundColor];
402 if (!trans && gif->SColorMap != NULL) {
420 drawFrame(bm, cur, gif->SColorMap);
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 41 "images.gif.suppressDecoderWarnings", true,
42 "Suppress GIF warnings and errors when calling image decode "
46 /* Implement the GIF interlace algorithm in an iterator.
118 static const ColorMapObject* find_colormap(const GifFileType* gif) {
119 const ColorMapObject* cmap = gif->Image.ColorMap;
121 cmap = gif->SColorMap;
173 * Skip rows in the source gif image.
174 * @param gif Source image.
175 * @param dst Scratch output needed by gif library call. Must be >= width bytes.
180 static bool skip_src_rows(GifFileType* gif, uint8_t* dst, int width, int rowsToSkip)
234 GifFileType* gif = DGifOpen(sk_stream, DecodeCallBackProc); local
    [all...]
SkMovie_gif.cpp 341 const GifFileType* gif = fGIF; local
342 if (NULL == gif)
345 if (gif->ImageCount < 1) {
349 const int width = gif->SWidth;
350 const int height = gif->SHeight;
389 if (gif->SColorMap != NULL) {
390 const GifColorType& col = gif->SColorMap->Colors[fGIF->SBackGroundColor];
402 if (!trans && gif->SColorMap != NULL) {
420 drawFrame(bm, cur, gif->SColorMap);
  /frameworks/ex/framesequence/jni/
FrameSequence_gif.cpp 27 // Note that 0 delay is undefined behavior in the gif standard
60 ALOGW("Gif load failed");
65 ALOGW("Gif slurp failed");
229 GifFileType* gif = mFrameSequence.getGif(); local
230 if (!gif) {
259 DGifSavedExtensionToGCB(gif, i, &gcb);
260 const SavedImage& frame = gif->SavedImages[i];
277 DGifSavedExtensionToGCB(gif, i - 1, &prevGcb);
278 const SavedImage& prevFrame = gif->SavedImages[i - 1];
314 const ColorMapObject* cmap = gif->SColorMap
    [all...]

Completed in 520 milliseconds