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

  /external/giflib/
gif_lib.h 70 typedef struct GifFileType {
84 } GifFileType;
97 typedef int (*InputFunc) (GifFileType *, GifByteType *, int);
102 typedef int (*OutputFunc) (GifFileType *, const GifByteType *, int);
125 GifFileType *EGifOpenFileName(const char *GifFileName,
127 GifFileType *EGifOpenFileHandle(const int GifFileHandle, int *Error);
128 GifFileType *EGifOpen(void *userPtr, OutputFunc writeFunc, int *Error);
129 int EGifSpew(GifFileType * GifFile);
130 char *EGifGetGifVersion(GifFileType *GifFile); /* new in 5.x */
131 int EGifCloseFile(GifFileType * GifFile)
    [all...]
egif_lib.c 35 static int EGifPutWord(int Word, GifFileType * GifFile);
36 static int EGifSetupCompress(GifFileType * GifFile);
37 static int EGifCompressLine(GifFileType * GifFile, GifPixelType * Line,
39 static int EGifCompressOutput(GifFileType * GifFile, int Code);
40 static int EGifBufferedOutput(GifFileType * GifFile, GifByteType * Buf,
50 Returns a dynamically allocated GifFileType pointer which serves as the GIF
53 GifFileType *
58 GifFileType *GifFile;
75 if (GifFile == (GifFileType *) NULL)
83 Returns dynamically allocated a GifFileType pointer which serves as the GI
    [all...]
dgif_lib.c 35 static int DGifGetWord(GifFileType *GifFile, GifWord *Word);
36 static int DGifSetupDecompress(GifFileType *GifFile);
37 static int DGifDecompressLine(GifFileType *GifFile, GifPixelType *Line,
40 static int DGifDecompressInput(GifFileType *GifFile, int *Code);
41 static int DGifBufferedInput(GifFileType *GifFile, GifByteType *Buf,
46 Returns dynamically allocated GifFileType pointer which serves as the GIF
49 GifFileType *
53 GifFileType *GifFile;
68 Returns dynamically allocated GifFileType pointer which serves as the GIF
71 GifFileType *
    [all...]
gifalloc.c 276 FreeLastSavedImage(GifFileType *GifFile)
312 GifMakeSavedImage(GifFileType *GifFile, const SavedImage *CopyFrom)
379 GifFreeSavedImages(GifFileType *GifFile)
  /packages/apps/Messaging/jni/
GifTranscoder.h 52 static bool resizeBoxFilter(GifFileType* gifIn, GifFileType* gifOut);
55 static bool readImage(GifFileType* gifIn, GifByteType* rasterBits);
58 static bool renderImage(GifFileType* gifIn,
78 static GifByteType computeNewColorIndex(GifFileType* gifIn,
95 static ColorMapObject* getColorMap(GifFileType* gifIn);
111 void setGifIn(GifFileType* gifIn);
114 void setGifOut(GifFileType* gifOut);
118 GifFileType* mGifIn = NULL;
119 GifFileType* mGifOut = NULL
    [all...]
GifTranscoder.cpp 81 GifFileType* gifIn;
82 GifFileType* gifOut;
116 bool GifTranscoder::resizeBoxFilter(GifFileType* gifIn, GifFileType* gifOut) {
325 bool GifTranscoder::readImage(GifFileType* gifIn, GifByteType* rasterBits) {
350 bool GifTranscoder::renderImage(GifFileType* gifIn,
419 GifByteType GifTranscoder::computeNewColorIndex(GifFileType* gifIn,
480 ColorMapObject* GifTranscoder::getColorMap(GifFileType* gifIn) {
510 void GifFilesCloser::setGifIn(GifFileType* gifIn) {
520 void GifFilesCloser::setGifOut(GifFileType* gifOut)
    [all...]
  /external/skia/src/codec/
SkCodec_libgif.h 47 * GifFileType pointer.
55 static bool ReadHeader(SkStream* stream, SkCodec** codecOut, GifFileType** gifOut);
73 static void CloseGif(GifFileType* gif);
90 SkGifCodec(const SkImageInfo& srcInfo, SkStream* stream, GifFileType* gif);
92 SkAutoTCallVProc<GifFileType, CloseGif> fGif; // owned
SkCodec_libgif.cpp 52 static int32_t read_bytes_callback(GifFileType* fileType, GifByteType* out,
61 static GifFileType* open_gif(SkStream* stream) {
73 void SkGifCodec::CloseGif(GifFileType* gif) {
144 * GifFileType pointer.
152 bool SkGifCodec::ReadHeader(SkStream* stream, SkCodec** codecOut, GifFileType** gifOut) {
156 SkAutoTCallVProc<GifFileType, CloseGif> gif(open_gif(stream));
208 GifFileType* gif)
250 GifFileType* gifOut = NULL;
  /frameworks/ex/framesequence/jni/
FrameSequence_gif.h 58 GifFileType* getGif() const { return mGif; }
64 GifFileType* mGif;
FrameSequence_gif.cpp 31 static int streamReader(GifFileType* fileType, GifByteType* out, int size) {
229 GifFileType* gif = mFrameSequence.getGif();
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 101 static int DecodeCallBackProc(GifFileType* fileType, GifByteType* out,
118 static const ColorMapObject* find_colormap(const GifFileType* gif) {
180 static bool skip_src_rows(GifFileType* gif, uint8_t* dst, int width, int rowsToSkip) {
234 int close_gif(GifFileType* gif) {
245 GifFileType* gif = DGifOpen(sk_stream, DecodeCallBackProc);
247 GifFileType* gif = DGifOpen(sk_stream, DecodeCallBackProc, NULL);
253 SkAutoTCallIProc<GifFileType, close_gif> acp(gif);
SkMovie_gif.cpp 34 GifFileType* fGIF;
40 static int Decode(GifFileType* fileType, GifByteType* out, int size) {
345 const GifFileType* gif = fGIF;

Completed in 779 milliseconds