├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bench ├── README.md ├── bench.go ├── benchmark.gnuplot ├── benchmark_result.png ├── benchmark_result_chai2010_webp.txt ├── benchmark_result_chai2010_webp_cbuf.txt ├── benchmark_result_x_image_webp.txt ├── benchmark_test.go ├── gen.go └── z_benchmark_test.go ├── bench_test.go ├── capi.c ├── capi.go ├── cgo.go ├── doc.go ├── fuzz └── webp_fuzz.go ├── gen.go ├── gen_helper.go ├── go.mod ├── go.sum ├── hello.go ├── image.go ├── image_color.go ├── image_example_test.go ├── image_pix_slice.go ├── internal ├── include │ └── webp.h ├── libwebp-1.4.0 │ ├── .cmake-format.py │ ├── .pylintrc │ ├── .style.yapf │ ├── AUTHORS │ ├── Android.mk │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── ChangeLog │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.vc │ ├── NEWS │ ├── PATENTS │ ├── PRESUBMIT.py │ ├── README.md │ ├── _swig │ │ ├── README.md │ │ ├── libwebp.go │ │ ├── libwebp.jar │ │ ├── libwebp.py │ │ ├── libwebp.swig │ │ ├── libwebp_gc.c │ │ ├── libwebp_go_wrap.c │ │ ├── libwebp_java_wrap.c │ │ ├── libwebp_python_wrap.c │ │ └── setup.py │ ├── aclocal.m4 │ ├── ar-lib │ ├── autogen.sh │ ├── build.gradle │ ├── cmake │ │ ├── WebPConfig.cmake.in │ │ ├── config.h.in │ │ ├── cpu.cmake │ │ └── deps.cmake │ ├── codereview.settings │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── doc │ │ ├── api.md │ │ ├── building.md │ │ ├── specs_generation.md │ │ ├── template.html │ │ ├── tools.md │ │ ├── webp-container-spec.txt │ │ └── webp-lossless-bitstream-spec.txt │ ├── examples │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── anim_diff.c │ │ ├── anim_dump.c │ │ ├── anim_util.c │ │ ├── anim_util.h │ │ ├── cwebp.c │ │ ├── dwebp.c │ │ ├── example_util.c │ │ ├── example_util.h │ │ ├── gif2webp.c │ │ ├── gifdec.c │ │ ├── gifdec.h │ │ ├── img2webp.c │ │ ├── stopwatch.h │ │ ├── test.webp │ │ ├── test_ref.ppm │ │ ├── unicode.h │ │ ├── unicode_gif.h │ │ ├── vwebp.c │ │ ├── webpinfo.c │ │ └── webpmux.c │ ├── extras │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── extras.c │ │ ├── extras.h │ │ ├── get_disto.c │ │ ├── quality_estimate.c │ │ ├── sharpyuv_risk_table.c │ │ ├── sharpyuv_risk_table.h │ │ ├── vwebp_sdl.c │ │ ├── webp_quality.c │ │ ├── webp_to_sdl.c │ │ └── webp_to_sdl.h │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── imageio │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── image_dec.c │ │ ├── image_dec.h │ │ ├── image_enc.c │ │ ├── image_enc.h │ │ ├── imageio_util.c │ │ ├── imageio_util.h │ │ ├── jpegdec.c │ │ ├── jpegdec.h │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── pngdec.c │ │ ├── pngdec.h │ │ ├── pnmdec.c │ │ ├── pnmdec.h │ │ ├── tiffdec.c │ │ ├── tiffdec.h │ │ ├── webpdec.c │ │ ├── webpdec.h │ │ ├── wicdec.c │ │ └── wicdec.h │ ├── infra │ │ ├── common.sh │ │ ├── compile.sh │ │ ├── compile_android.sh │ │ ├── compile_js.sh │ │ └── run_static_analysis.sh │ ├── install-sh │ ├── iosbuild.sh │ ├── ltmain.sh │ ├── m4 │ │ ├── ax_pthread.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── makefile.unix │ ├── man │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── cwebp.1 │ │ ├── dwebp.1 │ │ ├── gif2webp.1 │ │ ├── img2webp.1 │ │ ├── vwebp.1 │ │ ├── webpinfo.1 │ │ └── webpmux.1 │ ├── missing │ ├── sharpyuv │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── libsharpyuv.pc.in │ │ ├── libsharpyuv.rc │ │ ├── sharpyuv.c │ │ ├── sharpyuv.h │ │ ├── sharpyuv_cpu.c │ │ ├── sharpyuv_cpu.h │ │ ├── sharpyuv_csp.c │ │ ├── sharpyuv_csp.h │ │ ├── sharpyuv_dsp.c │ │ ├── sharpyuv_dsp.h │ │ ├── sharpyuv_gamma.c │ │ ├── sharpyuv_gamma.h │ │ ├── sharpyuv_neon.c │ │ └── sharpyuv_sse2.c │ ├── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dec │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── alpha_dec.c │ │ │ ├── alphai_dec.h │ │ │ ├── buffer_dec.c │ │ │ ├── common_dec.h │ │ │ ├── frame_dec.c │ │ │ ├── idec_dec.c │ │ │ ├── io_dec.c │ │ │ ├── quant_dec.c │ │ │ ├── tree_dec.c │ │ │ ├── vp8_dec.c │ │ │ ├── vp8_dec.h │ │ │ ├── vp8i_dec.h │ │ │ ├── vp8l_dec.c │ │ │ ├── vp8li_dec.h │ │ │ ├── webp_dec.c │ │ │ └── webpi_dec.h │ │ ├── demux │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── anim_decode.c │ │ │ ├── demux.c │ │ │ ├── libwebpdemux.pc.in │ │ │ └── libwebpdemux.rc │ │ ├── dsp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── alpha_processing.c │ │ │ ├── alpha_processing_mips_dsp_r2.c │ │ │ ├── alpha_processing_neon.c │ │ │ ├── alpha_processing_sse2.c │ │ │ ├── alpha_processing_sse41.c │ │ │ ├── common_sse2.h │ │ │ ├── common_sse41.h │ │ │ ├── cost.c │ │ │ ├── cost_mips32.c │ │ │ ├── cost_mips_dsp_r2.c │ │ │ ├── cost_neon.c │ │ │ ├── cost_sse2.c │ │ │ ├── cpu.c │ │ │ ├── cpu.h │ │ │ ├── dec.c │ │ │ ├── dec_clip_tables.c │ │ │ ├── dec_mips32.c │ │ │ ├── dec_mips_dsp_r2.c │ │ │ ├── dec_msa.c │ │ │ ├── dec_neon.c │ │ │ ├── dec_sse2.c │ │ │ ├── dec_sse41.c │ │ │ ├── dsp.h │ │ │ ├── enc.c │ │ │ ├── enc_mips32.c │ │ │ ├── enc_mips_dsp_r2.c │ │ │ ├── enc_msa.c │ │ │ ├── enc_neon.c │ │ │ ├── enc_sse2.c │ │ │ ├── enc_sse41.c │ │ │ ├── filters.c │ │ │ ├── filters_mips_dsp_r2.c │ │ │ ├── filters_msa.c │ │ │ ├── filters_neon.c │ │ │ ├── filters_sse2.c │ │ │ ├── lossless.c │ │ │ ├── lossless.h │ │ │ ├── lossless_common.h │ │ │ ├── lossless_enc.c │ │ │ ├── lossless_enc_mips32.c │ │ │ ├── lossless_enc_mips_dsp_r2.c │ │ │ ├── lossless_enc_msa.c │ │ │ ├── lossless_enc_neon.c │ │ │ ├── lossless_enc_sse2.c │ │ │ ├── lossless_enc_sse41.c │ │ │ ├── lossless_mips_dsp_r2.c │ │ │ ├── lossless_msa.c │ │ │ ├── lossless_neon.c │ │ │ ├── lossless_sse2.c │ │ │ ├── lossless_sse41.c │ │ │ ├── mips_macro.h │ │ │ ├── msa_macro.h │ │ │ ├── neon.h │ │ │ ├── quant.h │ │ │ ├── rescaler.c │ │ │ ├── rescaler_mips32.c │ │ │ ├── rescaler_mips_dsp_r2.c │ │ │ ├── rescaler_msa.c │ │ │ ├── rescaler_neon.c │ │ │ ├── rescaler_sse2.c │ │ │ ├── ssim.c │ │ │ ├── ssim_sse2.c │ │ │ ├── upsampling.c │ │ │ ├── upsampling_mips_dsp_r2.c │ │ │ ├── upsampling_msa.c │ │ │ ├── upsampling_neon.c │ │ │ ├── upsampling_sse2.c │ │ │ ├── upsampling_sse41.c │ │ │ ├── yuv.c │ │ │ ├── yuv.h │ │ │ ├── yuv_mips32.c │ │ │ ├── yuv_mips_dsp_r2.c │ │ │ ├── yuv_neon.c │ │ │ ├── yuv_sse2.c │ │ │ └── yuv_sse41.c │ │ ├── enc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── alpha_enc.c │ │ │ ├── analysis_enc.c │ │ │ ├── backward_references_cost_enc.c │ │ │ ├── backward_references_enc.c │ │ │ ├── backward_references_enc.h │ │ │ ├── config_enc.c │ │ │ ├── cost_enc.c │ │ │ ├── cost_enc.h │ │ │ ├── filter_enc.c │ │ │ ├── frame_enc.c │ │ │ ├── histogram_enc.c │ │ │ ├── histogram_enc.h │ │ │ ├── iterator_enc.c │ │ │ ├── near_lossless_enc.c │ │ │ ├── picture_csp_enc.c │ │ │ ├── picture_enc.c │ │ │ ├── picture_psnr_enc.c │ │ │ ├── picture_rescale_enc.c │ │ │ ├── picture_tools_enc.c │ │ │ ├── predictor_enc.c │ │ │ ├── quant_enc.c │ │ │ ├── syntax_enc.c │ │ │ ├── token_enc.c │ │ │ ├── tree_enc.c │ │ │ ├── vp8i_enc.h │ │ │ ├── vp8l_enc.c │ │ │ ├── vp8li_enc.h │ │ │ └── webp_enc.c │ │ ├── libwebp.pc.in │ │ ├── libwebp.rc │ │ ├── libwebpdecoder.pc.in │ │ ├── libwebpdecoder.rc │ │ ├── mux │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── anim_encode.c │ │ │ ├── animi.h │ │ │ ├── libwebpmux.pc.in │ │ │ ├── libwebpmux.rc │ │ │ ├── muxedit.c │ │ │ ├── muxi.h │ │ │ ├── muxinternal.c │ │ │ └── muxread.c │ │ ├── utils │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── bit_reader_inl_utils.h │ │ │ ├── bit_reader_utils.c │ │ │ ├── bit_reader_utils.h │ │ │ ├── bit_writer_utils.c │ │ │ ├── bit_writer_utils.h │ │ │ ├── color_cache_utils.c │ │ │ ├── color_cache_utils.h │ │ │ ├── endian_inl_utils.h │ │ │ ├── filters_utils.c │ │ │ ├── filters_utils.h │ │ │ ├── huffman_encode_utils.c │ │ │ ├── huffman_encode_utils.h │ │ │ ├── huffman_utils.c │ │ │ ├── huffman_utils.h │ │ │ ├── palette.c │ │ │ ├── palette.h │ │ │ ├── quant_levels_dec_utils.c │ │ │ ├── quant_levels_dec_utils.h │ │ │ ├── quant_levels_utils.c │ │ │ ├── quant_levels_utils.h │ │ │ ├── random_utils.c │ │ │ ├── random_utils.h │ │ │ ├── rescaler_utils.c │ │ │ ├── rescaler_utils.h │ │ │ ├── thread_utils.c │ │ │ ├── thread_utils.h │ │ │ ├── utils.c │ │ │ └── utils.h │ │ └── webp │ │ │ ├── config.h.in │ │ │ ├── decode.h │ │ │ ├── demux.h │ │ │ ├── encode.h │ │ │ ├── format_constants.h │ │ │ ├── mux.h │ │ │ ├── mux_types.h │ │ │ └── types.h │ ├── tests │ │ ├── README.md │ │ └── fuzzer │ │ │ ├── advanced_api_fuzzer.c │ │ │ ├── animation_api_fuzzer.c │ │ │ ├── animdecoder_fuzzer.cc │ │ │ ├── animencoder_fuzzer.cc │ │ │ ├── enc_dec_fuzzer.cc │ │ │ ├── fuzz.dict │ │ │ ├── fuzz_utils.h │ │ │ ├── huffman_fuzzer.c │ │ │ ├── img_alpha.h │ │ │ ├── img_grid.h │ │ │ ├── img_peak.h │ │ │ ├── makefile.unix │ │ │ ├── mux_demux_api_fuzzer.c │ │ │ └── simple_api_fuzzer.c │ ├── webp_js │ │ ├── README.md │ │ ├── index.html │ │ ├── index_wasm.html │ │ ├── test_webp_js.webp │ │ └── test_webp_wasm.webp │ └── xcframeworkbuild.sh └── src │ └── webp.c ├── reader.go ├── reader_example_test.go ├── reader_test.go ├── rgb.go ├── rgb48.go ├── testdata ├── 1_webp_a.webp ├── 1_webp_ll.png ├── 1_webp_ll.webp ├── 2_webp_a.webp ├── 2_webp_ll.png ├── 2_webp_ll.webp ├── 3_webp_a.webp ├── 3_webp_ll.png ├── 3_webp_ll.webp ├── 4_webp_a.webp ├── 4_webp_ll.png ├── 4_webp_ll.webp ├── 5_webp_a.webp ├── 5_webp_ll.png ├── 5_webp_ll.webp ├── blue-purple-pink-large.lossless.webp ├── blue-purple-pink-large.no-filter.lossy.webp ├── blue-purple-pink-large.no-filter.lossy.webp.ycbcr.png ├── blue-purple-pink-large.normal-filter.lossy.webp ├── blue-purple-pink-large.normal-filter.lossy.webp.ycbcr.png ├── blue-purple-pink-large.png ├── blue-purple-pink-large.simple-filter.lossy.webp ├── blue-purple-pink-large.simple-filter.lossy.webp.ycbcr.png ├── blue-purple-pink.lossless.webp ├── blue-purple-pink.lossy.webp ├── blue-purple-pink.lossy.webp.ycbcr.png ├── blue-purple-pink.lzwcompressed.tiff ├── blue-purple-pink.png ├── bw-deflate.tiff ├── bw-packbits.tiff ├── bw-uncompressed.tiff ├── gopher-doc.1bpp.lossless.webp ├── gopher-doc.1bpp.png ├── gopher-doc.2bpp.lossless.webp ├── gopher-doc.2bpp.png ├── gopher-doc.4bpp.lossless.webp ├── gopher-doc.4bpp.png ├── gopher-doc.8bpp.lossless.webp ├── gopher-doc.8bpp.png ├── no_compress.tiff ├── no_rps.tiff ├── photo.lossy.webp ├── tux.lossless.webp ├── tux.png ├── video-001-16bit.tiff ├── video-001-gray-16bit.tiff ├── video-001-gray.tiff ├── video-001-paletted.tiff ├── video-001-strip-64.tiff ├── video-001-tile-64x64.tiff ├── video-001-uncompressed.tiff ├── video-001.bmp ├── video-001.lossy.webp ├── video-001.lossy.webp.ycbcr.png ├── video-001.png ├── video-001.tiff ├── video-001.webp ├── yellow_rose-small.bmp ├── yellow_rose-small.png ├── yellow_rose.lossless.webp ├── yellow_rose.lossy-with-alpha.webp ├── yellow_rose.lossy-with-alpha.webp.nycbcra.png ├── yellow_rose.lossy.webp ├── yellow_rose.lossy.webp.ycbcr.png └── yellow_rose.png ├── testing_test.go ├── webp.go ├── webp_decode.go ├── webp_decode_test.go ├── webp_example_test.go ├── webp_test.go ├── writer.go ├── writer_example_test.go ├── writer_test.go ├── z_libwebp_sharpyuv_sharpyuv.c ├── z_libwebp_sharpyuv_sharpyuv_cpu.c ├── z_libwebp_sharpyuv_sharpyuv_csp.c ├── z_libwebp_sharpyuv_sharpyuv_dsp.c ├── z_libwebp_sharpyuv_sharpyuv_gamma.c ├── z_libwebp_sharpyuv_sharpyuv_neon.c ├── z_libwebp_sharpyuv_sharpyuv_sse2.c ├── z_libwebp_src_dec_alpha_dec.c ├── z_libwebp_src_dec_buffer_dec.c ├── z_libwebp_src_dec_frame_dec.c ├── z_libwebp_src_dec_idec_dec.c ├── z_libwebp_src_dec_io_dec.c ├── z_libwebp_src_dec_quant_dec.c ├── z_libwebp_src_dec_tree_dec.c ├── z_libwebp_src_dec_vp8_dec.c ├── z_libwebp_src_dec_vp8l_dec.c ├── z_libwebp_src_dec_webp_dec.c ├── z_libwebp_src_demux_anim_decode.c ├── z_libwebp_src_demux_demux.c ├── z_libwebp_src_dsp_alpha_processing.c ├── z_libwebp_src_dsp_alpha_processing_mips_dsp_r2.c ├── z_libwebp_src_dsp_alpha_processing_neon.c ├── z_libwebp_src_dsp_alpha_processing_sse2.c ├── z_libwebp_src_dsp_alpha_processing_sse41.c ├── z_libwebp_src_dsp_cost.c ├── z_libwebp_src_dsp_cost_mips32.c ├── z_libwebp_src_dsp_cost_mips_dsp_r2.c ├── z_libwebp_src_dsp_cost_neon.c ├── z_libwebp_src_dsp_cost_sse2.c ├── z_libwebp_src_dsp_cpu.c ├── z_libwebp_src_dsp_dec.c ├── z_libwebp_src_dsp_dec_clip_tables.c ├── z_libwebp_src_dsp_dec_mips32.c ├── z_libwebp_src_dsp_dec_mips_dsp_r2.c ├── z_libwebp_src_dsp_dec_msa.c ├── z_libwebp_src_dsp_dec_neon.c ├── z_libwebp_src_dsp_dec_sse2.c ├── z_libwebp_src_dsp_dec_sse41.c ├── z_libwebp_src_dsp_enc.c ├── z_libwebp_src_dsp_enc_mips32.c ├── z_libwebp_src_dsp_enc_mips_dsp_r2.c ├── z_libwebp_src_dsp_enc_msa.c ├── z_libwebp_src_dsp_enc_neon.c ├── z_libwebp_src_dsp_enc_sse2.c ├── z_libwebp_src_dsp_enc_sse41.c ├── z_libwebp_src_dsp_filters.c ├── z_libwebp_src_dsp_filters_mips_dsp_r2.c ├── z_libwebp_src_dsp_filters_msa.c ├── z_libwebp_src_dsp_filters_neon.c ├── z_libwebp_src_dsp_filters_sse2.c ├── z_libwebp_src_dsp_lossless.c ├── z_libwebp_src_dsp_lossless_enc.c ├── z_libwebp_src_dsp_lossless_enc_mips32.c ├── z_libwebp_src_dsp_lossless_enc_mips_dsp_r2.c ├── z_libwebp_src_dsp_lossless_enc_msa.c ├── z_libwebp_src_dsp_lossless_enc_neon.c ├── z_libwebp_src_dsp_lossless_enc_sse2.c ├── z_libwebp_src_dsp_lossless_enc_sse41.c ├── z_libwebp_src_dsp_lossless_mips_dsp_r2.c ├── z_libwebp_src_dsp_lossless_msa.c ├── z_libwebp_src_dsp_lossless_neon.c ├── z_libwebp_src_dsp_lossless_sse2.c ├── z_libwebp_src_dsp_lossless_sse41.c ├── z_libwebp_src_dsp_rescaler.c ├── z_libwebp_src_dsp_rescaler_mips32.c ├── z_libwebp_src_dsp_rescaler_mips_dsp_r2.c ├── z_libwebp_src_dsp_rescaler_msa.c ├── z_libwebp_src_dsp_rescaler_neon.c ├── z_libwebp_src_dsp_rescaler_sse2.c ├── z_libwebp_src_dsp_ssim.c ├── z_libwebp_src_dsp_ssim_sse2.c ├── z_libwebp_src_dsp_upsampling.c ├── z_libwebp_src_dsp_upsampling_mips_dsp_r2.c ├── z_libwebp_src_dsp_upsampling_msa.c ├── z_libwebp_src_dsp_upsampling_neon.c ├── z_libwebp_src_dsp_upsampling_sse2.c ├── z_libwebp_src_dsp_upsampling_sse41.c ├── z_libwebp_src_dsp_yuv.c ├── z_libwebp_src_dsp_yuv_mips32.c ├── z_libwebp_src_dsp_yuv_mips_dsp_r2.c ├── z_libwebp_src_dsp_yuv_neon.c ├── z_libwebp_src_dsp_yuv_sse2.c ├── z_libwebp_src_dsp_yuv_sse41.c ├── z_libwebp_src_enc_alpha_enc.c ├── z_libwebp_src_enc_analysis_enc.c ├── z_libwebp_src_enc_backward_references_cost_enc.c ├── z_libwebp_src_enc_backward_references_enc.c ├── z_libwebp_src_enc_config_enc.c ├── z_libwebp_src_enc_cost_enc.c ├── z_libwebp_src_enc_filter_enc.c ├── z_libwebp_src_enc_frame_enc.c ├── z_libwebp_src_enc_histogram_enc.c ├── z_libwebp_src_enc_iterator_enc.c ├── z_libwebp_src_enc_near_lossless_enc.c ├── z_libwebp_src_enc_picture_csp_enc.c ├── z_libwebp_src_enc_picture_enc.c ├── z_libwebp_src_enc_picture_psnr_enc.c ├── z_libwebp_src_enc_picture_rescale_enc.c ├── z_libwebp_src_enc_picture_tools_enc.c ├── z_libwebp_src_enc_predictor_enc.c ├── z_libwebp_src_enc_quant_enc.c ├── z_libwebp_src_enc_syntax_enc.c ├── z_libwebp_src_enc_token_enc.c ├── z_libwebp_src_enc_tree_enc.c ├── z_libwebp_src_enc_vp8l_enc.c ├── z_libwebp_src_enc_webp_enc.c ├── z_libwebp_src_mux_anim_encode.c ├── z_libwebp_src_mux_muxedit.c ├── z_libwebp_src_mux_muxinternal.c ├── z_libwebp_src_mux_muxread.c ├── z_libwebp_src_utils_bit_reader_utils.c ├── z_libwebp_src_utils_bit_writer_utils.c ├── z_libwebp_src_utils_color_cache_utils.c ├── z_libwebp_src_utils_filters_utils.c ├── z_libwebp_src_utils_huffman_encode_utils.c ├── z_libwebp_src_utils_huffman_utils.c ├── z_libwebp_src_utils_palette.c ├── z_libwebp_src_utils_quant_levels_dec_utils.c ├── z_libwebp_src_utils_quant_levels_utils.c ├── z_libwebp_src_utils_random_utils.c ├── z_libwebp_src_utils_rescaler_utils.c ├── z_libwebp_src_utils_thread_utils.c └── z_libwebp_src_utils_utils.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /output.webp 2 | .idea 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/README.md -------------------------------------------------------------------------------- /bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/bench/README.md -------------------------------------------------------------------------------- /bench/bench.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/bench/bench.go -------------------------------------------------------------------------------- /bench/benchmark.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/bench/benchmark.gnuplot -------------------------------------------------------------------------------- /bench/benchmark_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/bench/benchmark_result.png -------------------------------------------------------------------------------- /bench/benchmark_result_chai2010_webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/bench/benchmark_result_chai2010_webp.txt -------------------------------------------------------------------------------- /bench/benchmark_result_chai2010_webp_cbuf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/bench/benchmark_result_chai2010_webp_cbuf.txt -------------------------------------------------------------------------------- /bench/benchmark_result_x_image_webp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/bench/benchmark_result_x_image_webp.txt -------------------------------------------------------------------------------- /bench/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/bench/benchmark_test.go -------------------------------------------------------------------------------- /bench/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/bench/gen.go -------------------------------------------------------------------------------- /bench/z_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/bench/z_benchmark_test.go -------------------------------------------------------------------------------- /bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/bench_test.go -------------------------------------------------------------------------------- /capi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/capi.c -------------------------------------------------------------------------------- /capi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/capi.go -------------------------------------------------------------------------------- /cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/cgo.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/doc.go -------------------------------------------------------------------------------- /fuzz/webp_fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/fuzz/webp_fuzz.go -------------------------------------------------------------------------------- /gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/gen.go -------------------------------------------------------------------------------- /gen_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/gen_helper.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/go.sum -------------------------------------------------------------------------------- /hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/hello.go -------------------------------------------------------------------------------- /image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/image.go -------------------------------------------------------------------------------- /image_color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/image_color.go -------------------------------------------------------------------------------- /image_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/image_example_test.go -------------------------------------------------------------------------------- /image_pix_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/image_pix_slice.go -------------------------------------------------------------------------------- /internal/include/webp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/include/webp.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/.cmake-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/.cmake-format.py -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/.pylintrc -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/.style.yapf -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/AUTHORS -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/Android.mk -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/CMakeLists.txt -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/COPYING -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/ChangeLog -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/Makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/Makefile.vc -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/NEWS -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/PATENTS -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/PRESUBMIT.py -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/README.md -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/_swig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/_swig/README.md -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/_swig/libwebp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/_swig/libwebp.go -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/_swig/libwebp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/_swig/libwebp.jar -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/_swig/libwebp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/_swig/libwebp.py -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/_swig/libwebp.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/_swig/libwebp.swig -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/_swig/libwebp_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/_swig/libwebp_gc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/_swig/libwebp_go_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/_swig/libwebp_go_wrap.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/_swig/libwebp_java_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/_swig/libwebp_java_wrap.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/_swig/libwebp_python_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/_swig/libwebp_python_wrap.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/_swig/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/_swig/setup.py -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/aclocal.m4 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/ar-lib -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/autogen.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh -e 2 | exec autoreconf -fi 3 | -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/build.gradle -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/cmake/WebPConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/cmake/WebPConfig.cmake.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/cmake/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/cmake/config.h.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/cmake/cpu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/cmake/cpu.cmake -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/cmake/deps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/cmake/deps.cmake -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/codereview.settings -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/compile -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/config.guess -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/config.sub -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/configure -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/configure.ac -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/depcomp -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/doc/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/doc/api.md -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/doc/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/doc/building.md -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/doc/specs_generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/doc/specs_generation.md -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/doc/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/doc/template.html -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/doc/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/doc/tools.md -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/doc/webp-container-spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/doc/webp-container-spec.txt -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/doc/webp-lossless-bitstream-spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/doc/webp-lossless-bitstream-spec.txt -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/Android.mk -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/anim_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/anim_diff.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/anim_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/anim_dump.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/anim_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/anim_util.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/anim_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/anim_util.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/cwebp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/cwebp.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/dwebp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/dwebp.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/example_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/example_util.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/example_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/example_util.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/gif2webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/gif2webp.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/gifdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/gifdec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/gifdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/gifdec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/img2webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/img2webp.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/stopwatch.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/test.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/test.webp -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/test_ref.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/test_ref.ppm -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/unicode.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/unicode_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/unicode_gif.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/vwebp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/vwebp.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/webpinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/webpinfo.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/examples/webpmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/examples/webpmux.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/extras/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/extras/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/extras/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/extras/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/extras/extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/extras/extras.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/extras/extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/extras/extras.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/extras/get_disto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/extras/get_disto.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/extras/quality_estimate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/extras/quality_estimate.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/extras/sharpyuv_risk_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/extras/sharpyuv_risk_table.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/extras/sharpyuv_risk_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/extras/sharpyuv_risk_table.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/extras/vwebp_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/extras/vwebp_sdl.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/extras/webp_quality.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/extras/webp_quality.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/extras/webp_to_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/extras/webp_to_sdl.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/extras/webp_to_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/extras/webp_to_sdl.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/gradle.properties -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/gradlew -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/gradlew.bat -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/Android.mk -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/image_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/image_dec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/image_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/image_dec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/image_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/image_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/image_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/image_enc.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/imageio_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/imageio_util.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/imageio_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/imageio_util.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/jpegdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/jpegdec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/jpegdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/jpegdec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/metadata.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/metadata.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/pngdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/pngdec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/pngdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/pngdec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/pnmdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/pnmdec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/pnmdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/pnmdec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/tiffdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/tiffdec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/tiffdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/tiffdec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/webpdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/webpdec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/webpdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/webpdec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/wicdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/wicdec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/imageio/wicdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/imageio/wicdec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/infra/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/infra/common.sh -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/infra/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/infra/compile.sh -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/infra/compile_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/infra/compile_android.sh -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/infra/compile_js.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/infra/compile_js.sh -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/infra/run_static_analysis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/infra/run_static_analysis.sh -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/install-sh -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/iosbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/iosbuild.sh -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/ltmain.sh -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/m4/libtool.m4 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/m4/ltoptions.m4 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/m4/ltsugar.m4 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/m4/ltversion.m4 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/makefile.unix -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/man/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/man/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/man/cwebp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/man/cwebp.1 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/man/dwebp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/man/dwebp.1 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/man/gif2webp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/man/gif2webp.1 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/man/img2webp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/man/img2webp.1 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/man/vwebp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/man/vwebp.1 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/man/webpinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/man/webpinfo.1 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/man/webpmux.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/man/webpmux.1 -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/missing -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/libsharpyuv.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/libsharpyuv.pc.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/libsharpyuv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/libsharpyuv.rc -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/sharpyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/sharpyuv.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/sharpyuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/sharpyuv.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/sharpyuv_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/sharpyuv_cpu.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/sharpyuv_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/sharpyuv_cpu.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/sharpyuv_csp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/sharpyuv_csp.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/sharpyuv_csp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/sharpyuv_csp.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/sharpyuv_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/sharpyuv_dsp.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/sharpyuv_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/sharpyuv_dsp.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/sharpyuv_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/sharpyuv_gamma.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/sharpyuv_gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/sharpyuv_gamma.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/sharpyuv_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/sharpyuv_neon.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/sharpyuv/sharpyuv_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/sharpyuv/sharpyuv_sse2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/alpha_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/alpha_dec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/alphai_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/alphai_dec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/buffer_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/buffer_dec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/common_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/common_dec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/frame_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/frame_dec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/idec_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/idec_dec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/io_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/io_dec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/quant_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/quant_dec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/tree_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/tree_dec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/vp8_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/vp8_dec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/vp8_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/vp8_dec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/vp8i_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/vp8i_dec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/vp8l_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/vp8l_dec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/vp8li_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/vp8li_dec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/webp_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/webp_dec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dec/webpi_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dec/webpi_dec.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/demux/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/demux/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/demux/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/demux/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/demux/anim_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/demux/anim_decode.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/demux/demux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/demux/demux.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/demux/libwebpdemux.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/demux/libwebpdemux.pc.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/demux/libwebpdemux.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/demux/libwebpdemux.rc -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/alpha_processing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/alpha_processing.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/alpha_processing_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/alpha_processing_mips_dsp_r2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/alpha_processing_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/alpha_processing_neon.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/alpha_processing_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/alpha_processing_sse2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/alpha_processing_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/alpha_processing_sse41.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/common_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/common_sse2.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/common_sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/common_sse41.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/cost.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/cost_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/cost_mips32.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/cost_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/cost_mips_dsp_r2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/cost_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/cost_neon.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/cost_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/cost_sse2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/cpu.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/cpu.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/dec.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/dec_clip_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/dec_clip_tables.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/dec_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/dec_mips32.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/dec_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/dec_mips_dsp_r2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/dec_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/dec_msa.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/dec_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/dec_neon.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/dec_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/dec_sse2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/dec_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/dec_sse41.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/dsp.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/enc_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/enc_mips32.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/enc_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/enc_mips_dsp_r2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/enc_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/enc_msa.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/enc_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/enc_neon.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/enc_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/enc_sse2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/enc_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/enc_sse41.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/filters.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/filters_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/filters_mips_dsp_r2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/filters_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/filters_msa.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/filters_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/filters_neon.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/filters_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/filters_sse2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_common.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_enc_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_enc_mips32.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_enc_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_enc_mips_dsp_r2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_enc_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_enc_msa.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_enc_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_enc_neon.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_enc_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_enc_sse2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_enc_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_enc_sse41.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_mips_dsp_r2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_msa.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_neon.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_sse2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/lossless_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/lossless_sse41.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/mips_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/mips_macro.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/msa_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/msa_macro.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/neon.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/quant.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/rescaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/rescaler.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/rescaler_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/rescaler_mips32.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/rescaler_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/rescaler_mips_dsp_r2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/rescaler_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/rescaler_msa.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/rescaler_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/rescaler_neon.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/rescaler_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/rescaler_sse2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/ssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/ssim.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/ssim_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/ssim_sse2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/upsampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/upsampling.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/upsampling_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/upsampling_mips_dsp_r2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/upsampling_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/upsampling_msa.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/upsampling_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/upsampling_neon.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/upsampling_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/upsampling_sse2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/upsampling_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/upsampling_sse41.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/yuv.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/yuv.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/yuv_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/yuv_mips32.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/yuv_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/yuv_mips_dsp_r2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/yuv_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/yuv_neon.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/yuv_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/yuv_sse2.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/dsp/yuv_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/dsp/yuv_sse41.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/alpha_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/alpha_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/analysis_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/analysis_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/backward_references_cost_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/backward_references_cost_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/backward_references_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/backward_references_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/backward_references_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/backward_references_enc.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/config_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/config_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/cost_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/cost_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/cost_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/cost_enc.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/filter_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/filter_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/frame_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/frame_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/histogram_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/histogram_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/histogram_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/histogram_enc.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/iterator_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/iterator_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/near_lossless_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/near_lossless_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/picture_csp_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/picture_csp_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/picture_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/picture_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/picture_psnr_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/picture_psnr_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/picture_rescale_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/picture_rescale_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/picture_tools_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/picture_tools_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/predictor_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/predictor_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/quant_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/quant_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/syntax_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/syntax_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/token_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/token_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/tree_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/tree_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/vp8i_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/vp8i_enc.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/vp8l_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/vp8l_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/vp8li_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/vp8li_enc.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/enc/webp_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/enc/webp_enc.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/libwebp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/libwebp.pc.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/libwebp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/libwebp.rc -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/libwebpdecoder.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/libwebpdecoder.pc.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/libwebpdecoder.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/libwebpdecoder.rc -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/mux/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/mux/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/mux/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/mux/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/mux/anim_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/mux/anim_encode.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/mux/animi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/mux/animi.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/mux/libwebpmux.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/mux/libwebpmux.pc.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/mux/libwebpmux.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/mux/libwebpmux.rc -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/mux/muxedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/mux/muxedit.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/mux/muxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/mux/muxi.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/mux/muxinternal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/mux/muxinternal.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/mux/muxread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/mux/muxread.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/Makefile.am -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/Makefile.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/bit_reader_inl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/bit_reader_inl_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/bit_reader_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/bit_reader_utils.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/bit_reader_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/bit_reader_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/bit_writer_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/bit_writer_utils.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/bit_writer_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/bit_writer_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/color_cache_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/color_cache_utils.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/color_cache_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/color_cache_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/endian_inl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/endian_inl_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/filters_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/filters_utils.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/filters_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/filters_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/huffman_encode_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/huffman_encode_utils.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/huffman_encode_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/huffman_encode_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/huffman_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/huffman_utils.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/huffman_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/huffman_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/palette.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/palette.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/quant_levels_dec_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/quant_levels_dec_utils.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/quant_levels_dec_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/quant_levels_dec_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/quant_levels_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/quant_levels_utils.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/quant_levels_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/quant_levels_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/random_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/random_utils.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/random_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/random_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/rescaler_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/rescaler_utils.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/rescaler_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/rescaler_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/thread_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/thread_utils.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/thread_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/thread_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/utils.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/utils/utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/webp/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/webp/config.h.in -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/webp/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/webp/decode.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/webp/demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/webp/demux.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/webp/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/webp/encode.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/webp/format_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/webp/format_constants.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/webp/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/webp/mux.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/webp/mux_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/webp/mux_types.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/src/webp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/src/webp/types.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/README.md -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/advanced_api_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/advanced_api_fuzzer.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/animation_api_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/animation_api_fuzzer.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/animdecoder_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/animdecoder_fuzzer.cc -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/animencoder_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/animencoder_fuzzer.cc -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/enc_dec_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/enc_dec_fuzzer.cc -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/fuzz.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/fuzz.dict -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/fuzz_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/fuzz_utils.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/huffman_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/huffman_fuzzer.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/img_alpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/img_alpha.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/img_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/img_grid.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/img_peak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/img_peak.h -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/makefile.unix -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/mux_demux_api_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/mux_demux_api_fuzzer.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/tests/fuzzer/simple_api_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/tests/fuzzer/simple_api_fuzzer.c -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/webp_js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/webp_js/README.md -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/webp_js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/webp_js/index.html -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/webp_js/index_wasm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/webp_js/index_wasm.html -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/webp_js/test_webp_js.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/webp_js/test_webp_js.webp -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/webp_js/test_webp_wasm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/webp_js/test_webp_wasm.webp -------------------------------------------------------------------------------- /internal/libwebp-1.4.0/xcframeworkbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/libwebp-1.4.0/xcframeworkbuild.sh -------------------------------------------------------------------------------- /internal/src/webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/internal/src/webp.c -------------------------------------------------------------------------------- /reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/reader.go -------------------------------------------------------------------------------- /reader_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/reader_example_test.go -------------------------------------------------------------------------------- /reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/reader_test.go -------------------------------------------------------------------------------- /rgb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/rgb.go -------------------------------------------------------------------------------- /rgb48.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/rgb48.go -------------------------------------------------------------------------------- /testdata/1_webp_a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/1_webp_a.webp -------------------------------------------------------------------------------- /testdata/1_webp_ll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/1_webp_ll.png -------------------------------------------------------------------------------- /testdata/1_webp_ll.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/1_webp_ll.webp -------------------------------------------------------------------------------- /testdata/2_webp_a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/2_webp_a.webp -------------------------------------------------------------------------------- /testdata/2_webp_ll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/2_webp_ll.png -------------------------------------------------------------------------------- /testdata/2_webp_ll.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/2_webp_ll.webp -------------------------------------------------------------------------------- /testdata/3_webp_a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/3_webp_a.webp -------------------------------------------------------------------------------- /testdata/3_webp_ll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/3_webp_ll.png -------------------------------------------------------------------------------- /testdata/3_webp_ll.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/3_webp_ll.webp -------------------------------------------------------------------------------- /testdata/4_webp_a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/4_webp_a.webp -------------------------------------------------------------------------------- /testdata/4_webp_ll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/4_webp_ll.png -------------------------------------------------------------------------------- /testdata/4_webp_ll.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/4_webp_ll.webp -------------------------------------------------------------------------------- /testdata/5_webp_a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/5_webp_a.webp -------------------------------------------------------------------------------- /testdata/5_webp_ll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/5_webp_ll.png -------------------------------------------------------------------------------- /testdata/5_webp_ll.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/5_webp_ll.webp -------------------------------------------------------------------------------- /testdata/blue-purple-pink-large.lossless.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink-large.lossless.webp -------------------------------------------------------------------------------- /testdata/blue-purple-pink-large.no-filter.lossy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink-large.no-filter.lossy.webp -------------------------------------------------------------------------------- /testdata/blue-purple-pink-large.no-filter.lossy.webp.ycbcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink-large.no-filter.lossy.webp.ycbcr.png -------------------------------------------------------------------------------- /testdata/blue-purple-pink-large.normal-filter.lossy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink-large.normal-filter.lossy.webp -------------------------------------------------------------------------------- /testdata/blue-purple-pink-large.normal-filter.lossy.webp.ycbcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink-large.normal-filter.lossy.webp.ycbcr.png -------------------------------------------------------------------------------- /testdata/blue-purple-pink-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink-large.png -------------------------------------------------------------------------------- /testdata/blue-purple-pink-large.simple-filter.lossy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink-large.simple-filter.lossy.webp -------------------------------------------------------------------------------- /testdata/blue-purple-pink-large.simple-filter.lossy.webp.ycbcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink-large.simple-filter.lossy.webp.ycbcr.png -------------------------------------------------------------------------------- /testdata/blue-purple-pink.lossless.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink.lossless.webp -------------------------------------------------------------------------------- /testdata/blue-purple-pink.lossy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink.lossy.webp -------------------------------------------------------------------------------- /testdata/blue-purple-pink.lossy.webp.ycbcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink.lossy.webp.ycbcr.png -------------------------------------------------------------------------------- /testdata/blue-purple-pink.lzwcompressed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink.lzwcompressed.tiff -------------------------------------------------------------------------------- /testdata/blue-purple-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/blue-purple-pink.png -------------------------------------------------------------------------------- /testdata/bw-deflate.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/bw-deflate.tiff -------------------------------------------------------------------------------- /testdata/bw-packbits.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/bw-packbits.tiff -------------------------------------------------------------------------------- /testdata/bw-uncompressed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/bw-uncompressed.tiff -------------------------------------------------------------------------------- /testdata/gopher-doc.1bpp.lossless.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/gopher-doc.1bpp.lossless.webp -------------------------------------------------------------------------------- /testdata/gopher-doc.1bpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/gopher-doc.1bpp.png -------------------------------------------------------------------------------- /testdata/gopher-doc.2bpp.lossless.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/gopher-doc.2bpp.lossless.webp -------------------------------------------------------------------------------- /testdata/gopher-doc.2bpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/gopher-doc.2bpp.png -------------------------------------------------------------------------------- /testdata/gopher-doc.4bpp.lossless.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/gopher-doc.4bpp.lossless.webp -------------------------------------------------------------------------------- /testdata/gopher-doc.4bpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/gopher-doc.4bpp.png -------------------------------------------------------------------------------- /testdata/gopher-doc.8bpp.lossless.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/gopher-doc.8bpp.lossless.webp -------------------------------------------------------------------------------- /testdata/gopher-doc.8bpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/gopher-doc.8bpp.png -------------------------------------------------------------------------------- /testdata/no_compress.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/no_compress.tiff -------------------------------------------------------------------------------- /testdata/no_rps.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/no_rps.tiff -------------------------------------------------------------------------------- /testdata/photo.lossy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/photo.lossy.webp -------------------------------------------------------------------------------- /testdata/tux.lossless.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/tux.lossless.webp -------------------------------------------------------------------------------- /testdata/tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/tux.png -------------------------------------------------------------------------------- /testdata/video-001-16bit.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001-16bit.tiff -------------------------------------------------------------------------------- /testdata/video-001-gray-16bit.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001-gray-16bit.tiff -------------------------------------------------------------------------------- /testdata/video-001-gray.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001-gray.tiff -------------------------------------------------------------------------------- /testdata/video-001-paletted.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001-paletted.tiff -------------------------------------------------------------------------------- /testdata/video-001-strip-64.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001-strip-64.tiff -------------------------------------------------------------------------------- /testdata/video-001-tile-64x64.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001-tile-64x64.tiff -------------------------------------------------------------------------------- /testdata/video-001-uncompressed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001-uncompressed.tiff -------------------------------------------------------------------------------- /testdata/video-001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001.bmp -------------------------------------------------------------------------------- /testdata/video-001.lossy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001.lossy.webp -------------------------------------------------------------------------------- /testdata/video-001.lossy.webp.ycbcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001.lossy.webp.ycbcr.png -------------------------------------------------------------------------------- /testdata/video-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001.png -------------------------------------------------------------------------------- /testdata/video-001.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001.tiff -------------------------------------------------------------------------------- /testdata/video-001.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/video-001.webp -------------------------------------------------------------------------------- /testdata/yellow_rose-small.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/yellow_rose-small.bmp -------------------------------------------------------------------------------- /testdata/yellow_rose-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/yellow_rose-small.png -------------------------------------------------------------------------------- /testdata/yellow_rose.lossless.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/yellow_rose.lossless.webp -------------------------------------------------------------------------------- /testdata/yellow_rose.lossy-with-alpha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/yellow_rose.lossy-with-alpha.webp -------------------------------------------------------------------------------- /testdata/yellow_rose.lossy-with-alpha.webp.nycbcra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/yellow_rose.lossy-with-alpha.webp.nycbcra.png -------------------------------------------------------------------------------- /testdata/yellow_rose.lossy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/yellow_rose.lossy.webp -------------------------------------------------------------------------------- /testdata/yellow_rose.lossy.webp.ycbcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/yellow_rose.lossy.webp.ycbcr.png -------------------------------------------------------------------------------- /testdata/yellow_rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testdata/yellow_rose.png -------------------------------------------------------------------------------- /testing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/testing_test.go -------------------------------------------------------------------------------- /webp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/webp.go -------------------------------------------------------------------------------- /webp_decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/webp_decode.go -------------------------------------------------------------------------------- /webp_decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/webp_decode_test.go -------------------------------------------------------------------------------- /webp_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/webp_example_test.go -------------------------------------------------------------------------------- /webp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/webp_test.go -------------------------------------------------------------------------------- /writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/writer.go -------------------------------------------------------------------------------- /writer_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/writer_example_test.go -------------------------------------------------------------------------------- /writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/writer_test.go -------------------------------------------------------------------------------- /z_libwebp_sharpyuv_sharpyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_sharpyuv_sharpyuv.c -------------------------------------------------------------------------------- /z_libwebp_sharpyuv_sharpyuv_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_sharpyuv_sharpyuv_cpu.c -------------------------------------------------------------------------------- /z_libwebp_sharpyuv_sharpyuv_csp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_sharpyuv_sharpyuv_csp.c -------------------------------------------------------------------------------- /z_libwebp_sharpyuv_sharpyuv_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_sharpyuv_sharpyuv_dsp.c -------------------------------------------------------------------------------- /z_libwebp_sharpyuv_sharpyuv_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_sharpyuv_sharpyuv_gamma.c -------------------------------------------------------------------------------- /z_libwebp_sharpyuv_sharpyuv_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_sharpyuv_sharpyuv_neon.c -------------------------------------------------------------------------------- /z_libwebp_sharpyuv_sharpyuv_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_sharpyuv_sharpyuv_sse2.c -------------------------------------------------------------------------------- /z_libwebp_src_dec_alpha_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dec_alpha_dec.c -------------------------------------------------------------------------------- /z_libwebp_src_dec_buffer_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dec_buffer_dec.c -------------------------------------------------------------------------------- /z_libwebp_src_dec_frame_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dec_frame_dec.c -------------------------------------------------------------------------------- /z_libwebp_src_dec_idec_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dec_idec_dec.c -------------------------------------------------------------------------------- /z_libwebp_src_dec_io_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dec_io_dec.c -------------------------------------------------------------------------------- /z_libwebp_src_dec_quant_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dec_quant_dec.c -------------------------------------------------------------------------------- /z_libwebp_src_dec_tree_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dec_tree_dec.c -------------------------------------------------------------------------------- /z_libwebp_src_dec_vp8_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dec_vp8_dec.c -------------------------------------------------------------------------------- /z_libwebp_src_dec_vp8l_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dec_vp8l_dec.c -------------------------------------------------------------------------------- /z_libwebp_src_dec_webp_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dec_webp_dec.c -------------------------------------------------------------------------------- /z_libwebp_src_demux_anim_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_demux_anim_decode.c -------------------------------------------------------------------------------- /z_libwebp_src_demux_demux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_demux_demux.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_alpha_processing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_alpha_processing.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_alpha_processing_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_alpha_processing_mips_dsp_r2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_alpha_processing_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_alpha_processing_neon.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_alpha_processing_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_alpha_processing_sse2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_alpha_processing_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_alpha_processing_sse41.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_cost.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_cost_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_cost_mips32.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_cost_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_cost_mips_dsp_r2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_cost_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_cost_neon.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_cost_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_cost_sse2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_cpu.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_dec.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_dec_clip_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_dec_clip_tables.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_dec_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_dec_mips32.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_dec_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_dec_mips_dsp_r2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_dec_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_dec_msa.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_dec_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_dec_neon.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_dec_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_dec_sse2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_dec_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_dec_sse41.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_enc_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_enc_mips32.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_enc_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_enc_mips_dsp_r2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_enc_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_enc_msa.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_enc_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_enc_neon.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_enc_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_enc_sse2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_enc_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_enc_sse41.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_filters.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_filters_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_filters_mips_dsp_r2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_filters_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_filters_msa.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_filters_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_filters_neon.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_filters_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_filters_sse2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless_enc_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless_enc_mips32.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless_enc_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless_enc_mips_dsp_r2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless_enc_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless_enc_msa.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless_enc_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless_enc_neon.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless_enc_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless_enc_sse2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless_enc_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless_enc_sse41.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless_mips_dsp_r2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless_msa.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless_neon.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless_sse2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_lossless_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_lossless_sse41.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_rescaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_rescaler.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_rescaler_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_rescaler_mips32.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_rescaler_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_rescaler_mips_dsp_r2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_rescaler_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_rescaler_msa.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_rescaler_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_rescaler_neon.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_rescaler_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_rescaler_sse2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_ssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_ssim.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_ssim_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_ssim_sse2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_upsampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_upsampling.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_upsampling_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_upsampling_mips_dsp_r2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_upsampling_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_upsampling_msa.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_upsampling_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_upsampling_neon.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_upsampling_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_upsampling_sse2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_upsampling_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_upsampling_sse41.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_yuv.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_yuv_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_yuv_mips32.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_yuv_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_yuv_mips_dsp_r2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_yuv_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_yuv_neon.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_yuv_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_yuv_sse2.c -------------------------------------------------------------------------------- /z_libwebp_src_dsp_yuv_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_dsp_yuv_sse41.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_alpha_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_alpha_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_analysis_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_analysis_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_backward_references_cost_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_backward_references_cost_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_backward_references_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_backward_references_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_config_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_config_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_cost_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_cost_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_filter_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_filter_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_frame_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_frame_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_histogram_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_histogram_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_iterator_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_iterator_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_near_lossless_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_near_lossless_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_picture_csp_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_picture_csp_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_picture_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_picture_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_picture_psnr_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_picture_psnr_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_picture_rescale_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_picture_rescale_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_picture_tools_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_picture_tools_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_predictor_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_predictor_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_quant_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_quant_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_syntax_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_syntax_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_token_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_token_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_tree_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_tree_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_vp8l_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_vp8l_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_enc_webp_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_enc_webp_enc.c -------------------------------------------------------------------------------- /z_libwebp_src_mux_anim_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_mux_anim_encode.c -------------------------------------------------------------------------------- /z_libwebp_src_mux_muxedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_mux_muxedit.c -------------------------------------------------------------------------------- /z_libwebp_src_mux_muxinternal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_mux_muxinternal.c -------------------------------------------------------------------------------- /z_libwebp_src_mux_muxread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_mux_muxread.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_bit_reader_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_bit_reader_utils.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_bit_writer_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_bit_writer_utils.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_color_cache_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_color_cache_utils.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_filters_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_filters_utils.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_huffman_encode_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_huffman_encode_utils.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_huffman_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_huffman_utils.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_palette.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_quant_levels_dec_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_quant_levels_dec_utils.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_quant_levels_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_quant_levels_utils.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_random_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_random_utils.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_rescaler_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_rescaler_utils.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_thread_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_thread_utils.c -------------------------------------------------------------------------------- /z_libwebp_src_utils_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/webp/HEAD/z_libwebp_src_utils_utils.c --------------------------------------------------------------------------------