HomeSort by relevance Sort by last modified time
    Searched refs:ImageCount (Results 1 - 10 of 10) sorted by null

  /frameworks/ex/framesequence/jni/
FrameSequence_gif.h 45 return mGif ? mGif->ImageCount : 0;
FrameSequence_gif.cpp 73 mPreservedFrames = new bool[mGif->ImageCount];
74 mRestoringFrames = new int[mGif->ImageCount];
77 for (int i = 0; i < mGif->ImageCount; i++) {
115 mGif->SWidth, mGif->SHeight, mGif->ImageCount, durationMs);
116 for (int i = 0; i < mGif->ImageCount; i++) {
337 const int maxFrame = gif->ImageCount;
  /external/giflib/
gifalloc.c 284 GifFile->ImageCount--;
285 sp = &GifFile->SavedImages[GifFile->ImageCount];
320 sizeof(SavedImage) * (GifFile->ImageCount + 1));
325 sp = &GifFile->SavedImages[GifFile->ImageCount++];
387 sp < GifFile->SavedImages + GifFile->ImageCount; sp++) {
dgif_lib.c 390 (GifFile->ImageCount + 1))) == NULL) {
402 sp = &GifFile->SavedImages[GifFile->ImageCount];
417 GifFile->ImageCount++;
594 if (ImageIndex < 0 || ImageIndex > GifFile->ImageCount - 1)
    [all...]
gif_lib.h 76 int ImageCount; /* Number of current image (both APIs) */
egif_lib.c 201 for (i = 0; i < GifFile->ImageCount; i++) {
668 if (ImageIndex < 0 || ImageIndex > GifFile->ImageCount - 1)
    [all...]
  /external/skia/src/images/
SkMovie_gif.cpp 90 for (int i = 0; i < fGIF->ImageCount; i++)
106 for (int i = 0; i < fGIF->ImageCount; i++)
115 fCurrIndex = fGIF->ImageCount - 1;
349 if (gif->ImageCount < 1) {
387 } else if (lastIndex > fGIF->ImageCount - 1) {
389 lastIndex = fGIF->ImageCount - 1;
SkImageDecoder_libgif.cpp 280 if (gif->ImageCount < 1) { // sanity check
281 return error_return(*bm, "ImageCount < 1");
287 SavedImage* image = &gif->SavedImages[gif->ImageCount-1];
  /external/skia/src/codec/
SkCodec_libgif.cpp 301 SkASSERT(fGif->ImageCount >= 1);
302 SavedImage* image = &fGif->SavedImages[fGif->ImageCount - 1];
  /packages/apps/Messaging/jni/
GifTranscoder.cpp 358 ASSERT(imageIndex < gifIn->ImageCount,
359 "Image index %d is out of bounds (count=%d)", imageIndex, gifIn->ImageCount);

Completed in 1156 milliseconds