Home
last modified time | relevance | path

Searched refs:gif (Results 1 – 25 of 300) sorted by relevance

12345678910>>...12

/third_party/ffmpeg/tests/fate/
Dgif.mak1 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_…
7 FATE_GIF += fate-gif-disposal-restore
8 fate-gif-disposal-restore: CMD = framecrc -i $(TARGET_SAMPLES)/gif/banner2.gif -pix_fmt bgra -vf sc…
10 FATE_GIF += fate-gif-gray
11 fate-gif-gray: CMD = framecrc -i $(TARGET_SAMPLES)/gif/Newtons_cradle_animation_book_2.gif -pix_fmt…
13 FATE_GIF += fate-gif-deal
14 fate-gif-deal: CMD = framecrc -i $(TARGET_SAMPLES)/gif/deal.gif -vsync cfr -pix_fmt bgra -auto_conv…
[all …]
/third_party/ffmpeg/libavformat/
Dgif.c85 static int gif_get_delay(GIFContext *gif, AVPacket *prev, AVPacket *new) in gif_get_delay() argument
88 gif->duration = av_clip_uint16(new->pts - prev->pts); in gif_get_delay()
89 else if (!new && gif->last_delay >= 0) in gif_get_delay()
90 gif->duration = gif->last_delay; in gif_get_delay()
92 return gif->duration; in gif_get_delay()
97 GIFContext *gif = s->priv_data; in gif_write_packet() local
99 AVPacket *pkt = gif->prev_pkt; in gif_write_packet()
101 if (!gif->prev_pkt) { in gif_write_packet()
102 gif->prev_pkt = av_packet_alloc(); in gif_write_packet()
103 if (!gif->prev_pkt) in gif_write_packet()
[all …]
/third_party/boost/tools/quickbook/test/
Dimage-1_6.quickbook5 [$test.gif]
6 [$test this.gif]
7 [$test&this.gif]
8 [$test.gif [width 10cm] [height 10cm]]
9 [$test.gif [alt Foo]]
10 [$test.gif [alt Foobie foobie foo]]
11 [$test.gif [alt Foo & bar]]
12 [$test.gif [alt Foo] [width 10cm] [height 10cm]]
13 [$test.gif [alt Foo\[\]] [width 10cm] [height 10cm]]
15 [$ [/comment] test.gif ]
[all …]
Dimage-1_5.quickbook5 [$test.gif]
6 [$test this.gif]
7 [$test&this.gif]
8 [$test.gif [width 10cm] [height 10cm]]
9 [$test.gif [alt Foo]]
10 [$test.gif [alt Foobie foobie foo]]
11 [$test.gif [alt Foo & bar]]
12 [$test.gif [alt Foo] [width 10cm] [height 10cm]]
14 [$ [/comment] test.gif ]
15 [$ [/comment] test.gif [/comment] ]
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/test/data/analysis/
Dgiflzw-emission-lengths.txt4 # go run ../../script/extract-giflzw.go -histogram -allframes *.gif > analysis/giflzw-emission-leng…
6 animated-red-blue.gif (all frames)
23 bricks-dither.gif (all frames)
40 bricks-gray.gif (all frames)
57 bricks-nodither.gif (all frames)
74 gifplayer-muybridge.gif (all frames)
93 harvesters.gif (all frames)
110 hat.gif (all frames)
127 hibiscus.primitive.gif (all frames)
144 hibiscus.regular.gif (all frames)
[all …]
/third_party/flutter/skia/third_party/externals/libwebp/examples/
Dgif2webp.c105 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->SHeight == 0) { in main()
301 gif->SWidth = image_desc->Width; in main()
302 gif->SHeight = image_desc->Height; in main()
[all …]
Dgifdec.c90 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, tmp, rect.width, transparent_index, ptr)) goto End; in GIFReadFrame()
175 int GIFReadLoopCount(GifFileType* const gif, GifByteType** const buf, in GIFReadLoopCount() argument
179 if (DGifGetExtensionNext(gif, buf) == GIF_ERROR) { in GIFReadLoopCount()
[all …]
Danim_util.c390 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->ImageCount; ++i) { in GetLoopCountGIF()
[all …]
Dgifdec.h77 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/skia/third_party/externals/libwebp/examples/
Dgif2webp.c105 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->SHeight == 0) { in main()
301 gif->SWidth = image_desc->Width; in main()
302 gif->SHeight = image_desc->Height; in main()
[all …]
Dgifdec.c90 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, tmp, rect.width, transparent_index, ptr)) goto End; in GIFReadFrame()
175 int GIFReadLoopCount(GifFileType* const gif, GifByteType** const buf, in GIFReadLoopCount() argument
179 if (DGifGetExtensionNext(gif, buf) == GIF_ERROR) { in GIFReadLoopCount()
[all …]
Danim_util.c390 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->ImageCount; ++i) { in GetLoopCountGIF()
[all …]
Dgifdec.h77 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/giflib/tests/
Dmakefile4 .SUFFIXES: .gif .rgb
30 GIFS := $(shell ls ../pic/*.gif)
60 @$(UTILS)/gifbuild -d <$(PICS)/treescap.gif | diff -u treescap.ico -
64 @$(UTILS)/gifbuild -d <$(PICS)/fire.gif > $@.fire1.ico
65 @$(UTILS)/gifbuild < $@.fire1.ico > $@.fire2.gif
66 @$(UTILS)/gifbuild -d < $@.fire2.gif > $@.fire2.ico
68 @rm -f $@.fire1.ico $@.fire2.ico $@.fire2.gif
107 …@head --bytes=-20 <$(PICS)/treescap.gif | $(UTILS)/giffix 2>/dev/null | $(UTILS)/gifbuild -d >giff…
110 …@head --bytes=-20 <$(PICS)/treescap.gif | $(UTILS)/giffix 2>/dev/null | $(UTILS)/gifbuild -d | dif…
115 @$(UTILS)/gifinto <$(PICS)/porsche.gif $@.giflib.tmp
[all …]
/third_party/boost/libs/graph/doc/
DBUILD_DOCS.sh17 fdp -s -n -Tgif -ostoer_wagner_imgs/digraph1.gif stoer_wagner_imgs/digraph1.dot
18 fdp -s -n -Tgif -ostoer_wagner_imgs/digraph1-min-cut.gif stoer_wagner_imgs/digraph1-min-cut.dot
19 fdp -s -n -Tgif -ostoer_wagner_imgs/stoer_wagner-example.gif stoer_wagner_imgs/stoer_wagner-example…
20 fdp -s -n -Tgif -ostoer_wagner_imgs/stoer_wagner-example-c1.gif stoer_wagner_imgs/stoer_wagner-exam…
21 fdp -s -n -Tgif -ostoer_wagner_imgs/stoer_wagner-example-min-cut.gif stoer_wagner_imgs/stoer_wagner…
22 dot -Tgif -ostoer_wagner_imgs/stoer_wagner.cpp.gif stoer_wagner_imgs/stoer_wagner.cpp.dot
/third_party/boost/libs/graph/doc/figs/
DMakefile8 .SUFFIXES: .fig .gif .tif .jpeg
10 .fig.gif:
11 fig2dev -L gif $*.fig > $*.gif
33 GIF = $(FIG:.fig=.gif)
42 /bin/rm -f *.gif *.tif *.jpg
/third_party/flutter/skia/third_party/externals/wuffs/script/bench-rust-gif-dot-rs/src/
Dmain.rs47 extern crate gif;
99 gif::parser::color_table(&src[COLOR_TABLE_OFFSET..], COLOR_TABLE_ELEMENT_COUNT).unwrap(); in decode()
101 let (_, block) = gif::parser::graphic_block(&src[GRAPHIC_BLOCK_OFFSET..]).unwrap(); in decode()
104 gif::parser::Block::GraphicBlock(_, x) => x, in decode()
109 gif::parser::GraphicRenderingBlock::TableBasedImage(_, x, y) => (x, y), in decode()
113 let num_bytes = gif::lzw::decode_lzw(&colors, code_size as usize, blocks, dst).unwrap(); in decode()
/third_party/python/Doc/library/
Dglob.rst44 :file:`../../Tools/\*/\*.gif`), and can contain shell-style wildcards. Broken
108 :file:`1.gif`, :file:`2.txt`, :file:`card.gif` and a subdirectory :file:`sub`
115 ['./1.gif', './2.txt']
116 >>> glob.glob('*.gif')
117 ['1.gif', 'card.gif']
118 >>> glob.glob('?.gif')
119 ['1.gif']
126 default. For example, consider a directory containing :file:`card.gif` and
127 :file:`.card.gif`::
130 >>> glob.glob('*.gif')
[all …]
/third_party/flutter/skia/third_party/externals/wuffs/fuzz/c/std/
Dseed_corpora.txt4 # The map is often trivial. For example, the "gif" implementation is tested on
5 # files matching "*.gif". However, for some formats, the format name and the
14 gif: test/data/*.gif test/data/artificial/*.gif
/third_party/libxml2/result/XPath/xptr/
Dvidchildseq9 content=linus.gif
18 content=linus.gif
27 content=linus.gif
36 content=linus.gif
Dchapterschildseq9 content=linus.gif
18 content=linus.gif
27 content=linus.gif
36 content=linus.gif
/third_party/ffmpeg/tests/ref/lavf/
Dgif1 e35f5ea283bbcb249818e0078ec72664 *tests/data/lavf/lavf.gif
2 2011766 tests/data/lavf/lavf.gif
3 tests/data/lavf/lavf.gif CRC=0x2429faff
/third_party/libxml2/doc/
DMakefile.am26 $(wildcard *.gif) w3c.png $(wildcard html/*.html) \
69 DOM.gif \
72 Libxml2-Logo-180x168.gif \
73 Libxml2-Logo-90x34.gif \
80 catalog.gif \
151 libxml.gif \
159 redhat.gif \
164 smallfootonly.gif \
165 structure.gif \
339gif $(srcdir)/DOM.gif $(srcdir)/smallfootonly.gif $(srcdir)/redhat.gif $(srcdir)/libxml.gif $(srcd…
/third_party/flutter/skia/third_party/externals/wuffs/doc/
Dbinary-size.md11 -rw-r--r-- 1 nigeltao eng 9456 Nov 9 22:59 std-gif.lo
16 -rw-r--r-- 1 nigeltao eng 9480 Nov 9 22:59 std-gif.o
21 -rw-r--r-- 1 nigeltao eng 13520 Nov 9 22:59 std-gif.lo
26 -rw-r--r-- 1 nigeltao eng 13536 Nov 9 22:59 std-gif.o
35 Wuffs gif vs libgif.
/third_party/skia/modules/canvaskit/future_apis/
DImageDecoder.md33 …oogleapis.com/dalecurtis/test-gif.html?src=giphy.gif](http://storage.googleapis.com/dalecurtis/tes…
52 const response = await fetch(animatedImageUrl); // e.g. gif or mjpeg

12345678910>>...12