├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── FLIF-CLA-template.txt ├── LICENSE ├── LICENSE_Apache2 ├── LICENSE_GPL ├── LICENSE_LGPL ├── Makefile ├── README.md ├── configure.py ├── doc ├── flif.1 ├── flif.bash-completion ├── flif.magic ├── flif.pdf ├── metadata └── produce_documentation ├── extern ├── lodepng.cpp ├── lodepng.h ├── stb_image.h └── stb_image_write.h ├── raw-tools ├── raw2flif ├── raw2rggb ├── raw2rggb.bat └── sony_arw │ ├── README │ ├── arw_compress.sh │ ├── arw_decompress.sh │ ├── arw_encode.c │ └── dcraw.c ├── src ├── CMakeLists.txt ├── Makefile ├── common.cpp ├── common.hpp ├── compiler-specific.hpp ├── config.h ├── fileio.hpp ├── flif-dec.cpp ├── flif-dec.hpp ├── flif-enc.cpp ├── flif-enc.hpp ├── flif-mime.xml ├── flif-pixbuf-loader.c ├── flif.cpp ├── flif_config.h ├── image │ ├── color_range.cpp │ ├── color_range.hpp │ ├── crc32k.cpp │ ├── crc32k.hpp │ ├── image-metadata.cpp │ ├── image-metadata.hpp │ ├── image-pam.cpp │ ├── image-pam.hpp │ ├── image-png-metadata.hpp │ ├── image-png.cpp │ ├── image-png.hpp │ ├── image-pnm.cpp │ ├── image-pnm.hpp │ ├── image-rggb.cpp │ ├── image-rggb.hpp │ ├── image.cpp │ └── image.hpp ├── io.cpp ├── io.hpp ├── library │ ├── flif-interface-private.hpp │ ├── flif-interface-private_common.hpp │ ├── flif-interface-private_dec.hpp │ ├── flif-interface-private_enc.hpp │ ├── flif-interface.cpp │ ├── flif-interface_common.cpp │ ├── flif-interface_dec.cpp │ ├── flif-interface_enc.cpp │ ├── flif.h │ ├── flif_common.h │ ├── flif_dec.h │ └── flif_enc.h ├── maniac │ ├── bit.cpp │ ├── bit.hpp │ ├── chance.cpp │ ├── chance.hpp │ ├── compound.hpp │ ├── compound_enc.hpp │ ├── rac.hpp │ ├── rac_enc.hpp │ ├── symbol.cpp │ ├── symbol.hpp │ ├── symbol_enc.hpp │ └── util.hpp ├── transform │ ├── bounds.hpp │ ├── colorbuckets.hpp │ ├── factory.cpp │ ├── factory.hpp │ ├── framecombine.hpp │ ├── framedup.hpp │ ├── frameshape.hpp │ ├── palette.hpp │ ├── palette_A.hpp │ ├── palette_C.hpp │ ├── permute.hpp │ ├── transform.hpp │ ├── yc1c2.hpp │ └── ycocg.hpp └── viewflif.c ├── testFiles └── sig05-014.png └── tools ├── 2_webp_ll.png ├── apng2flif ├── bouncing_ball_frames ├── bouncing-ball-frame01.png ├── bouncing-ball-frame02.png ├── bouncing-ball-frame03.png ├── bouncing-ball-frame04.png ├── bouncing-ball-frame05.png ├── bouncing-ball-frame06.png ├── bouncing-ball-frame07.png ├── bouncing-ball-frame08.png ├── bouncing-ball-frame09.png ├── bouncing-ball-frame10.png ├── bouncing-ball-frame11.png ├── bouncing-ball-frame12.png ├── bouncing-ball-frame13.png ├── bouncing-ball-frame14.png ├── bouncing-ball-frame15.png ├── bouncing-ball-frame16.png ├── bouncing-ball-frame17.png ├── bouncing-ball-frame18.png ├── bouncing-ball-frame19.png └── bouncing-ball-frame20.png ├── build-libpng.sh ├── endless_war.gif ├── gif2flif ├── kodim01.png ├── sizes.sh ├── test-lossy.sh ├── test-metadata.sh ├── test-roundtrip.sh ├── test-roundtrip_anim.sh ├── test-roundtrip_anim_framedir.sh └── test.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FLIF-CLA-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/FLIF-CLA-template.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_Apache2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/LICENSE_Apache2 -------------------------------------------------------------------------------- /LICENSE_GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/LICENSE_GPL -------------------------------------------------------------------------------- /LICENSE_LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/LICENSE_LGPL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/README.md -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/configure.py -------------------------------------------------------------------------------- /doc/flif.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/doc/flif.1 -------------------------------------------------------------------------------- /doc/flif.bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/doc/flif.bash-completion -------------------------------------------------------------------------------- /doc/flif.magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/doc/flif.magic -------------------------------------------------------------------------------- /doc/flif.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/doc/flif.pdf -------------------------------------------------------------------------------- /doc/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/doc/metadata -------------------------------------------------------------------------------- /doc/produce_documentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/doc/produce_documentation -------------------------------------------------------------------------------- /extern/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/extern/lodepng.cpp -------------------------------------------------------------------------------- /extern/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/extern/lodepng.h -------------------------------------------------------------------------------- /extern/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/extern/stb_image.h -------------------------------------------------------------------------------- /extern/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/extern/stb_image_write.h -------------------------------------------------------------------------------- /raw-tools/raw2flif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/raw-tools/raw2flif -------------------------------------------------------------------------------- /raw-tools/raw2rggb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/raw-tools/raw2rggb -------------------------------------------------------------------------------- /raw-tools/raw2rggb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/raw-tools/raw2rggb.bat -------------------------------------------------------------------------------- /raw-tools/sony_arw/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/raw-tools/sony_arw/README -------------------------------------------------------------------------------- /raw-tools/sony_arw/arw_compress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/raw-tools/sony_arw/arw_compress.sh -------------------------------------------------------------------------------- /raw-tools/sony_arw/arw_decompress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/raw-tools/sony_arw/arw_decompress.sh -------------------------------------------------------------------------------- /raw-tools/sony_arw/arw_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/raw-tools/sony_arw/arw_encode.c -------------------------------------------------------------------------------- /raw-tools/sony_arw/dcraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/raw-tools/sony_arw/dcraw.c -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/common.cpp -------------------------------------------------------------------------------- /src/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/common.hpp -------------------------------------------------------------------------------- /src/compiler-specific.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/compiler-specific.hpp -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/config.h -------------------------------------------------------------------------------- /src/fileio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/fileio.hpp -------------------------------------------------------------------------------- /src/flif-dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/flif-dec.cpp -------------------------------------------------------------------------------- /src/flif-dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/flif-dec.hpp -------------------------------------------------------------------------------- /src/flif-enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/flif-enc.cpp -------------------------------------------------------------------------------- /src/flif-enc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/flif-enc.hpp -------------------------------------------------------------------------------- /src/flif-mime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/flif-mime.xml -------------------------------------------------------------------------------- /src/flif-pixbuf-loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/flif-pixbuf-loader.c -------------------------------------------------------------------------------- /src/flif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/flif.cpp -------------------------------------------------------------------------------- /src/flif_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/flif_config.h -------------------------------------------------------------------------------- /src/image/color_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/color_range.cpp -------------------------------------------------------------------------------- /src/image/color_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/color_range.hpp -------------------------------------------------------------------------------- /src/image/crc32k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/crc32k.cpp -------------------------------------------------------------------------------- /src/image/crc32k.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/crc32k.hpp -------------------------------------------------------------------------------- /src/image/image-metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image-metadata.cpp -------------------------------------------------------------------------------- /src/image/image-metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image-metadata.hpp -------------------------------------------------------------------------------- /src/image/image-pam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image-pam.cpp -------------------------------------------------------------------------------- /src/image/image-pam.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image-pam.hpp -------------------------------------------------------------------------------- /src/image/image-png-metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image-png-metadata.hpp -------------------------------------------------------------------------------- /src/image/image-png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image-png.cpp -------------------------------------------------------------------------------- /src/image/image-png.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image-png.hpp -------------------------------------------------------------------------------- /src/image/image-pnm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image-pnm.cpp -------------------------------------------------------------------------------- /src/image/image-pnm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image-pnm.hpp -------------------------------------------------------------------------------- /src/image/image-rggb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image-rggb.cpp -------------------------------------------------------------------------------- /src/image/image-rggb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image-rggb.hpp -------------------------------------------------------------------------------- /src/image/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image.cpp -------------------------------------------------------------------------------- /src/image/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/image/image.hpp -------------------------------------------------------------------------------- /src/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/io.cpp -------------------------------------------------------------------------------- /src/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/io.hpp -------------------------------------------------------------------------------- /src/library/flif-interface-private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/library/flif-interface-private.hpp -------------------------------------------------------------------------------- /src/library/flif-interface-private_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/library/flif-interface-private_common.hpp -------------------------------------------------------------------------------- /src/library/flif-interface-private_dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/library/flif-interface-private_dec.hpp -------------------------------------------------------------------------------- /src/library/flif-interface-private_enc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/library/flif-interface-private_enc.hpp -------------------------------------------------------------------------------- /src/library/flif-interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/library/flif-interface.cpp -------------------------------------------------------------------------------- /src/library/flif-interface_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/library/flif-interface_common.cpp -------------------------------------------------------------------------------- /src/library/flif-interface_dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/library/flif-interface_dec.cpp -------------------------------------------------------------------------------- /src/library/flif-interface_enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/library/flif-interface_enc.cpp -------------------------------------------------------------------------------- /src/library/flif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/library/flif.h -------------------------------------------------------------------------------- /src/library/flif_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/library/flif_common.h -------------------------------------------------------------------------------- /src/library/flif_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/library/flif_dec.h -------------------------------------------------------------------------------- /src/library/flif_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/library/flif_enc.h -------------------------------------------------------------------------------- /src/maniac/bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/maniac/bit.cpp -------------------------------------------------------------------------------- /src/maniac/bit.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #ifdef _MSC_VER 3 | 4 | int __builtin_clz(unsigned int value); 5 | 6 | #endif -------------------------------------------------------------------------------- /src/maniac/chance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/maniac/chance.cpp -------------------------------------------------------------------------------- /src/maniac/chance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/maniac/chance.hpp -------------------------------------------------------------------------------- /src/maniac/compound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/maniac/compound.hpp -------------------------------------------------------------------------------- /src/maniac/compound_enc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/maniac/compound_enc.hpp -------------------------------------------------------------------------------- /src/maniac/rac.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/maniac/rac.hpp -------------------------------------------------------------------------------- /src/maniac/rac_enc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/maniac/rac_enc.hpp -------------------------------------------------------------------------------- /src/maniac/symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/maniac/symbol.cpp -------------------------------------------------------------------------------- /src/maniac/symbol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/maniac/symbol.hpp -------------------------------------------------------------------------------- /src/maniac/symbol_enc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/maniac/symbol_enc.hpp -------------------------------------------------------------------------------- /src/maniac/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/maniac/util.hpp -------------------------------------------------------------------------------- /src/transform/bounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/bounds.hpp -------------------------------------------------------------------------------- /src/transform/colorbuckets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/colorbuckets.hpp -------------------------------------------------------------------------------- /src/transform/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/factory.cpp -------------------------------------------------------------------------------- /src/transform/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/factory.hpp -------------------------------------------------------------------------------- /src/transform/framecombine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/framecombine.hpp -------------------------------------------------------------------------------- /src/transform/framedup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/framedup.hpp -------------------------------------------------------------------------------- /src/transform/frameshape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/frameshape.hpp -------------------------------------------------------------------------------- /src/transform/palette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/palette.hpp -------------------------------------------------------------------------------- /src/transform/palette_A.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/palette_A.hpp -------------------------------------------------------------------------------- /src/transform/palette_C.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/palette_C.hpp -------------------------------------------------------------------------------- /src/transform/permute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/permute.hpp -------------------------------------------------------------------------------- /src/transform/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/transform.hpp -------------------------------------------------------------------------------- /src/transform/yc1c2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/yc1c2.hpp -------------------------------------------------------------------------------- /src/transform/ycocg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/transform/ycocg.hpp -------------------------------------------------------------------------------- /src/viewflif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/src/viewflif.c -------------------------------------------------------------------------------- /testFiles/sig05-014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/testFiles/sig05-014.png -------------------------------------------------------------------------------- /tools/2_webp_ll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/2_webp_ll.png -------------------------------------------------------------------------------- /tools/apng2flif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/apng2flif -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame01.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame02.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame03.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame04.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame05.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame06.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame07.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame08.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame09.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame10.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame11.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame12.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame13.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame14.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame15.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame16.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame17.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame18.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame19.png -------------------------------------------------------------------------------- /tools/bouncing_ball_frames/bouncing-ball-frame20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/bouncing_ball_frames/bouncing-ball-frame20.png -------------------------------------------------------------------------------- /tools/build-libpng.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/build-libpng.sh -------------------------------------------------------------------------------- /tools/endless_war.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/endless_war.gif -------------------------------------------------------------------------------- /tools/gif2flif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/gif2flif -------------------------------------------------------------------------------- /tools/kodim01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/kodim01.png -------------------------------------------------------------------------------- /tools/sizes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/sizes.sh -------------------------------------------------------------------------------- /tools/test-lossy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/test-lossy.sh -------------------------------------------------------------------------------- /tools/test-metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/test-metadata.sh -------------------------------------------------------------------------------- /tools/test-roundtrip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/test-roundtrip.sh -------------------------------------------------------------------------------- /tools/test-roundtrip_anim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/test-roundtrip_anim.sh -------------------------------------------------------------------------------- /tools/test-roundtrip_anim_framedir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/test-roundtrip_anim_framedir.sh -------------------------------------------------------------------------------- /tools/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FLIF-hub/FLIF/HEAD/tools/test.c --------------------------------------------------------------------------------