/third_party/ffmpeg/tests/fate/ |
H A D | gif.mak | 1 FATE_GIF += fate-gif-color 2 fate-gif-color: CMD = framecrc -i $(TARGET_SAMPLES)/gif/tc217.gif -pix_fmt bgra -vf scale 4 FATE_GIF += fate-gif-disposal-background 5 fate-gif-disposal-background: CMD = framecrc -trans_color 0 -i $(TARGET_SAMPLES)/gif/m4nb.gif -pix_fmt bgra -vf scale 7 FATE_GIF += fate-gif-disposal-restore 8 fate-gif [all...] |
H A D | lavf-video.mak | 9 FATE_LAVF_VIDEO_SCALE-$(call ENCDEC, GIF, GIF) += gif 30 fate-lavf-gif: CMD = lavf_video "-pix_fmt rgb24"
|
H A D | fits.mak | 4 -i $(TARGET_SAMPLES)/gif/m4nb.gif \
|
H A D | demux.mak | 51 FATE_SAMPLES_DEMUX-$(CONFIG_GIF_DEMUXER) += fate-gif-demux 52 fate-gif-demux: CMD = framecrc -i $(TARGET_SAMPLES)/gif/Newtons_cradle_animation_book_2.gif -c:v copy
|
H A D | seek.mak | 155 FATE_SEEK_LAVF_VIDEO += gif y4m
|
/third_party/ffmpeg/libavformat/ |
H A D | gif.c | 30 #include "libavcodec/gif.h" 84 static int gif_get_delay(GIFContext *gif, AVPacket *prev, AVPacket *new) in gif_get_delay() argument 87 gif->duration = av_clip_uint16(new->pts - prev->pts); in gif_get_delay() 88 else if (!new && gif->last_delay >= 0) in gif_get_delay() 89 gif->duration = gif->last_delay; in gif_get_delay() 91 return gif->duration; in gif_get_delay() 96 GIFContext *gif = s->priv_data; in gif_write_packet() local 98 AVPacket *pkt = gif->prev_pkt; in gif_write_packet() 100 if (!gif in gif_write_packet() 173 GIFContext *gif = s->priv_data; gif_write_trailer() local [all...] |
H A D | img2dec.c | 34 #include "libavcodec/gif.h" 178 else if (av_match_ext(p->filename, "raw") || av_match_ext(p->filename, "gif")) in img_read_probe() 1224 IMAGEAUTO_DEMUXER(gif, GIF)
|
H A D | Makefile | 223 OBJS-$(CONFIG_GIF_MUXER) += gif.o
|
/third_party/skia/third_party/externals/libwebp/examples/ |
H A D | gif2webp.c | 105 GifFileType* gif = NULL; in main() local 276 gif = DGifOpenFileUnicode(in_file, &gif_error); in main() 277 if (gif == NULL) goto End; in main() 283 if (DGifGetRecordType(gif, &type) == GIF_ERROR) goto End; in main() 288 GifImageDesc* const image_desc = &gif->Image; in main() 290 if (!DGifGetImageDesc(gif)) goto End; in main() 294 printf("Canvas screen: %d x %d\n", gif->SWidth, gif->SHeight); in main() 298 if (gif->SWidth == 0 || gif in main() [all...] |
H A D | gifdec.c | 90 static int Remap(const GifFileType* const gif, const uint8_t* const src, in Remap() argument 95 gif->Image.ColorMap ? gif->Image.ColorMap : gif->SColorMap; in Remap() 113 int GIFReadFrame(GifFileType* const gif, int transparent_index, in GIFReadFrame() argument 116 const GifImageDesc* const image_desc = &gif->Image; in GIFReadFrame() 154 if (DGifGetLine(gif, tmp, rect.width) == GIF_ERROR) goto End; in GIFReadFrame() 155 if (!Remap(gif, tmp, rect.width, transparent_index, row)) goto End; in GIFReadFrame() 162 if (DGifGetLine(gif, tmp, rect.width) == GIF_ERROR) goto End; in GIFReadFrame() 163 if (!Remap(gif, tm in GIFReadFrame() 175 GIFReadLoopCount(GifFileType* const gif, GifByteType** const buf, int* const loop_count) GIFReadLoopCount() argument 192 GIFReadMetadata(GifFileType* const gif, GifByteType** const buf, WebPData* const metadata) GIFReadMetadata() argument 297 GIFDisplayError(const GifFileType* const gif, int gif_error) GIFDisplayError() argument 346 GIFReadFrame(struct GifFileType* const gif, int transparent_index, GIFFrameRect* const gif_rect, struct WebPPicture* const picture) GIFReadFrame() argument 357 GIFReadLoopCount(struct GifFileType* const gif, GifByteType** const buf, int* const loop_count) GIFReadLoopCount() argument 366 GIFReadMetadata(struct GifFileType* const gif, GifByteType** const buf, struct WebPData* const metadata) GIFReadMetadata() argument 394 GIFDisplayError(const struct GifFileType* const gif, int gif_error) GIFDisplayError() argument [all...] |
H A D | anim_util.c | 390 static int GetTransparentIndexGIF(GifFileType* gif) { in GetTransparentIndexGIF() argument 393 DGifSavedExtensionToGCB(gif, 0, &first_gcb); in GetTransparentIndexGIF() 397 static uint32_t GetBackgroundColorGIF(GifFileType* gif) { in GetBackgroundColorGIF() argument 398 const int transparent_index = GetTransparentIndexGIF(gif); in GetBackgroundColorGIF() 399 const ColorMapObject* const color_map = gif->SColorMap; in GetBackgroundColorGIF() 401 gif->SBackGroundColor == transparent_index) { in GetBackgroundColorGIF() 404 || gif->SBackGroundColor >= color_map->ColorCount) { in GetBackgroundColorGIF() 407 const GifColorType color = color_map->Colors[gif->SBackGroundColor]; in GetBackgroundColorGIF() 421 static uint32_t GetLoopCountGIF(const GifFileType* const gif) { in GetLoopCountGIF() argument 423 for (i = 0; i < gif in GetLoopCountGIF() 448 GetFrameDurationGIF(GifFileType* gif, int n) GetFrameDurationGIF() argument 514 GifFileType* gif; ReadAnimatedGIF() local [all...] |
H A D | gifdec.h | 74 // Reads the next GIF frame from 'gif' into 'picture'. Also, returns the GIF 77 int GIFReadFrame(struct GifFileType* const gif, int transparent_index, 82 int GIFReadLoopCount(struct GifFileType* const gif, GifByteType** const buf, 87 int GIFReadMetadata(struct GifFileType* const gif, GifByteType** const buf, 102 void GIFDisplayError(const struct GifFileType* const gif, int gif_error);
|
/third_party/backends/tools/ |
H A D | style-check.sh | 59 *.gif) ;; # don't touch image files
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
H A D | compile.bat | 15 jar cfm com/ibm/rbm/RBManager.jar com/ibm/rbm/manifest.stub com/ibm/rbm/*.class com/ibm/rbm/gui/*.class com/ibm/rbm/gui/images/*.gif com/ibm/rbm/resources/RBManager*.properties
|
/third_party/ffmpeg/tests/ |
H A D | Makefile | 193 include $(SRC_PATH)/tests/fate/gif.mak
|
/third_party/ffmpeg/libavcodec/ |
H A D | Makefile | 369 OBJS-$(CONFIG_GIF_ENCODER) += gif.o lzwenc.o
|