├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── create_release.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── radzivon │ │ └── bartoshyk │ │ └── avif │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── alpha_t.avif │ │ ├── animals_00_multilayer_a1op_lsel.avif │ │ ├── bbb_alpha_inverted.avif │ │ ├── bt_2020_pq.avif │ │ ├── extremly_large.avif │ │ ├── hato-wide-gamut-8bit.avif │ │ ├── hato-wide-gamut.avif │ │ ├── hato_custom_icc.avif │ │ ├── hdr │ │ │ ├── Elevate-hdr.avif │ │ │ ├── GUM Mall Lights-hdr.avif │ │ │ ├── Land of the Lost-hdr.avif │ │ │ ├── Lyrical-hdr.avif │ │ │ ├── Sea of Umbrellas at Shibuya Crossing-hdr.avif │ │ │ ├── The Grand Mosque-hdr.avif │ │ │ ├── Triad-hdr.avif │ │ │ ├── castle-hdr.avif │ │ │ ├── club.avif │ │ │ ├── future city.avif │ │ │ └── house on lake.avif │ │ ├── hdr_cosmos01000_cicp9-16-9_yuv420_limited_qp40.avif │ │ ├── hdr_cosmos07296_12bit.avif │ │ ├── hdr_cosmos07296_cicp9-16-9_yuv444_full_qp10.avif │ │ ├── heic_icc.heic │ │ ├── pexels-heif.heif │ │ ├── pngtree.avif │ │ ├── result.heic │ │ ├── sdr_cosmos01000_cicp1-13-6_yuv444_full_qp20.avif │ │ ├── sdr_cosmos12920_cicp1-13-6_yuv444_full_qp20.avif │ │ ├── test_1.jpg │ │ ├── test_2.jpg │ │ ├── test_3.jpg │ │ ├── test_4.jpg │ │ ├── test_5.jpg │ │ ├── test_avif.avif │ │ └── test_avif_12_bitdepth.avif │ ├── cpp │ │ ├── CMakeLists.txt │ │ └── native-lib.cpp │ ├── java │ │ └── com │ │ │ └── radzivon │ │ │ └── bartoshyk │ │ │ └── avif │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ ├── ic_launcher_foreground.xml │ │ └── test_png_with_alpha.png │ │ ├── drawable-xxhdpi │ │ └── test_png.png │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── binding_image_view.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── radzivon │ └── bartoshyk │ └── avif │ └── ExampleUnitTest.kt ├── avif-coder-coil ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── github │ └── awxkee │ └── avifcoil │ └── HeifDecoder.kt ├── avif-coder ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── AvifDecoderController.cpp │ ├── AvifDecoderController.h │ ├── CMakeLists.txt │ ├── Eigen │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── KLUSupport │ │ ├── LU │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── Cholesky │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_LAPACKE.h │ │ │ ├── CholmodSupport │ │ │ └── CholmodSupport.h │ │ │ ├── Core │ │ │ ├── ArithmeticSequence.h │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── AssignEvaluator.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CommaInitializer.h │ │ │ ├── ConditionEstimator.h │ │ │ ├── CoreEvaluators.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseTernaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── IndexedView.h │ │ │ ├── Inverse.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── MathFunctionsImpl.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PartialReduxEvaluator.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductEvaluators.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── Reshaped.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── Solve.h │ │ │ ├── SolveTriangular.h │ │ │ ├── SolverBase.h │ │ │ ├── StableNorm.h │ │ │ ├── StlIterators.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AVX │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AVX512 │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AltiVec │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── MatrixProduct.h │ │ │ │ │ ├── MatrixProductCommon.h │ │ │ │ │ ├── MatrixProductMMA.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CUDA │ │ │ │ │ └── Complex.h │ │ │ │ ├── Default │ │ │ │ │ ├── BFloat16.h │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ │ ├── Half.h │ │ │ │ │ ├── Settings.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── GPU │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── HIP │ │ │ │ │ └── hcc │ │ │ │ │ │ └── math_constants.h │ │ │ │ ├── MSA │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── NEON │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SSE │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SVE │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── SYCL │ │ │ │ │ ├── InteropHeaders.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── SyclMemoryModel.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ └── ZVector │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── functors │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ ├── BinaryFunctors.h │ │ │ │ ├── NullaryFunctors.h │ │ │ │ ├── StlFunctors.h │ │ │ │ ├── TernaryFunctors.h │ │ │ │ └── UnaryFunctors.h │ │ │ ├── products │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── ConfigureVectorization.h │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ ├── IntegralConstant.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── ReshapedHelper.h │ │ │ │ ├── StaticAssert.h │ │ │ │ ├── SymbolicIndex.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigenvalues │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_LAPACKE.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch │ │ │ │ └── Geometry_SIMD.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteCholesky.h │ │ │ ├── IncompleteLUT.h │ │ │ ├── IterativeSolverBase.h │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ └── SolveWithGuess.h │ │ │ ├── Jacobi │ │ │ └── Jacobi.h │ │ │ ├── KLUSupport │ │ │ └── KLUSupport.h │ │ │ ├── LU │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── InverseImpl.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ └── arch │ │ │ │ └── InverseSize4.h │ │ │ ├── MetisSupport │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ ├── Eigen_Colamd.h │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ ├── SPQRSupport │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD │ │ │ ├── BDCSVD.h │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ ├── SVDBase.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseAssign.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCompressedBase.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMap.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseRef.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSolverBase.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU │ │ │ ├── SparseLU.h │ │ │ ├── SparseLUImpl.h │ │ │ ├── SparseLU_Memory.h │ │ │ ├── SparseLU_Structs.h │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ ├── SparseLU_Utils.h │ │ │ ├── SparseLU_column_bmod.h │ │ │ ├── SparseLU_column_dfs.h │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ ├── SparseLU_panel_bmod.h │ │ │ ├── SparseLU_panel_dfs.h │ │ │ ├── SparseLU_pivotL.h │ │ │ ├── SparseLU_pruneL.h │ │ │ └── SparseLU_relax_snode.h │ │ │ ├── SparseQR │ │ │ └── SparseQR.h │ │ │ ├── StlSupport │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── RealSvd2x2.h │ │ │ ├── blas.h │ │ │ ├── lapack.h │ │ │ ├── lapacke.h │ │ │ └── lapacke_mangling.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── IndexedViewMethods.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ ├── MatrixCwiseUnaryOps.h │ │ │ └── ReshapedMethods.h │ ├── HardwareBuffersCompat.cpp │ ├── HardwareBuffersCompat.h │ ├── HeifImageDecoder.cpp │ ├── HeifImageDecoder.h │ ├── IccRecognizer.cpp │ ├── IccRecognizer.h │ ├── ImageFrame.h │ ├── JniAnimatedController.cpp │ ├── JniBitmap.cpp │ ├── JniBitmap.h │ ├── JniDecoder.cpp │ ├── JniEncoder.cpp │ ├── JniException.cpp │ ├── JniException.h │ ├── ReformatBitmap.cpp │ ├── ReformatBitmap.h │ ├── SizeScaler.cpp │ ├── SizeScaler.h │ ├── Support.cpp │ ├── Support.h │ ├── algo │ │ └── concurrency.hpp │ ├── aligned_allocator.h │ ├── avif │ │ ├── CMakeLists.txt │ │ ├── alpha.c │ │ ├── aom │ │ │ ├── aom.h │ │ │ ├── aom_codec.h │ │ │ ├── aom_decoder.h │ │ │ ├── aom_encoder.h │ │ │ ├── aom_external_partition.h │ │ │ ├── aom_frame_buffer.h │ │ │ ├── aom_image.h │ │ │ ├── aom_integer.h │ │ │ ├── aomcx.h │ │ │ ├── aomdx.h │ │ │ ├── exports_com │ │ │ ├── exports_dec │ │ │ ├── exports_enc │ │ │ ├── exports_test │ │ │ └── internal │ │ │ │ ├── aom_codec_internal.h │ │ │ │ └── aom_image_internal.h │ │ ├── avif.c │ │ ├── avif.h │ │ ├── avif_cxx.h │ │ ├── codec_aom.c │ │ ├── codec_dav1d.c │ │ ├── codec_svt.c │ │ ├── colr.c │ │ ├── colrconvert.c │ │ ├── dav1d │ │ │ ├── common.h │ │ │ ├── data.h │ │ │ ├── dav1d.h │ │ │ ├── headers.h │ │ │ ├── picture.h │ │ │ └── version.h │ │ ├── diag.c │ │ ├── exif.c │ │ ├── gainmap.c │ │ ├── internal.h │ │ ├── io.c │ │ ├── mem.c │ │ ├── obu.c │ │ ├── rawdata.c │ │ ├── read.c │ │ ├── reformat.c │ │ ├── reformat_libsharpyuv.c │ │ ├── reformat_libyuv.c │ │ ├── scale.c │ │ ├── sharpyuv │ │ │ ├── sharpyuv.h │ │ │ └── sharpyuv_csp.h │ │ ├── stream.c │ │ ├── utils.c │ │ └── write.c │ ├── avifweaver.h │ ├── colorspace │ │ ├── AcesToneMapper.cpp │ │ ├── AcesToneMapper.h │ │ ├── ColorMatrix.cpp │ │ ├── ColorMatrix.h │ │ ├── ColorSpaceProfile.h │ │ ├── DataSpaceToNCLX.hpp │ │ ├── FilmicToneMapper.cpp │ │ ├── FilmicToneMapper.h │ │ ├── ITUR.h │ │ ├── LogarithmicToneMapper.cpp │ │ ├── LogarithmicToneMapper.h │ │ ├── Oklab.hpp │ │ ├── Rec2408ToneMapper.cpp │ │ ├── Rec2408ToneMapper.h │ │ ├── ToneMapper.h │ │ ├── Trc.cpp │ │ ├── Trc.h │ │ ├── colorspace.cpp │ │ └── colorspace.h │ ├── definitions.h │ ├── imagebits │ │ ├── CopyUnalignedRGBA.cpp │ │ ├── CopyUnalignedRGBA.h │ │ ├── RGBAlpha.cpp │ │ ├── RGBAlpha.h │ │ ├── Rgb1010102.cpp │ │ ├── Rgb1010102.h │ │ ├── Rgb565.cpp │ │ ├── Rgb565.h │ │ ├── Rgba16.cpp │ │ ├── Rgba16.h │ │ ├── Rgba8ToF16.cpp │ │ ├── Rgba8ToF16.h │ │ ├── RgbaF16bitNBitU8.cpp │ │ ├── RgbaF16bitNBitU8.h │ │ ├── RgbaF16bitToNBitU16.cpp │ │ ├── RgbaF16bitToNBitU16.h │ │ ├── RgbaU16toHF.cpp │ │ ├── RgbaU16toHF.h │ │ ├── ScanAlpha.cpp │ │ ├── ScanAlpha.h │ │ ├── half.cpp │ │ └── half.hpp │ ├── lib │ │ ├── arm64-v8a │ │ │ ├── libaom.so │ │ │ ├── libavifweaver.a │ │ │ ├── libdav1d.so │ │ │ ├── libde265.so │ │ │ ├── libheif.so │ │ │ ├── libsharpyuv.a │ │ │ ├── libx265.so │ │ │ └── libyuv.a │ │ ├── armeabi-v7a │ │ │ ├── libaom.so │ │ │ ├── libavifweaver.a │ │ │ ├── libdav1d.so │ │ │ ├── libde265.so │ │ │ ├── libheif.so │ │ │ ├── libsharpyuv.a │ │ │ ├── libx265.so │ │ │ └── libyuv.a │ │ ├── x86 │ │ │ ├── libaom.so │ │ │ ├── libavifweaver.a │ │ │ ├── libdav1d.so │ │ │ ├── libde265.so │ │ │ ├── libheif.so │ │ │ ├── libsharpyuv.a │ │ │ ├── libx265.so │ │ │ └── libyuv.a │ │ └── x86_64 │ │ │ ├── libaom.so │ │ │ ├── libavifweaver.a │ │ │ ├── libdav1d.so │ │ │ ├── libde265.so │ │ │ ├── libheif.so │ │ │ ├── libsharpyuv.a │ │ │ ├── libx265.so │ │ │ └── libyuv.a │ ├── libheif │ │ ├── heif.h │ │ └── heif_version.h │ ├── libyuv │ │ ├── libyuv.h │ │ └── libyuv │ │ │ ├── basic_types.h │ │ │ ├── compare.h │ │ │ ├── compare_row.h │ │ │ ├── convert.h │ │ │ ├── convert_argb.h │ │ │ ├── convert_from.h │ │ │ ├── convert_from_argb.h │ │ │ ├── cpu_id.h │ │ │ ├── loongson_intrinsics.h │ │ │ ├── macros_msa.h │ │ │ ├── mjpeg_decoder.h │ │ │ ├── planar_functions.h │ │ │ ├── rotate.h │ │ │ ├── rotate_argb.h │ │ │ ├── rotate_row.h │ │ │ ├── row.h │ │ │ ├── scale.h │ │ │ ├── scale_argb.h │ │ │ ├── scale_rgb.h │ │ │ ├── scale_row.h │ │ │ ├── scale_uv.h │ │ │ ├── version.h │ │ │ └── video_common.h │ └── vendor │ │ ├── libde265 │ │ ├── de265-version.h │ │ └── de265.h │ │ └── stub.h │ ├── java │ └── com │ │ └── radzivon │ │ └── bartoshyk │ │ └── avif │ │ └── coder │ │ ├── AvifAnimatedDecoder.kt │ │ ├── AvifChromaSubsampling.kt │ │ ├── AvifSpeed.kt │ │ ├── AvifSurfaceMode.kt │ │ ├── CorruptedBitDepthException.kt │ │ ├── GetPixelsException.kt │ │ ├── HardwareBitmapIsNotImplementedException.kt │ │ ├── HeifCoder.kt │ │ ├── HeifPreset.kt │ │ ├── HeifQualityArg.kt │ │ ├── PreciseMode.kt │ │ ├── PreferredColorConfig.kt │ │ ├── ScaleMode.kt │ │ ├── ScalingQuality.kt │ │ ├── ToneMapper.kt │ │ └── UnsupportedImageFormatException.kt │ └── shaders │ ├── GammaOetf.comp │ ├── HLG.comp │ ├── SMPTE2084.comp │ └── SMPTE428.comp ├── avifpixart ├── .cargo │ └── config.toml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── build.rs ├── build.sh ├── cbindgen.toml └── src │ ├── cvt.rs │ ├── icc.rs │ ├── lib.rs │ ├── rgb_to_yuv.rs │ ├── support.rs │ └── tonemapper.rs ├── conf └── dav1d_conf_build.sh ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml └── settings.gradle /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: awxkee 4 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/create_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/.github/workflows/create_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/radzivon/bartoshyk/avif/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/androidTest/java/com/radzivon/bartoshyk/avif/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/alpha_t.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/alpha_t.avif -------------------------------------------------------------------------------- /app/src/main/assets/animals_00_multilayer_a1op_lsel.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/animals_00_multilayer_a1op_lsel.avif -------------------------------------------------------------------------------- /app/src/main/assets/bbb_alpha_inverted.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/bbb_alpha_inverted.avif -------------------------------------------------------------------------------- /app/src/main/assets/bt_2020_pq.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/bt_2020_pq.avif -------------------------------------------------------------------------------- /app/src/main/assets/extremly_large.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/extremly_large.avif -------------------------------------------------------------------------------- /app/src/main/assets/hato-wide-gamut-8bit.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hato-wide-gamut-8bit.avif -------------------------------------------------------------------------------- /app/src/main/assets/hato-wide-gamut.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hato-wide-gamut.avif -------------------------------------------------------------------------------- /app/src/main/assets/hato_custom_icc.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hato_custom_icc.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr/Elevate-hdr.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr/Elevate-hdr.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr/GUM Mall Lights-hdr.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr/GUM Mall Lights-hdr.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr/Land of the Lost-hdr.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr/Land of the Lost-hdr.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr/Lyrical-hdr.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr/Lyrical-hdr.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr/Sea of Umbrellas at Shibuya Crossing-hdr.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr/Sea of Umbrellas at Shibuya Crossing-hdr.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr/The Grand Mosque-hdr.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr/The Grand Mosque-hdr.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr/Triad-hdr.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr/Triad-hdr.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr/castle-hdr.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr/castle-hdr.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr/club.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr/club.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr/future city.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr/future city.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr/house on lake.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr/house on lake.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr_cosmos01000_cicp9-16-9_yuv420_limited_qp40.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr_cosmos01000_cicp9-16-9_yuv420_limited_qp40.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr_cosmos07296_12bit.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr_cosmos07296_12bit.avif -------------------------------------------------------------------------------- /app/src/main/assets/hdr_cosmos07296_cicp9-16-9_yuv444_full_qp10.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/hdr_cosmos07296_cicp9-16-9_yuv444_full_qp10.avif -------------------------------------------------------------------------------- /app/src/main/assets/heic_icc.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/heic_icc.heic -------------------------------------------------------------------------------- /app/src/main/assets/pexels-heif.heif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/pexels-heif.heif -------------------------------------------------------------------------------- /app/src/main/assets/pngtree.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/pngtree.avif -------------------------------------------------------------------------------- /app/src/main/assets/result.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/result.heic -------------------------------------------------------------------------------- /app/src/main/assets/sdr_cosmos01000_cicp1-13-6_yuv444_full_qp20.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/sdr_cosmos01000_cicp1-13-6_yuv444_full_qp20.avif -------------------------------------------------------------------------------- /app/src/main/assets/sdr_cosmos12920_cicp1-13-6_yuv444_full_qp20.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/sdr_cosmos12920_cicp1-13-6_yuv444_full_qp20.avif -------------------------------------------------------------------------------- /app/src/main/assets/test_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/test_1.jpg -------------------------------------------------------------------------------- /app/src/main/assets/test_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/test_2.jpg -------------------------------------------------------------------------------- /app/src/main/assets/test_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/test_3.jpg -------------------------------------------------------------------------------- /app/src/main/assets/test_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/test_4.jpg -------------------------------------------------------------------------------- /app/src/main/assets/test_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/test_5.jpg -------------------------------------------------------------------------------- /app/src/main/assets/test_avif.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/test_avif.avif -------------------------------------------------------------------------------- /app/src/main/assets/test_avif_12_bitdepth.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/assets/test_avif_12_bitdepth.avif -------------------------------------------------------------------------------- /app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /app/src/main/java/com/radzivon/bartoshyk/avif/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/java/com/radzivon/bartoshyk/avif/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/test_png_with_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/drawable-v24/test_png_with_alpha.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/test_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/drawable-xxhdpi/test_png.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/binding_image_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/layout/binding_image_view.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/radzivon/bartoshyk/avif/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/app/src/test/java/com/radzivon/bartoshyk/avif/ExampleUnitTest.kt -------------------------------------------------------------------------------- /avif-coder-coil/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /avif-coder-coil/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder-coil/build.gradle.kts -------------------------------------------------------------------------------- /avif-coder-coil/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder-coil/proguard-rules.pro -------------------------------------------------------------------------------- /avif-coder-coil/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder-coil/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /avif-coder-coil/src/main/java/com/github/awxkee/avifcoil/HeifDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder-coil/src/main/java/com/github/awxkee/avifcoil/HeifDecoder.kt -------------------------------------------------------------------------------- /avif-coder/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /avif-coder/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/build.gradle.kts -------------------------------------------------------------------------------- /avif-coder/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/consumer-rules.pro -------------------------------------------------------------------------------- /avif-coder/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/proguard-rules.pro -------------------------------------------------------------------------------- /avif-coder/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/AvifDecoderController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/AvifDecoderController.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/AvifDecoderController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/AvifDecoderController.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/Cholesky -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/CholmodSupport -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/Core -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/Dense -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/Eigen -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/Eigenvalues -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/Geometry -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/Householder -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/Jacobi -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/KLUSupport -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/LU -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/MetisSupport -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/OrderingMethods -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/PardisoSupport -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/QR -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/SPQRSupport -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/SVD -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/Sparse -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/SparseCholesky -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/SparseCore -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/SparseLU -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/SparseQR -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/StdDeque -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/StdList -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/StdVector -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/ArithmeticSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/ArithmeticSequence.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/IndexedView.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/PartialReduxEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/PartialReduxEvaluator.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Reshaped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Reshaped.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/StlIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/StlIterators.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX512/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX512/Complex.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX512/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AVX512/TypeCasting.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MatrixProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MatrixProduct.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/BFloat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/BFloat16.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/Half.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/Default/TypeCasting.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/GPU/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/GPU/MathFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/GPU/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/GPU/PacketMath.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/GPU/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/GPU/TypeCasting.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/HIP/hcc/math_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/HIP/hcc/math_constants.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/MSA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/MSA/Complex.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/MSA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/MSA/MathFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/MSA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/MSA/PacketMath.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/NEON/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/NEON/TypeCasting.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/SVE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/SVE/MathFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/SVE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/SVE/PacketMath.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/SVE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/SVE/TypeCasting.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/SYCL/InteropHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/SYCL/InteropHeaders.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/SYCL/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/SYCL/MathFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/SYCL/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/SYCL/PacketMath.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/SYCL/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/SYCL/TypeCasting.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/ConfigureVectorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/ConfigureVectorization.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/IndexedViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/IndexedViewHelper.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/IntegralConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/IntegralConstant.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/ReshapedHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/ReshapedHelper.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/SymbolicIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/SymbolicIndex.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Geometry/arch/Geometry_SIMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Geometry/arch/Geometry_SIMD.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/KLUSupport/KLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/KLUSupport/KLUSupport.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/LU/arch/InverseSize4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/LU/arch/InverseSize4.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/plugins/IndexedViewMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/plugins/IndexedViewMethods.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Eigen/src/plugins/ReshapedMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Eigen/src/plugins/ReshapedMethods.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/HardwareBuffersCompat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/HardwareBuffersCompat.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/HardwareBuffersCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/HardwareBuffersCompat.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/HeifImageDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/HeifImageDecoder.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/HeifImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/HeifImageDecoder.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/IccRecognizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/IccRecognizer.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/IccRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/IccRecognizer.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/ImageFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/ImageFrame.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/JniAnimatedController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/JniAnimatedController.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/JniBitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/JniBitmap.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/JniBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/JniBitmap.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/JniDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/JniDecoder.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/JniEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/JniEncoder.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/JniException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/JniException.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/JniException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/JniException.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/ReformatBitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/ReformatBitmap.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/ReformatBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/ReformatBitmap.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/SizeScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/SizeScaler.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/SizeScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/SizeScaler.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Support.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/Support.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/algo/concurrency.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/algo/concurrency.hpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/aligned_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/aligned_allocator.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/CMakeLists.txt -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/alpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/alpha.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/aom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/aom.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/aom_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/aom_codec.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/aom_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/aom_decoder.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/aom_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/aom_encoder.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/aom_external_partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/aom_external_partition.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/aom_frame_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/aom_frame_buffer.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/aom_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/aom_image.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/aom_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/aom_integer.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/aomcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/aomcx.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/aomdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/aomdx.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/exports_com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/exports_com -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/exports_dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/exports_dec -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/exports_enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/exports_enc -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/exports_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/exports_test -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/internal/aom_codec_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/internal/aom_codec_internal.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/aom/internal/aom_image_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/aom/internal/aom_image_internal.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/avif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/avif.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/avif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/avif.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/avif_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/avif_cxx.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/codec_aom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/codec_aom.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/codec_dav1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/codec_dav1d.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/codec_svt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/codec_svt.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/colr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/colr.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/colrconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/colrconvert.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/dav1d/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/dav1d/common.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/dav1d/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/dav1d/data.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/dav1d/dav1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/dav1d/dav1d.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/dav1d/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/dav1d/headers.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/dav1d/picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/dav1d/picture.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/dav1d/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/dav1d/version.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/diag.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/exif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/exif.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/gainmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/gainmap.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/internal.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/io.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/mem.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/obu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/obu.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/rawdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/rawdata.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/read.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/reformat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/reformat.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/reformat_libsharpyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/reformat_libsharpyuv.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/reformat_libyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/reformat_libyuv.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/scale.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/sharpyuv/sharpyuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/sharpyuv/sharpyuv.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/sharpyuv/sharpyuv_csp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/sharpyuv/sharpyuv_csp.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/stream.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/utils.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avif/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avif/write.c -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/avifweaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/avifweaver.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/AcesToneMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/AcesToneMapper.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/AcesToneMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/AcesToneMapper.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/ColorMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/ColorMatrix.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/ColorMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/ColorMatrix.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/ColorSpaceProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/ColorSpaceProfile.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/DataSpaceToNCLX.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/DataSpaceToNCLX.hpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/FilmicToneMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/FilmicToneMapper.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/FilmicToneMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/FilmicToneMapper.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/ITUR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/ITUR.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/LogarithmicToneMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/LogarithmicToneMapper.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/LogarithmicToneMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/LogarithmicToneMapper.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/Oklab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/Oklab.hpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/Rec2408ToneMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/Rec2408ToneMapper.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/Rec2408ToneMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/Rec2408ToneMapper.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/ToneMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/ToneMapper.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/Trc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/Trc.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/Trc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/Trc.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/colorspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/colorspace.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/colorspace/colorspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/colorspace/colorspace.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/definitions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/CopyUnalignedRGBA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/CopyUnalignedRGBA.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/CopyUnalignedRGBA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/CopyUnalignedRGBA.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/RGBAlpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/RGBAlpha.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/RGBAlpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/RGBAlpha.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/Rgb1010102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/Rgb1010102.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/Rgb1010102.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/Rgb1010102.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/Rgb565.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/Rgb565.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/Rgb565.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/Rgb565.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/Rgba16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/Rgba16.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/Rgba16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/Rgba16.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/Rgba8ToF16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/Rgba8ToF16.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/Rgba8ToF16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/Rgba8ToF16.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/RgbaF16bitNBitU8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/RgbaF16bitNBitU8.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/RgbaF16bitNBitU8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/RgbaF16bitNBitU8.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/RgbaF16bitToNBitU16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/RgbaF16bitToNBitU16.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/RgbaF16bitToNBitU16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/RgbaF16bitToNBitU16.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/RgbaU16toHF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/RgbaU16toHF.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/RgbaU16toHF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/RgbaU16toHF.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/ScanAlpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/ScanAlpha.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/ScanAlpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/ScanAlpha.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/half.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/half.cpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/imagebits/half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/imagebits/half.hpp -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/arm64-v8a/libaom.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/arm64-v8a/libaom.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/arm64-v8a/libavifweaver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/arm64-v8a/libavifweaver.a -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/arm64-v8a/libdav1d.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/arm64-v8a/libdav1d.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/arm64-v8a/libde265.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/arm64-v8a/libde265.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/arm64-v8a/libheif.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/arm64-v8a/libheif.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/arm64-v8a/libsharpyuv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/arm64-v8a/libsharpyuv.a -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/arm64-v8a/libx265.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/arm64-v8a/libx265.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/arm64-v8a/libyuv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/arm64-v8a/libyuv.a -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/armeabi-v7a/libaom.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/armeabi-v7a/libaom.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/armeabi-v7a/libavifweaver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/armeabi-v7a/libavifweaver.a -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/armeabi-v7a/libdav1d.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/armeabi-v7a/libdav1d.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/armeabi-v7a/libde265.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/armeabi-v7a/libde265.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/armeabi-v7a/libheif.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/armeabi-v7a/libheif.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/armeabi-v7a/libsharpyuv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/armeabi-v7a/libsharpyuv.a -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/armeabi-v7a/libx265.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/armeabi-v7a/libx265.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/armeabi-v7a/libyuv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/armeabi-v7a/libyuv.a -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86/libaom.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86/libaom.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86/libavifweaver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86/libavifweaver.a -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86/libdav1d.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86/libdav1d.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86/libde265.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86/libde265.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86/libheif.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86/libheif.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86/libsharpyuv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86/libsharpyuv.a -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86/libx265.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86/libx265.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86/libyuv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86/libyuv.a -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86_64/libaom.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86_64/libaom.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86_64/libavifweaver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86_64/libavifweaver.a -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86_64/libdav1d.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86_64/libdav1d.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86_64/libde265.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86_64/libde265.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86_64/libheif.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86_64/libheif.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86_64/libsharpyuv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86_64/libsharpyuv.a -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86_64/libx265.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86_64/libx265.so -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/lib/x86_64/libyuv.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/lib/x86_64/libyuv.a -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libheif/heif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libheif/heif.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libheif/heif_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libheif/heif_version.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/basic_types.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/compare.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/compare_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/compare_row.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/convert.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/convert_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/convert_argb.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/convert_from.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/convert_from.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/convert_from_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/convert_from_argb.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/cpu_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/cpu_id.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/loongson_intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/loongson_intrinsics.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/macros_msa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/macros_msa.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/mjpeg_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/mjpeg_decoder.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/planar_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/planar_functions.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/rotate.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/rotate_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/rotate_argb.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/rotate_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/rotate_row.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/row.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/scale.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/scale_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/scale_argb.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/scale_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/scale_rgb.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/scale_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/scale_row.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/scale_uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/scale_uv.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/version.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/libyuv/libyuv/video_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/libyuv/libyuv/video_common.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/vendor/libde265/de265-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/vendor/libde265/de265-version.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/vendor/libde265/de265.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/vendor/libde265/de265.h -------------------------------------------------------------------------------- /avif-coder/src/main/cpp/vendor/stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/cpp/vendor/stub.h -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/AvifAnimatedDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/AvifAnimatedDecoder.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/AvifChromaSubsampling.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/AvifChromaSubsampling.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/AvifSpeed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/AvifSpeed.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/AvifSurfaceMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/AvifSurfaceMode.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/CorruptedBitDepthException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/CorruptedBitDepthException.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/GetPixelsException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/GetPixelsException.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/HardwareBitmapIsNotImplementedException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/HardwareBitmapIsNotImplementedException.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/HeifCoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/HeifCoder.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/HeifPreset.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/HeifPreset.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/HeifQualityArg.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/HeifQualityArg.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/PreciseMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/PreciseMode.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/PreferredColorConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/PreferredColorConfig.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/ScaleMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/ScaleMode.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/ScalingQuality.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/ScalingQuality.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/ToneMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/ToneMapper.kt -------------------------------------------------------------------------------- /avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/UnsupportedImageFormatException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/java/com/radzivon/bartoshyk/avif/coder/UnsupportedImageFormatException.kt -------------------------------------------------------------------------------- /avif-coder/src/main/shaders/GammaOetf.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/shaders/GammaOetf.comp -------------------------------------------------------------------------------- /avif-coder/src/main/shaders/HLG.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/shaders/HLG.comp -------------------------------------------------------------------------------- /avif-coder/src/main/shaders/SMPTE2084.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/shaders/SMPTE2084.comp -------------------------------------------------------------------------------- /avif-coder/src/main/shaders/SMPTE428.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avif-coder/src/main/shaders/SMPTE428.comp -------------------------------------------------------------------------------- /avifpixart/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avifpixart/.cargo/config.toml -------------------------------------------------------------------------------- /avifpixart/.gitignore: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /avifpixart/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avifpixart/Cargo.lock -------------------------------------------------------------------------------- /avifpixart/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avifpixart/Cargo.toml -------------------------------------------------------------------------------- /avifpixart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avifpixart/README.md -------------------------------------------------------------------------------- /avifpixart/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avifpixart/build.rs -------------------------------------------------------------------------------- /avifpixart/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avifpixart/build.sh -------------------------------------------------------------------------------- /avifpixart/cbindgen.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /avifpixart/src/cvt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avifpixart/src/cvt.rs -------------------------------------------------------------------------------- /avifpixart/src/icc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avifpixart/src/icc.rs -------------------------------------------------------------------------------- /avifpixart/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avifpixart/src/lib.rs -------------------------------------------------------------------------------- /avifpixart/src/rgb_to_yuv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avifpixart/src/rgb_to_yuv.rs -------------------------------------------------------------------------------- /avifpixart/src/support.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avifpixart/src/support.rs -------------------------------------------------------------------------------- /avifpixart/src/tonemapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/avifpixart/src/tonemapper.rs -------------------------------------------------------------------------------- /conf/dav1d_conf_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/conf/dav1d_conf_build.sh -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/jitpack.yml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/avif-coder/HEAD/settings.gradle --------------------------------------------------------------------------------