├── .cmake.conf ├── .gitreview ├── .tag ├── CMakeLists.txt ├── LICENSES ├── BSD-3-Clause.txt ├── GFDL-1.3-no-invariants-only.txt ├── GPL-2.0-only.txt ├── GPL-3.0-only.txt ├── LGPL-3.0-only.txt ├── LicenseRef-Qt-Commercial.txt └── libtiff.txt ├── REUSE.toml ├── cmake ├── FindLibmng.cmake ├── FindWrapJasper.cmake └── FindWrapWebP.cmake ├── coin ├── axivion │ └── ci_config_linux.json └── module_config.yaml ├── config_help.txt ├── configure.cmake ├── dependencies.yaml ├── dist ├── REUSE.toml ├── changes-5.0.1 ├── changes-5.0.2 ├── changes-5.1.0 ├── changes-5.1.1 ├── changes-5.10.0 ├── changes-5.10.1 ├── changes-5.11.0 ├── changes-5.11.1 ├── changes-5.11.2 ├── changes-5.11.3 ├── changes-5.12.0 ├── changes-5.12.1 ├── changes-5.12.10 ├── changes-5.12.2 ├── changes-5.12.3 ├── changes-5.12.4 ├── changes-5.12.5 ├── changes-5.13.0 ├── changes-5.13.1 ├── changes-5.13.2 ├── changes-5.14.0 ├── changes-5.14.1 ├── changes-5.14.2 ├── changes-5.15.0 ├── changes-5.15.1 ├── changes-5.15.2 ├── changes-5.3.0 ├── changes-5.4.0 ├── changes-5.5.0 ├── changes-5.6.0 ├── changes-5.6.3 ├── changes-5.7.0 ├── changes-5.8.0 ├── changes-5.9.0 ├── changes-5.9.1 ├── changes-5.9.2 ├── changes-5.9.3 ├── changes-5.9.4 ├── changes-5.9.5 ├── changes-5.9.6 └── changes-6.0.0 ├── licenseRule.json ├── qt_cmdline.cmake ├── src ├── 3rdparty │ ├── libtiff.pri │ ├── libtiff │ │ ├── COPYRIGHT │ │ ├── ChangeLog │ │ ├── RELEASE-DATE │ │ ├── REUSE.toml │ │ ├── TODO │ │ ├── VERSION │ │ ├── libtiff │ │ │ ├── libtiff.def │ │ │ ├── libtiff.map │ │ │ ├── libtiffxx.map │ │ │ ├── mkg3states.c │ │ │ ├── t4.h │ │ │ ├── tif_aux.c │ │ │ ├── tif_close.c │ │ │ ├── tif_codec.c │ │ │ ├── tif_color.c │ │ │ ├── tif_compress.c │ │ │ ├── tif_config.h │ │ │ ├── tif_config.h.cmake.in │ │ │ ├── tif_config.h.in │ │ │ ├── tif_dir.c │ │ │ ├── tif_dir.h │ │ │ ├── tif_dirinfo.c │ │ │ ├── tif_dirread.c │ │ │ ├── tif_dirwrite.c │ │ │ ├── tif_dumpmode.c │ │ │ ├── tif_error.c │ │ │ ├── tif_extension.c │ │ │ ├── tif_fax3.c │ │ │ ├── tif_fax3.h │ │ │ ├── tif_fax3sm.c │ │ │ ├── tif_flush.c │ │ │ ├── tif_getimage.c │ │ │ ├── tif_hash_set.c │ │ │ ├── tif_hash_set.h │ │ │ ├── tif_jbig.c │ │ │ ├── tif_jpeg.c │ │ │ ├── tif_jpeg_12.c │ │ │ ├── tif_lerc.c │ │ │ ├── tif_luv.c │ │ │ ├── tif_lzma.c │ │ │ ├── tif_lzw.c │ │ │ ├── tif_next.c │ │ │ ├── tif_ojpeg.c │ │ │ ├── tif_open.c │ │ │ ├── tif_packbits.c │ │ │ ├── tif_pixarlog.c │ │ │ ├── tif_predict.c │ │ │ ├── tif_predict.h │ │ │ ├── tif_print.c │ │ │ ├── tif_read.c │ │ │ ├── tif_stream.cxx │ │ │ ├── tif_strip.c │ │ │ ├── tif_swab.c │ │ │ ├── tif_thunder.c │ │ │ ├── tif_tile.c │ │ │ ├── tif_unix.c │ │ │ ├── tif_version.c │ │ │ ├── tif_warning.c │ │ │ ├── tif_webp.c │ │ │ ├── tif_win32.c │ │ │ ├── tif_write.c │ │ │ ├── tif_zip.c │ │ │ ├── tif_zstd.c │ │ │ ├── tiff.h │ │ │ ├── tiffconf.h │ │ │ ├── tiffconf.h.cmake.in │ │ │ ├── tiffconf.h.in │ │ │ ├── tiffio.h │ │ │ ├── tiffio.hxx │ │ │ ├── tiffiop.h │ │ │ ├── tiffvers.h │ │ │ └── uvcode.h │ │ └── qt_attribution.json │ ├── libwebp.pri │ ├── libwebp │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── NEWS │ │ ├── PATENTS │ │ ├── README.md │ │ ├── REUSE.toml │ │ ├── patches │ │ │ ├── 0001-Fix-Windows-build-for-clang-and-neon.patch │ │ │ └── 0002-Fix-neon-build-for-qnx.patch │ │ ├── qt_attribution.json │ │ ├── sharpyuv │ │ │ ├── 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 │ │ │ ├── dec │ │ │ ├── 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 │ │ │ ├── anim_decode.c │ │ │ └── demux.c │ │ │ ├── dsp │ │ │ ├── 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_avx2.c │ │ │ ├── lossless_common.h │ │ │ ├── lossless_enc.c │ │ │ ├── lossless_enc_avx2.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 │ │ │ ├── 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 │ │ │ ├── mux │ │ │ ├── anim_encode.c │ │ │ ├── animi.h │ │ │ ├── muxedit.c │ │ │ ├── muxi.h │ │ │ ├── muxinternal.c │ │ │ └── muxread.c │ │ │ ├── utils │ │ │ ├── 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 │ │ │ ├── decode.h │ │ │ ├── demux.h │ │ │ ├── encode.h │ │ │ ├── format_constants.h │ │ │ ├── mux.h │ │ │ ├── mux_types.h │ │ │ └── types.h │ └── zlib_dependency.pri ├── CMakeLists.txt ├── imageformats │ ├── CMakeLists.txt │ ├── configure.cmake │ ├── doc │ │ ├── qtimageformats.qdocconf │ │ └── src │ │ │ └── qtimageformats.qdoc │ └── qt_cmdline.cmake └── plugins │ ├── CMakeLists.txt │ └── imageformats │ ├── CMakeLists.txt │ ├── dds │ ├── README │ ├── dds.json │ ├── ddsheader.cpp │ ├── ddsheader.h │ ├── main.cpp │ ├── qddshandler.cpp │ └── qddshandler.h │ ├── icns │ ├── CMakeLists.txt │ ├── README │ ├── icns.json │ ├── main.cpp │ ├── qicnshandler.cpp │ └── qicnshandler_p.h │ ├── jp2 │ ├── CMakeLists.txt │ ├── jp2.json │ ├── main.cpp │ ├── qjp2handler.cpp │ └── qjp2handler_p.h │ ├── macheif │ ├── CMakeLists.txt │ ├── macheif.json │ ├── main.cpp │ ├── qmacheifhandler.cpp │ └── qmacheifhandler.h │ ├── macjp2 │ ├── CMakeLists.txt │ ├── macjp2.json │ ├── main.cpp │ ├── qmacjp2handler.cpp │ └── qmacjp2handler.h │ ├── mng │ ├── CMakeLists.txt │ ├── main.cpp │ ├── mng.json │ ├── qmnghandler.cpp │ └── qmnghandler_p.h │ ├── shared │ ├── qiiofhelpers.mm │ └── qiiofhelpers_p.h │ ├── tga │ ├── CMakeLists.txt │ ├── main.cpp │ ├── qtgafile.cpp │ ├── qtgafile.h │ ├── qtgahandler.cpp │ ├── qtgahandler.h │ └── tga.json │ ├── tiff │ ├── CMakeLists.txt │ ├── main.cpp │ ├── qtiffhandler.cpp │ ├── qtiffhandler_p.h │ └── tiff.json │ ├── wbmp │ ├── CMakeLists.txt │ ├── main.cpp │ ├── qwbmphandler.cpp │ ├── qwbmphandler_p.h │ └── wbmp.json │ └── webp │ ├── CMakeLists.txt │ ├── main.cpp │ ├── qwebphandler.cpp │ ├── qwebphandler_p.h │ └── webp.json └── tests ├── CMakeLists.txt ├── auto ├── CMakeLists.txt ├── dds │ ├── CMakeLists.txt │ └── tst_qdds.cpp ├── heif │ ├── BLACKLIST │ ├── CMakeLists.txt │ └── tst_qheif.cpp ├── icns │ ├── CMakeLists.txt │ └── tst_qicns.cpp ├── jp2 │ ├── CMakeLists.txt │ └── tst_qjp2.cpp ├── mng │ ├── CMakeLists.txt │ └── tst_qmng.cpp ├── tga │ ├── CMakeLists.txt │ └── tst_qtga.cpp ├── tiff │ ├── CMakeLists.txt │ └── tst_qtiff.cpp ├── wbmp │ ├── CMakeLists.txt │ └── tst_qwbmp.cpp └── webp │ ├── BLACKLIST │ ├── CMakeLists.txt │ ├── images │ ├── kollada.png │ ├── kollada.webp │ ├── kollada_animation.webp │ ├── kollada_lossless.webp │ └── kollada_noalpha.webp │ └── tst_qwebp.cpp ├── benchmarks ├── CMakeLists.txt ├── benchmarks.pro ├── mng │ ├── CMakeLists.txt │ ├── mng.pro │ └── tst_qmng.cpp └── tiff │ ├── CMakeLists.txt │ ├── tiff.pro │ └── tst_qtiff.cpp └── shared └── images ├── dds ├── A16B16G16R16.dds ├── A16B16G16R16F.dds ├── A1R5G5B5.dds ├── A2B10G10R10.dds ├── A2R10G10B10.dds ├── A2W10V10U10.dds ├── A32B32G32R32F.dds ├── A4L4.dds ├── A4R4G4B4.dds ├── A8.dds ├── A8B8G8R8.dds ├── A8L8.dds ├── A8R3G3B2.dds ├── A8R8G8B8.2.dds ├── A8R8G8B8.dds ├── ATI2.dds ├── CxV8U8.dds ├── DXT1.dds ├── DXT2.dds ├── DXT3.dds ├── DXT4.dds ├── DXT5.dds ├── G16R16.dds ├── G16R16F.dds ├── G32R32F.dds ├── G8R8_G8B8.dds ├── L16.dds ├── L6V5U5.dds ├── L8.dds ├── P4.dds ├── P8.dds ├── Q16W16V16U16.dds ├── Q8W8V8U8.dds ├── R16F.dds ├── R32F.dds ├── R3G3B2.dds ├── R5G6B5.dds ├── R8G8B8.dds ├── R8G8_B8G8.dds ├── RXGB.dds ├── UYVY.dds ├── V16U16.dds ├── V8U8.dds ├── X1R5G5B5.dds ├── X4R4G4B4.dds ├── X8B8G8R8.dds ├── X8L8V8U8.dds ├── X8R8G8B8.dds ├── YUY2.dds └── mipmaps.dds ├── heif ├── col320x480.heic ├── newlogoCCW.heic ├── primary-index-0.heic └── primary-index-1.heic ├── icns ├── test-32bit.icns ├── test-jp2.icns ├── test-legacy.icns ├── test-png.icns ├── test-variants.icns ├── test-write-1024.png ├── test-write-128.png ├── test-write-16.png ├── test-write-256.png ├── test-write-32.png ├── test-write-512.png └── test-write-64.png ├── jp2 ├── logo.bmp └── logo.jp2 ├── mng.qrc ├── mng ├── animation.mng ├── ball.mng ├── corrupt.mng ├── dutch.mng └── fire.mng ├── tga └── test-flag.tga ├── tiff.qrc ├── tiff ├── 16bpc.tiff ├── big_16bpc.tiff ├── big_grayscale.tiff ├── big_rgb.tiff ├── big_rgb_bigendian.tiff ├── colorful.bmp ├── corrupt-data.tif ├── gray16.tiff ├── grayscale-ref.tif ├── grayscale.tif ├── image.tif ├── image_100dpi.tif ├── indexed_orientation_1.tiff ├── indexed_orientation_2.tiff ├── indexed_orientation_3.tiff ├── indexed_orientation_4.tiff ├── indexed_orientation_5.tiff ├── indexed_orientation_6.tiff ├── indexed_orientation_7.tiff ├── indexed_orientation_8.tiff ├── mono_orientation_1.tiff ├── mono_orientation_2.tiff ├── mono_orientation_3.tiff ├── mono_orientation_4.tiff ├── mono_orientation_5.tiff ├── mono_orientation_6.tiff ├── mono_orientation_7.tiff ├── mono_orientation_8.tiff ├── multipage.tiff ├── oddsize_grayscale.tiff ├── oddsize_mono.tiff ├── original_grayscale.tiff ├── original_indexed.tiff ├── original_mono.tiff ├── original_rgb.tiff ├── rgb_orientation_1.tiff ├── rgb_orientation_2.tiff ├── rgb_orientation_3.tiff ├── rgb_orientation_4.tiff ├── rgb_orientation_5.tiff ├── rgb_orientation_6.tiff ├── rgb_orientation_7.tiff ├── rgb_orientation_8.tiff ├── rgba_adobedeflate_littleendian.tif ├── rgba_lzw_littleendian.tif ├── rgba_nocompression_bigendian.tif ├── rgba_nocompression_littleendian.tif ├── rgba_packbits_littleendian.tif ├── rgba_zipdeflate_littleendian.tif ├── teapot.tiff ├── teapot_cmyk.tiff ├── tiled_grayscale.tiff ├── tiled_indexed.tiff ├── tiled_mono.tiff ├── tiled_oddsize_grayscale.tiff ├── tiled_oddsize_mono.tiff └── tiled_rgb.tiff └── wbmp ├── qt-logo-big.wbmp └── qt-logo-small.wbmp /.cmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/.cmake.conf -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/.gitreview -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | b10840596ed5720f51b9ae691828c107a5430f40 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/GFDL-1.3-no-invariants-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/LICENSES/GFDL-1.3-no-invariants-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/LICENSES/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-Qt-Commercial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/LICENSES/LicenseRef-Qt-Commercial.txt -------------------------------------------------------------------------------- /LICENSES/libtiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/LICENSES/libtiff.txt -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/REUSE.toml -------------------------------------------------------------------------------- /cmake/FindLibmng.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/cmake/FindLibmng.cmake -------------------------------------------------------------------------------- /cmake/FindWrapJasper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/cmake/FindWrapJasper.cmake -------------------------------------------------------------------------------- /cmake/FindWrapWebP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/cmake/FindWrapWebP.cmake -------------------------------------------------------------------------------- /coin/axivion/ci_config_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/coin/axivion/ci_config_linux.json -------------------------------------------------------------------------------- /coin/module_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/coin/module_config.yaml -------------------------------------------------------------------------------- /config_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/config_help.txt -------------------------------------------------------------------------------- /configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/configure.cmake -------------------------------------------------------------------------------- /dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dependencies.yaml -------------------------------------------------------------------------------- /dist/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/REUSE.toml -------------------------------------------------------------------------------- /dist/changes-5.0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.0.1 -------------------------------------------------------------------------------- /dist/changes-5.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.0.2 -------------------------------------------------------------------------------- /dist/changes-5.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.1.0 -------------------------------------------------------------------------------- /dist/changes-5.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.1.1 -------------------------------------------------------------------------------- /dist/changes-5.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.10.0 -------------------------------------------------------------------------------- /dist/changes-5.10.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.10.1 -------------------------------------------------------------------------------- /dist/changes-5.11.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.11.0 -------------------------------------------------------------------------------- /dist/changes-5.11.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.11.1 -------------------------------------------------------------------------------- /dist/changes-5.11.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.11.2 -------------------------------------------------------------------------------- /dist/changes-5.11.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.11.3 -------------------------------------------------------------------------------- /dist/changes-5.12.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.12.0 -------------------------------------------------------------------------------- /dist/changes-5.12.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.12.1 -------------------------------------------------------------------------------- /dist/changes-5.12.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.12.10 -------------------------------------------------------------------------------- /dist/changes-5.12.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.12.2 -------------------------------------------------------------------------------- /dist/changes-5.12.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.12.3 -------------------------------------------------------------------------------- /dist/changes-5.12.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.12.4 -------------------------------------------------------------------------------- /dist/changes-5.12.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.12.5 -------------------------------------------------------------------------------- /dist/changes-5.13.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.13.0 -------------------------------------------------------------------------------- /dist/changes-5.13.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.13.1 -------------------------------------------------------------------------------- /dist/changes-5.13.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.13.2 -------------------------------------------------------------------------------- /dist/changes-5.14.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.14.0 -------------------------------------------------------------------------------- /dist/changes-5.14.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.14.1 -------------------------------------------------------------------------------- /dist/changes-5.14.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.14.2 -------------------------------------------------------------------------------- /dist/changes-5.15.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.15.0 -------------------------------------------------------------------------------- /dist/changes-5.15.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.15.1 -------------------------------------------------------------------------------- /dist/changes-5.15.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.15.2 -------------------------------------------------------------------------------- /dist/changes-5.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.3.0 -------------------------------------------------------------------------------- /dist/changes-5.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.4.0 -------------------------------------------------------------------------------- /dist/changes-5.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.5.0 -------------------------------------------------------------------------------- /dist/changes-5.6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.6.0 -------------------------------------------------------------------------------- /dist/changes-5.6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.6.3 -------------------------------------------------------------------------------- /dist/changes-5.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.7.0 -------------------------------------------------------------------------------- /dist/changes-5.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.8.0 -------------------------------------------------------------------------------- /dist/changes-5.9.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.9.0 -------------------------------------------------------------------------------- /dist/changes-5.9.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.9.1 -------------------------------------------------------------------------------- /dist/changes-5.9.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.9.2 -------------------------------------------------------------------------------- /dist/changes-5.9.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.9.3 -------------------------------------------------------------------------------- /dist/changes-5.9.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.9.4 -------------------------------------------------------------------------------- /dist/changes-5.9.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.9.5 -------------------------------------------------------------------------------- /dist/changes-5.9.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-5.9.6 -------------------------------------------------------------------------------- /dist/changes-6.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/dist/changes-6.0.0 -------------------------------------------------------------------------------- /licenseRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/licenseRule.json -------------------------------------------------------------------------------- /qt_cmdline.cmake: -------------------------------------------------------------------------------- 1 | qt_commandline_subconfig(src/imageformats) 2 | -------------------------------------------------------------------------------- /src/3rdparty/libtiff.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff.pri -------------------------------------------------------------------------------- /src/3rdparty/libtiff/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/COPYRIGHT -------------------------------------------------------------------------------- /src/3rdparty/libtiff/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/ChangeLog -------------------------------------------------------------------------------- /src/3rdparty/libtiff/RELEASE-DATE: -------------------------------------------------------------------------------- 1 | 20250911 2 | -------------------------------------------------------------------------------- /src/3rdparty/libtiff/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/REUSE.toml -------------------------------------------------------------------------------- /src/3rdparty/libtiff/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/TODO -------------------------------------------------------------------------------- /src/3rdparty/libtiff/VERSION: -------------------------------------------------------------------------------- 1 | 4.7.1 2 | -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/libtiff.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/libtiff.def -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/libtiff.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/libtiff.map -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/libtiffxx.map: -------------------------------------------------------------------------------- 1 | LIBTIFFXX_4.0 { 2 | global: 3 | *; 4 | }; 5 | -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/mkg3states.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/mkg3states.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/t4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/t4.h -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_aux.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_close.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_codec.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_color.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_compress.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_config.h -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_config.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_config.h.cmake.in -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_config.h.in -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_dir.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_dir.h -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_dirinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_dirinfo.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_dirread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_dirread.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_dirwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_dirwrite.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_dumpmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_dumpmode.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_error.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_extension.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_fax3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_fax3.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_fax3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_fax3.h -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_fax3sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_fax3sm.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_flush.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_getimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_getimage.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_hash_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_hash_set.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_hash_set.h -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_jbig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_jbig.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_jpeg.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_jpeg_12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_jpeg_12.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_lerc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_lerc.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_luv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_luv.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_lzma.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_lzw.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_next.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_ojpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_ojpeg.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_open.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_packbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_packbits.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_pixarlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_pixarlog.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_predict.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_predict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_predict.h -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_print.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_read.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_stream.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_stream.cxx -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_strip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_strip.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_swab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_swab.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_thunder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_thunder.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_tile.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_unix.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_version.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_warning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_warning.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_webp.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_win32.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_write.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_zip.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tif_zstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tif_zstd.c -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tiff.h -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tiffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tiffconf.h -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tiffconf.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tiffconf.h.cmake.in -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tiffconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tiffconf.h.in -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tiffio.h -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tiffio.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tiffio.hxx -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tiffiop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tiffiop.h -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/tiffvers.h -------------------------------------------------------------------------------- /src/3rdparty/libtiff/libtiff/uvcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/libtiff/uvcode.h -------------------------------------------------------------------------------- /src/3rdparty/libtiff/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libtiff/qt_attribution.json -------------------------------------------------------------------------------- /src/3rdparty/libwebp.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp.pri -------------------------------------------------------------------------------- /src/3rdparty/libwebp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/AUTHORS -------------------------------------------------------------------------------- /src/3rdparty/libwebp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/COPYING -------------------------------------------------------------------------------- /src/3rdparty/libwebp/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/ChangeLog -------------------------------------------------------------------------------- /src/3rdparty/libwebp/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/NEWS -------------------------------------------------------------------------------- /src/3rdparty/libwebp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/PATENTS -------------------------------------------------------------------------------- /src/3rdparty/libwebp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/README.md -------------------------------------------------------------------------------- /src/3rdparty/libwebp/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/REUSE.toml -------------------------------------------------------------------------------- /src/3rdparty/libwebp/patches/0001-Fix-Windows-build-for-clang-and-neon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/patches/0001-Fix-Windows-build-for-clang-and-neon.patch -------------------------------------------------------------------------------- /src/3rdparty/libwebp/patches/0002-Fix-neon-build-for-qnx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/patches/0002-Fix-neon-build-for-qnx.patch -------------------------------------------------------------------------------- /src/3rdparty/libwebp/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/qt_attribution.json -------------------------------------------------------------------------------- /src/3rdparty/libwebp/sharpyuv/sharpyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/sharpyuv/sharpyuv.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/sharpyuv/sharpyuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/sharpyuv/sharpyuv.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/sharpyuv/sharpyuv_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/sharpyuv/sharpyuv_cpu.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/sharpyuv/sharpyuv_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/sharpyuv/sharpyuv_cpu.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/sharpyuv/sharpyuv_csp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/sharpyuv/sharpyuv_csp.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/sharpyuv/sharpyuv_csp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/sharpyuv/sharpyuv_csp.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/sharpyuv/sharpyuv_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/sharpyuv/sharpyuv_dsp.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/sharpyuv/sharpyuv_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/sharpyuv/sharpyuv_dsp.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/sharpyuv/sharpyuv_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/sharpyuv/sharpyuv_gamma.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/sharpyuv/sharpyuv_gamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/sharpyuv/sharpyuv_gamma.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/sharpyuv/sharpyuv_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/sharpyuv/sharpyuv_neon.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/sharpyuv/sharpyuv_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/sharpyuv/sharpyuv_sse2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/alpha_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/alpha_dec.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/alphai_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/alphai_dec.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/buffer_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/buffer_dec.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/common_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/common_dec.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/frame_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/frame_dec.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/idec_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/idec_dec.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/io_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/io_dec.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/quant_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/quant_dec.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/tree_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/tree_dec.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/vp8_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/vp8_dec.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/vp8_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/vp8_dec.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/vp8i_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/vp8i_dec.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/vp8l_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/vp8l_dec.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/vp8li_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/vp8li_dec.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/webp_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/webp_dec.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dec/webpi_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dec/webpi_dec.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/demux/anim_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/demux/anim_decode.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/demux/demux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/demux/demux.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/alpha_processing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/alpha_processing.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/alpha_processing_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/alpha_processing_mips_dsp_r2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/alpha_processing_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/alpha_processing_neon.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/alpha_processing_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/alpha_processing_sse2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/alpha_processing_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/alpha_processing_sse41.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/common_sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/common_sse2.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/common_sse41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/common_sse41.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/cost.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/cost_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/cost_mips32.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/cost_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/cost_mips_dsp_r2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/cost_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/cost_neon.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/cost_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/cost_sse2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/cpu.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/cpu.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/dec.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/dec_clip_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/dec_clip_tables.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/dec_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/dec_mips32.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/dec_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/dec_mips_dsp_r2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/dec_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/dec_msa.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/dec_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/dec_neon.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/dec_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/dec_sse2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/dec_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/dec_sse41.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/dsp.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/enc_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/enc_mips32.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/enc_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/enc_mips_dsp_r2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/enc_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/enc_msa.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/enc_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/enc_neon.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/enc_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/enc_sse2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/enc_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/enc_sse41.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/filters.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/filters_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/filters_mips_dsp_r2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/filters_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/filters_msa.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/filters_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/filters_neon.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/filters_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/filters_sse2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_avx2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_common.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_enc_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_enc_avx2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_enc_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_enc_mips32.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_enc_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_enc_mips_dsp_r2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_enc_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_enc_msa.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_enc_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_enc_neon.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_enc_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_enc_sse2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_enc_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_enc_sse41.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_mips_dsp_r2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_msa.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_neon.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_sse2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/lossless_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/lossless_sse41.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/mips_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/mips_macro.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/msa_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/msa_macro.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/neon.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/quant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/quant.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/rescaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/rescaler.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/rescaler_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/rescaler_mips32.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/rescaler_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/rescaler_mips_dsp_r2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/rescaler_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/rescaler_msa.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/rescaler_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/rescaler_neon.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/rescaler_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/rescaler_sse2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/ssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/ssim.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/ssim_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/ssim_sse2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/upsampling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/upsampling.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/upsampling_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/upsampling_mips_dsp_r2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/upsampling_msa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/upsampling_msa.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/upsampling_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/upsampling_neon.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/upsampling_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/upsampling_sse2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/upsampling_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/upsampling_sse41.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/yuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/yuv.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/yuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/yuv.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/yuv_mips32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/yuv_mips32.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/yuv_mips_dsp_r2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/yuv_mips_dsp_r2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/yuv_neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/yuv_neon.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/yuv_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/yuv_sse2.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/dsp/yuv_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/dsp/yuv_sse41.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/alpha_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/alpha_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/analysis_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/analysis_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/backward_references_cost_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/backward_references_cost_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/backward_references_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/backward_references_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/backward_references_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/backward_references_enc.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/config_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/config_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/cost_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/cost_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/cost_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/cost_enc.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/filter_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/filter_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/frame_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/frame_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/histogram_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/histogram_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/histogram_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/histogram_enc.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/iterator_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/iterator_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/near_lossless_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/near_lossless_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/picture_csp_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/picture_csp_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/picture_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/picture_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/picture_psnr_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/picture_psnr_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/picture_rescale_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/picture_rescale_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/picture_tools_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/picture_tools_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/predictor_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/predictor_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/quant_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/quant_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/syntax_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/syntax_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/token_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/token_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/tree_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/tree_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/vp8i_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/vp8i_enc.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/vp8l_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/vp8l_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/vp8li_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/vp8li_enc.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/enc/webp_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/enc/webp_enc.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/mux/anim_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/mux/anim_encode.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/mux/animi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/mux/animi.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/mux/muxedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/mux/muxedit.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/mux/muxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/mux/muxi.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/mux/muxinternal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/mux/muxinternal.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/mux/muxread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/mux/muxread.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/bit_reader_inl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/bit_reader_inl_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/bit_reader_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/bit_reader_utils.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/bit_reader_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/bit_reader_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/bit_writer_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/bit_writer_utils.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/bit_writer_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/bit_writer_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/color_cache_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/color_cache_utils.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/color_cache_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/color_cache_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/endian_inl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/endian_inl_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/filters_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/filters_utils.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/filters_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/filters_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/huffman_encode_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/huffman_encode_utils.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/huffman_encode_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/huffman_encode_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/huffman_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/huffman_utils.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/huffman_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/huffman_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/palette.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/palette.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/quant_levels_dec_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/quant_levels_dec_utils.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/quant_levels_dec_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/quant_levels_dec_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/quant_levels_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/quant_levels_utils.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/quant_levels_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/quant_levels_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/random_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/random_utils.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/random_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/random_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/rescaler_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/rescaler_utils.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/rescaler_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/rescaler_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/thread_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/thread_utils.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/thread_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/thread_utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/utils.c -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/utils/utils.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/webp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/webp/config.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/webp/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/webp/decode.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/webp/demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/webp/demux.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/webp/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/webp/encode.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/webp/format_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/webp/format_constants.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/webp/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/webp/mux.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/webp/mux_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/webp/mux_types.h -------------------------------------------------------------------------------- /src/3rdparty/libwebp/src/webp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/libwebp/src/webp/types.h -------------------------------------------------------------------------------- /src/3rdparty/zlib_dependency.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/3rdparty/zlib_dependency.pri -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/imageformats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/imageformats/CMakeLists.txt -------------------------------------------------------------------------------- /src/imageformats/configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/imageformats/configure.cmake -------------------------------------------------------------------------------- /src/imageformats/doc/qtimageformats.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/imageformats/doc/qtimageformats.qdocconf -------------------------------------------------------------------------------- /src/imageformats/doc/src/qtimageformats.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/imageformats/doc/src/qtimageformats.qdoc -------------------------------------------------------------------------------- /src/imageformats/qt_cmdline.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/imageformats/qt_cmdline.cmake -------------------------------------------------------------------------------- /src/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/imageformats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/imageformats/dds/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/dds/README -------------------------------------------------------------------------------- /src/plugins/imageformats/dds/dds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/dds/dds.json -------------------------------------------------------------------------------- /src/plugins/imageformats/dds/ddsheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/dds/ddsheader.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/dds/ddsheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/dds/ddsheader.h -------------------------------------------------------------------------------- /src/plugins/imageformats/dds/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/dds/main.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/dds/qddshandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/dds/qddshandler.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/dds/qddshandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/dds/qddshandler.h -------------------------------------------------------------------------------- /src/plugins/imageformats/icns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/icns/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/imageformats/icns/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/icns/README -------------------------------------------------------------------------------- /src/plugins/imageformats/icns/icns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/icns/icns.json -------------------------------------------------------------------------------- /src/plugins/imageformats/icns/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/icns/main.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/icns/qicnshandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/icns/qicnshandler.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/icns/qicnshandler_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/icns/qicnshandler_p.h -------------------------------------------------------------------------------- /src/plugins/imageformats/jp2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/jp2/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/imageformats/jp2/jp2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/jp2/jp2.json -------------------------------------------------------------------------------- /src/plugins/imageformats/jp2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/jp2/main.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/jp2/qjp2handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/jp2/qjp2handler.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/jp2/qjp2handler_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/jp2/qjp2handler_p.h -------------------------------------------------------------------------------- /src/plugins/imageformats/macheif/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/macheif/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/imageformats/macheif/macheif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/macheif/macheif.json -------------------------------------------------------------------------------- /src/plugins/imageformats/macheif/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/macheif/main.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/macheif/qmacheifhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/macheif/qmacheifhandler.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/macheif/qmacheifhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/macheif/qmacheifhandler.h -------------------------------------------------------------------------------- /src/plugins/imageformats/macjp2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/macjp2/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/imageformats/macjp2/macjp2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/macjp2/macjp2.json -------------------------------------------------------------------------------- /src/plugins/imageformats/macjp2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/macjp2/main.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/macjp2/qmacjp2handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/macjp2/qmacjp2handler.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/macjp2/qmacjp2handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/macjp2/qmacjp2handler.h -------------------------------------------------------------------------------- /src/plugins/imageformats/mng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/mng/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/imageformats/mng/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/mng/main.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/mng/mng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/mng/mng.json -------------------------------------------------------------------------------- /src/plugins/imageformats/mng/qmnghandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/mng/qmnghandler.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/mng/qmnghandler_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/mng/qmnghandler_p.h -------------------------------------------------------------------------------- /src/plugins/imageformats/shared/qiiofhelpers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/shared/qiiofhelpers.mm -------------------------------------------------------------------------------- /src/plugins/imageformats/shared/qiiofhelpers_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/shared/qiiofhelpers_p.h -------------------------------------------------------------------------------- /src/plugins/imageformats/tga/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/tga/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/imageformats/tga/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/tga/main.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/tga/qtgafile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/tga/qtgafile.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/tga/qtgafile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/tga/qtgafile.h -------------------------------------------------------------------------------- /src/plugins/imageformats/tga/qtgahandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/tga/qtgahandler.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/tga/qtgahandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/tga/qtgahandler.h -------------------------------------------------------------------------------- /src/plugins/imageformats/tga/tga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/tga/tga.json -------------------------------------------------------------------------------- /src/plugins/imageformats/tiff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/tiff/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/imageformats/tiff/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/tiff/main.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/tiff/qtiffhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/tiff/qtiffhandler.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/tiff/qtiffhandler_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/tiff/qtiffhandler_p.h -------------------------------------------------------------------------------- /src/plugins/imageformats/tiff/tiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/tiff/tiff.json -------------------------------------------------------------------------------- /src/plugins/imageformats/wbmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/wbmp/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/imageformats/wbmp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/wbmp/main.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/wbmp/qwbmphandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/wbmp/qwbmphandler.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/wbmp/qwbmphandler_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/wbmp/qwbmphandler_p.h -------------------------------------------------------------------------------- /src/plugins/imageformats/wbmp/wbmp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/wbmp/wbmp.json -------------------------------------------------------------------------------- /src/plugins/imageformats/webp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/webp/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/imageformats/webp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/webp/main.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/webp/qwebphandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/webp/qwebphandler.cpp -------------------------------------------------------------------------------- /src/plugins/imageformats/webp/qwebphandler_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/webp/qwebphandler_p.h -------------------------------------------------------------------------------- /src/plugins/imageformats/webp/webp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/src/plugins/imageformats/webp/webp.json -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/dds/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/dds/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/dds/tst_qdds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/dds/tst_qdds.cpp -------------------------------------------------------------------------------- /tests/auto/heif/BLACKLIST: -------------------------------------------------------------------------------- 1 | [writeImage] 2 | macos-12 arm # HEIC codec doesn't seem to work in Tart VMs 3 | -------------------------------------------------------------------------------- /tests/auto/heif/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/heif/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/heif/tst_qheif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/heif/tst_qheif.cpp -------------------------------------------------------------------------------- /tests/auto/icns/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/icns/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/icns/tst_qicns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/icns/tst_qicns.cpp -------------------------------------------------------------------------------- /tests/auto/jp2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/jp2/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/jp2/tst_qjp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/jp2/tst_qjp2.cpp -------------------------------------------------------------------------------- /tests/auto/mng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/mng/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/mng/tst_qmng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/mng/tst_qmng.cpp -------------------------------------------------------------------------------- /tests/auto/tga/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/tga/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/tga/tst_qtga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/tga/tst_qtga.cpp -------------------------------------------------------------------------------- /tests/auto/tiff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/tiff/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/tiff/tst_qtiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/tiff/tst_qtiff.cpp -------------------------------------------------------------------------------- /tests/auto/wbmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/wbmp/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/wbmp/tst_qwbmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/wbmp/tst_qwbmp.cpp -------------------------------------------------------------------------------- /tests/auto/webp/BLACKLIST: -------------------------------------------------------------------------------- 1 | # QTBUG-130617 2 | [writeImage:kollada_noalpha-100] 3 | vxworks 4 | -------------------------------------------------------------------------------- /tests/auto/webp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/webp/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/webp/images/kollada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/webp/images/kollada.png -------------------------------------------------------------------------------- /tests/auto/webp/images/kollada.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/webp/images/kollada.webp -------------------------------------------------------------------------------- /tests/auto/webp/images/kollada_animation.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/webp/images/kollada_animation.webp -------------------------------------------------------------------------------- /tests/auto/webp/images/kollada_lossless.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/webp/images/kollada_lossless.webp -------------------------------------------------------------------------------- /tests/auto/webp/images/kollada_noalpha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/webp/images/kollada_noalpha.webp -------------------------------------------------------------------------------- /tests/auto/webp/tst_qwebp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/auto/webp/tst_qwebp.cpp -------------------------------------------------------------------------------- /tests/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /tests/benchmarks/benchmarks.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/benchmarks/benchmarks.pro -------------------------------------------------------------------------------- /tests/benchmarks/mng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/benchmarks/mng/CMakeLists.txt -------------------------------------------------------------------------------- /tests/benchmarks/mng/mng.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/benchmarks/mng/mng.pro -------------------------------------------------------------------------------- /tests/benchmarks/mng/tst_qmng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/benchmarks/mng/tst_qmng.cpp -------------------------------------------------------------------------------- /tests/benchmarks/tiff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/benchmarks/tiff/CMakeLists.txt -------------------------------------------------------------------------------- /tests/benchmarks/tiff/tiff.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/benchmarks/tiff/tiff.pro -------------------------------------------------------------------------------- /tests/benchmarks/tiff/tst_qtiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/benchmarks/tiff/tst_qtiff.cpp -------------------------------------------------------------------------------- /tests/shared/images/dds/A16B16G16R16.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A16B16G16R16.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A16B16G16R16F.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A16B16G16R16F.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A1R5G5B5.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A1R5G5B5.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A2B10G10R10.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A2B10G10R10.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A2R10G10B10.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A2R10G10B10.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A2W10V10U10.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A2W10V10U10.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A32B32G32R32F.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A32B32G32R32F.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A4L4.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A4L4.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A4R4G4B4.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A4R4G4B4.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A8B8G8R8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A8B8G8R8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A8L8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A8L8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A8R3G3B2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A8R3G3B2.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A8R8G8B8.2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A8R8G8B8.2.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/A8R8G8B8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/A8R8G8B8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/ATI2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/ATI2.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/CxV8U8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/CxV8U8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/DXT1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/DXT1.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/DXT2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/DXT2.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/DXT3.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/DXT3.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/DXT4.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/DXT4.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/DXT5.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/DXT5.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/G16R16.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/G16R16.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/G16R16F.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/G16R16F.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/G32R32F.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/G32R32F.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/G8R8_G8B8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/G8R8_G8B8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/L16.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/L16.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/L6V5U5.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/L6V5U5.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/L8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/L8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/P4.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/P4.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/P8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/P8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/Q16W16V16U16.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/Q16W16V16U16.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/Q8W8V8U8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/Q8W8V8U8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/R16F.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/R16F.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/R32F.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/R32F.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/R3G3B2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/R3G3B2.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/R5G6B5.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/R5G6B5.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/R8G8B8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/R8G8B8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/R8G8_B8G8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/R8G8_B8G8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/RXGB.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/RXGB.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/UYVY.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/UYVY.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/V16U16.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/V16U16.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/V8U8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/V8U8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/X1R5G5B5.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/X1R5G5B5.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/X4R4G4B4.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/X4R4G4B4.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/X8B8G8R8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/X8B8G8R8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/X8L8V8U8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/X8L8V8U8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/X8R8G8B8.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/X8R8G8B8.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/YUY2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/YUY2.dds -------------------------------------------------------------------------------- /tests/shared/images/dds/mipmaps.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/dds/mipmaps.dds -------------------------------------------------------------------------------- /tests/shared/images/heif/col320x480.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/heif/col320x480.heic -------------------------------------------------------------------------------- /tests/shared/images/heif/newlogoCCW.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/heif/newlogoCCW.heic -------------------------------------------------------------------------------- /tests/shared/images/heif/primary-index-0.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/heif/primary-index-0.heic -------------------------------------------------------------------------------- /tests/shared/images/heif/primary-index-1.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/heif/primary-index-1.heic -------------------------------------------------------------------------------- /tests/shared/images/icns/test-32bit.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/icns/test-32bit.icns -------------------------------------------------------------------------------- /tests/shared/images/icns/test-jp2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/icns/test-jp2.icns -------------------------------------------------------------------------------- /tests/shared/images/icns/test-legacy.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/icns/test-legacy.icns -------------------------------------------------------------------------------- /tests/shared/images/icns/test-png.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/icns/test-png.icns -------------------------------------------------------------------------------- /tests/shared/images/icns/test-variants.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/icns/test-variants.icns -------------------------------------------------------------------------------- /tests/shared/images/icns/test-write-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/icns/test-write-1024.png -------------------------------------------------------------------------------- /tests/shared/images/icns/test-write-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/icns/test-write-128.png -------------------------------------------------------------------------------- /tests/shared/images/icns/test-write-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/icns/test-write-16.png -------------------------------------------------------------------------------- /tests/shared/images/icns/test-write-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/icns/test-write-256.png -------------------------------------------------------------------------------- /tests/shared/images/icns/test-write-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/icns/test-write-32.png -------------------------------------------------------------------------------- /tests/shared/images/icns/test-write-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/icns/test-write-512.png -------------------------------------------------------------------------------- /tests/shared/images/icns/test-write-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/icns/test-write-64.png -------------------------------------------------------------------------------- /tests/shared/images/jp2/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/jp2/logo.bmp -------------------------------------------------------------------------------- /tests/shared/images/jp2/logo.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/jp2/logo.jp2 -------------------------------------------------------------------------------- /tests/shared/images/mng.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/mng.qrc -------------------------------------------------------------------------------- /tests/shared/images/mng/animation.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/mng/animation.mng -------------------------------------------------------------------------------- /tests/shared/images/mng/ball.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/mng/ball.mng -------------------------------------------------------------------------------- /tests/shared/images/mng/corrupt.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/mng/corrupt.mng -------------------------------------------------------------------------------- /tests/shared/images/mng/dutch.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/mng/dutch.mng -------------------------------------------------------------------------------- /tests/shared/images/mng/fire.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/mng/fire.mng -------------------------------------------------------------------------------- /tests/shared/images/tga/test-flag.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tga/test-flag.tga -------------------------------------------------------------------------------- /tests/shared/images/tiff.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff.qrc -------------------------------------------------------------------------------- /tests/shared/images/tiff/16bpc.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/16bpc.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/big_16bpc.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/big_16bpc.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/big_grayscale.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/big_grayscale.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/big_rgb.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/big_rgb.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/big_rgb_bigendian.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/big_rgb_bigendian.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/colorful.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/colorful.bmp -------------------------------------------------------------------------------- /tests/shared/images/tiff/corrupt-data.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/corrupt-data.tif -------------------------------------------------------------------------------- /tests/shared/images/tiff/gray16.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/gray16.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/grayscale-ref.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/grayscale-ref.tif -------------------------------------------------------------------------------- /tests/shared/images/tiff/grayscale.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/grayscale.tif -------------------------------------------------------------------------------- /tests/shared/images/tiff/image.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/image.tif -------------------------------------------------------------------------------- /tests/shared/images/tiff/image_100dpi.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/image_100dpi.tif -------------------------------------------------------------------------------- /tests/shared/images/tiff/indexed_orientation_1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/indexed_orientation_1.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/indexed_orientation_2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/indexed_orientation_2.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/indexed_orientation_3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/indexed_orientation_3.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/indexed_orientation_4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/indexed_orientation_4.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/indexed_orientation_5.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/indexed_orientation_5.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/indexed_orientation_6.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/indexed_orientation_6.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/indexed_orientation_7.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/indexed_orientation_7.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/indexed_orientation_8.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/indexed_orientation_8.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/mono_orientation_1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/mono_orientation_1.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/mono_orientation_2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/mono_orientation_2.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/mono_orientation_3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/mono_orientation_3.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/mono_orientation_4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/mono_orientation_4.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/mono_orientation_5.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/mono_orientation_5.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/mono_orientation_6.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/mono_orientation_6.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/mono_orientation_7.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/mono_orientation_7.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/mono_orientation_8.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/mono_orientation_8.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/multipage.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/multipage.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/oddsize_grayscale.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/oddsize_grayscale.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/oddsize_mono.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/oddsize_mono.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/original_grayscale.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/original_grayscale.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/original_indexed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/original_indexed.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/original_mono.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/original_mono.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/original_rgb.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/original_rgb.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgb_orientation_1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgb_orientation_1.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgb_orientation_2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgb_orientation_2.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgb_orientation_3.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgb_orientation_3.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgb_orientation_4.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgb_orientation_4.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgb_orientation_5.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgb_orientation_5.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgb_orientation_6.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgb_orientation_6.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgb_orientation_7.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgb_orientation_7.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgb_orientation_8.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgb_orientation_8.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgba_adobedeflate_littleendian.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgba_adobedeflate_littleendian.tif -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgba_lzw_littleendian.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgba_lzw_littleendian.tif -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgba_nocompression_bigendian.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgba_nocompression_bigendian.tif -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgba_nocompression_littleendian.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgba_nocompression_littleendian.tif -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgba_packbits_littleendian.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgba_packbits_littleendian.tif -------------------------------------------------------------------------------- /tests/shared/images/tiff/rgba_zipdeflate_littleendian.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/rgba_zipdeflate_littleendian.tif -------------------------------------------------------------------------------- /tests/shared/images/tiff/teapot.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/teapot.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/teapot_cmyk.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/teapot_cmyk.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/tiled_grayscale.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/tiled_grayscale.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/tiled_indexed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/tiled_indexed.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/tiled_mono.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/tiled_mono.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/tiled_oddsize_grayscale.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/tiled_oddsize_grayscale.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/tiled_oddsize_mono.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/tiled_oddsize_mono.tiff -------------------------------------------------------------------------------- /tests/shared/images/tiff/tiled_rgb.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/tiff/tiled_rgb.tiff -------------------------------------------------------------------------------- /tests/shared/images/wbmp/qt-logo-big.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/wbmp/qt-logo-big.wbmp -------------------------------------------------------------------------------- /tests/shared/images/wbmp/qt-logo-small.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtimageformats/HEAD/tests/shared/images/wbmp/qt-logo-small.wbmp --------------------------------------------------------------------------------