Lines Matching refs:gifOut

82     GifFileType* gifOut;  in transcode()  local
96 gifOut = EGifOpenFileName(pathOut, false, &error); in transcode()
97 if (gifOut) { in transcode()
98 closer.setGifOut(gifOut); in transcode()
106 if (resizeBoxFilter(gifIn, gifOut)) { in transcode()
116 bool GifTranscoder::resizeBoxFilter(GifFileType* gifIn, GifFileType* gifOut) { in resizeBoxFilter() argument
118 ASSERT(gifOut != NULL, "gifOut cannot be NULL"); in resizeBoxFilter()
126 if (EGifPutScreenDesc(gifOut, in resizeBoxFilter()
150 std::unique_ptr<GifByteType[]> dstRowBuffer(new GifByteType[gifOut->SWidth]); in resizeBoxFilter()
186 if (EGifPutImageDesc(gifOut, in resizeBoxFilter()
189 gifOut->SWidth, in resizeBoxFilter()
190 gifOut->SHeight, in resizeBoxFilter()
221 for (int y = 0; y < gifOut->SHeight; y++) { in resizeBoxFilter()
222 for (int x = 0; x < gifOut->SWidth; x++) { in resizeBoxFilter()
227 if (EGifPutLine(gifOut, dstRowBuffer.get(), gifOut->SWidth) == GIF_ERROR) { in resizeBoxFilter()
249 if (gifOut->Image.ColorMap) { in resizeBoxFilter()
250 GifFreeMapObject(gifOut->Image.ColorMap); in resizeBoxFilter()
251 gifOut->Image.ColorMap = NULL; in resizeBoxFilter()
294 if (EGifPutExtensionLeader(gifOut, extCode) == GIF_ERROR) { in resizeBoxFilter()
298 if (EGifPutExtensionBlock(gifOut, ext[0], ext + 1) == GIF_ERROR) { in resizeBoxFilter()
310 if (EGifPutExtensionBlock(gifOut, ext[0], ext + 1) == GIF_ERROR) { in resizeBoxFilter()
317 if (EGifPutExtensionTrailer(gifOut) == GIF_ERROR) { in resizeBoxFilter()
530 void GifFilesCloser::setGifOut(GifFileType* gifOut) { in setGifOut() argument
532 mGifOut = gifOut; in setGifOut()