├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── create_release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE-BSD.md ├── LICENSE.md ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── awxkee │ │ └── jxlcoder │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── alpha_jxl.jxl │ │ ├── alpha_png_freepik.jxl │ │ ├── animated_jxl.jxl │ │ ├── art.jxl │ │ ├── dark_street.jxl │ │ ├── first_jxl.jxl │ │ ├── hdr_cosmos.jxl │ │ ├── jxl_icc_12.bit.jxl │ │ ├── large_jxl.jxl │ │ ├── pexels-thibaut-tattevin-18273081.jxl │ │ ├── second_jxl.jxl │ │ ├── summer_nature.jxl │ │ └── wide_gamut.jxl │ ├── java │ │ └── com │ │ │ └── awxkee │ │ │ └── jxlcoder │ │ │ ├── JxlDecoder.kt │ │ │ ├── MainActivity.kt │ │ │ ├── glide │ │ │ ├── JxlCoderByteBufferDecoder.kt │ │ │ ├── JxlCoderStreamDecoder.kt │ │ │ └── JxlGlideModule.kt │ │ │ └── ui │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── res │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_launcher_foreground.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── awxkee │ └── jxlcoder │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml ├── jxlcoder ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── download_deps.sh ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── awxkee │ │ └── jxlcoder │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── EasyGifReader.cpp │ │ ├── EasyGifReader.h │ │ ├── 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 │ │ ├── JXLConventions.cpp │ │ ├── JXLJpegInterop.cpp │ │ ├── JniDecoding.cpp │ │ ├── JniExceptions.cpp │ │ ├── JniExceptions.h │ │ ├── JxlAnimatedDecoderCoordinator.cpp │ │ ├── JxlAnimatedDecoderCoordinator.h │ │ ├── JxlAnimatedEncoderCoordinator.cpp │ │ ├── JxlAnimatedEncoderCoordinator.h │ │ ├── JxlEncoder.cpp │ │ ├── ReformatBitmap.cpp │ │ ├── ReformatBitmap.h │ │ ├── SizeScaler.cpp │ │ ├── SizeScaler.h │ │ ├── Support.cpp │ │ ├── Support.h │ │ ├── XScaler.cpp │ │ ├── XScaler.h │ │ ├── algo │ │ │ ├── common.h │ │ │ ├── concurrency.hpp │ │ │ ├── fast_math-inl.h │ │ │ ├── math-inl.h │ │ │ ├── rational_polynomial-inl.h │ │ │ ├── sampler-inl.h │ │ │ └── sampler.h │ │ ├── aligned_allocator.h │ │ ├── colorspaces │ │ │ ├── AcesToneMapper.cpp │ │ │ ├── AcesToneMapper.h │ │ │ ├── ColorMatrix.cpp │ │ │ ├── ColorMatrix.h │ │ │ ├── ColorSpaceProfile.h │ │ │ ├── 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 │ │ ├── conversion │ │ │ ├── ConversionUtils.h │ │ │ ├── HalfFloats.cpp │ │ │ ├── HalfFloats.h │ │ │ ├── RgbChannels.cpp │ │ │ ├── RgbChannels.h │ │ │ └── half.hpp │ │ ├── definitions.h │ │ ├── giflib │ │ │ ├── CMakeLists.txt │ │ │ ├── dgif_lib.c │ │ │ ├── egif_lib.c │ │ │ ├── getarg.c │ │ │ ├── getarg.h │ │ │ ├── gif2rgb.c │ │ │ ├── gif_err.c │ │ │ ├── gif_font.c │ │ │ ├── gif_hash.c │ │ │ ├── gif_hash.h │ │ │ ├── gif_lib.h │ │ │ ├── gif_lib_private.h │ │ │ ├── gifalloc.c │ │ │ ├── gifbg.c │ │ │ ├── gifbuild.c │ │ │ ├── gifclrmp.c │ │ │ ├── gifcolor.c │ │ │ ├── gifecho.c │ │ │ ├── giffilter.c │ │ │ ├── giffix.c │ │ │ ├── gifhisto.c │ │ │ ├── gifinto.c │ │ │ ├── gifsponge.c │ │ │ ├── giftext.c │ │ │ ├── giftool.c │ │ │ ├── gifwedge.c │ │ │ ├── openbsd-reallocarray.c │ │ │ ├── qprintf.c │ │ │ └── quantize.c │ │ ├── hwy │ │ │ ├── aligned_allocator.cc │ │ │ ├── aligned_allocator.h │ │ │ ├── base.h │ │ │ ├── cache_control.h │ │ │ ├── contrib │ │ │ │ ├── algo │ │ │ │ │ ├── copy-inl.h │ │ │ │ │ ├── copy_test.cc │ │ │ │ │ ├── find-inl.h │ │ │ │ │ ├── find_test.cc │ │ │ │ │ ├── transform-inl.h │ │ │ │ │ └── transform_test.cc │ │ │ │ ├── bit_pack │ │ │ │ │ ├── bit_pack-inl.h │ │ │ │ │ └── bit_pack_test.cc │ │ │ │ ├── dot │ │ │ │ │ ├── dot-inl.h │ │ │ │ │ └── dot_test.cc │ │ │ │ ├── image │ │ │ │ │ ├── image.cc │ │ │ │ │ ├── image.h │ │ │ │ │ └── image_test.cc │ │ │ │ ├── math │ │ │ │ │ ├── math-inl.h │ │ │ │ │ └── math_test.cc │ │ │ │ ├── matvec │ │ │ │ │ ├── matvec-inl.h │ │ │ │ │ └── matvec_test.cc │ │ │ │ ├── sort │ │ │ │ │ ├── README.md │ │ │ │ │ ├── algo-inl.h │ │ │ │ │ ├── bench_parallel.cc │ │ │ │ │ ├── bench_sort.cc │ │ │ │ │ ├── order.h │ │ │ │ │ ├── print_network.cc │ │ │ │ │ ├── result-inl.h │ │ │ │ │ ├── shared-inl.h │ │ │ │ │ ├── sort_test.cc │ │ │ │ │ ├── sorting_networks-inl.h │ │ │ │ │ ├── traits-inl.h │ │ │ │ │ ├── traits128-inl.h │ │ │ │ │ ├── vqsort-inl.h │ │ │ │ │ ├── vqsort.cc │ │ │ │ │ ├── vqsort.h │ │ │ │ │ ├── vqsort_128a.cc │ │ │ │ │ ├── vqsort_128d.cc │ │ │ │ │ ├── vqsort_f16a.cc │ │ │ │ │ ├── vqsort_f16d.cc │ │ │ │ │ ├── vqsort_f32a.cc │ │ │ │ │ ├── vqsort_f32d.cc │ │ │ │ │ ├── vqsort_f64a.cc │ │ │ │ │ ├── vqsort_f64d.cc │ │ │ │ │ ├── vqsort_i16a.cc │ │ │ │ │ ├── vqsort_i16d.cc │ │ │ │ │ ├── vqsort_i32a.cc │ │ │ │ │ ├── vqsort_i32d.cc │ │ │ │ │ ├── vqsort_i64a.cc │ │ │ │ │ ├── vqsort_i64d.cc │ │ │ │ │ ├── vqsort_kv128a.cc │ │ │ │ │ ├── vqsort_kv128d.cc │ │ │ │ │ ├── vqsort_kv64a.cc │ │ │ │ │ ├── vqsort_kv64d.cc │ │ │ │ │ ├── vqsort_u16a.cc │ │ │ │ │ ├── vqsort_u16d.cc │ │ │ │ │ ├── vqsort_u32a.cc │ │ │ │ │ ├── vqsort_u32d.cc │ │ │ │ │ ├── vqsort_u64a.cc │ │ │ │ │ └── vqsort_u64d.cc │ │ │ │ ├── thread_pool │ │ │ │ │ ├── futex.h │ │ │ │ │ ├── thread_pool.h │ │ │ │ │ └── thread_pool_test.cc │ │ │ │ └── unroller │ │ │ │ │ ├── README.md │ │ │ │ │ ├── unroller-inl.h │ │ │ │ │ └── unroller_test.cc │ │ │ ├── detect_compiler_arch.h │ │ │ ├── detect_targets.h │ │ │ ├── foreach_target.h │ │ │ ├── highway.h │ │ │ ├── highway_export.h │ │ │ ├── nanobenchmark.cc │ │ │ ├── nanobenchmark.h │ │ │ ├── ops │ │ │ │ ├── arm_neon-inl.h │ │ │ │ ├── arm_sve-inl.h │ │ │ │ ├── emu128-inl.h │ │ │ │ ├── generic_ops-inl.h │ │ │ │ ├── ppc_vsx-inl.h │ │ │ │ ├── rvv-inl.h │ │ │ │ ├── scalar-inl.h │ │ │ │ ├── set_macros-inl.h │ │ │ │ ├── shared-inl.h │ │ │ │ ├── tuple-inl.h │ │ │ │ ├── wasm_128-inl.h │ │ │ │ ├── wasm_256-inl.h │ │ │ │ ├── x86_128-inl.h │ │ │ │ ├── x86_256-inl.h │ │ │ │ └── x86_512-inl.h │ │ │ ├── per_target.cc │ │ │ ├── per_target.h │ │ │ ├── print-inl.h │ │ │ ├── print.cc │ │ │ ├── print.h │ │ │ ├── profiler.h │ │ │ ├── robust_statistics.h │ │ │ ├── targets.cc │ │ │ ├── targets.h │ │ │ ├── timer-inl.h │ │ │ ├── timer.cc │ │ │ └── timer.h │ │ ├── icc │ │ │ ├── cmsalpha.c │ │ │ ├── cmscam02.c │ │ │ ├── cmscgats.c │ │ │ ├── cmscnvrt.c │ │ │ ├── cmserr.c │ │ │ ├── cmsgamma.c │ │ │ ├── cmsgmt.c │ │ │ ├── cmshalf.c │ │ │ ├── cmsintrp.c │ │ │ ├── cmsio0.c │ │ │ ├── cmsio1.c │ │ │ ├── cmslut.c │ │ │ ├── cmsmd5.c │ │ │ ├── cmsmtrx.c │ │ │ ├── cmsnamed.c │ │ │ ├── cmsopt.c │ │ │ ├── cmspack.c │ │ │ ├── cmspcs.c │ │ │ ├── cmsplugin.c │ │ │ ├── cmsps2.c │ │ │ ├── cmssamp.c │ │ │ ├── cmssm.c │ │ │ ├── cmstypes.c │ │ │ ├── cmsvirt.c │ │ │ ├── cmswtpnt.c │ │ │ ├── cmsxform.c │ │ │ ├── lcms2.def │ │ │ ├── lcms2.h │ │ │ ├── lcms2.rc.in │ │ │ ├── lcms2_internal.h │ │ │ └── lcms2_plugin.h │ │ ├── imagebit │ │ │ ├── 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 │ │ │ ├── RgbaToRgb.cpp │ │ │ ├── RgbaToRgb.h │ │ │ ├── RgbaU16toHF.cpp │ │ │ ├── RgbaU16toHF.h │ │ │ ├── ScanAlpha.cpp │ │ │ ├── ScanAlpha.h │ │ │ ├── half.cpp │ │ │ └── half.hpp │ │ ├── interop │ │ │ ├── JxlAnimatedDecoder.cpp │ │ │ ├── JxlAnimatedDecoder.hpp │ │ │ ├── JxlAnimatedEncoder.cpp │ │ │ ├── JxlAnimatedEncoder.hpp │ │ │ ├── JxlConstruction.hpp │ │ │ ├── JxlDecoding.cpp │ │ │ ├── JxlDecoding.h │ │ │ ├── JxlDefinitions.h │ │ │ ├── JxlEncoding.cpp │ │ │ ├── JxlEncoding.h │ │ │ └── JxlReconstruction.hpp │ │ ├── jpegli │ │ │ ├── jconfig.h │ │ │ ├── jmorecfg.h │ │ │ └── jpeglib.h │ │ ├── jxl │ │ │ ├── cms.h │ │ │ ├── cms_interface.h │ │ │ ├── codestream_header.h │ │ │ ├── color_encoding.h │ │ │ ├── compressed_icc.h │ │ │ ├── decode.h │ │ │ ├── decode_cxx.h │ │ │ ├── encode.h │ │ │ ├── encode_cxx.h │ │ │ ├── gain_map.h │ │ │ ├── jxl_cms_export.h │ │ │ ├── jxl_export.h │ │ │ ├── jxl_threads_export.h │ │ │ ├── memory_manager.h │ │ │ ├── parallel_runner.h │ │ │ ├── resizable_parallel_runner.h │ │ │ ├── resizable_parallel_runner_cxx.h │ │ │ ├── stats.h │ │ │ ├── thread_parallel_runner.h │ │ │ ├── thread_parallel_runner_cxx.h │ │ │ ├── types.h │ │ │ └── version.h │ │ ├── lib │ │ │ ├── arm64-v8a │ │ │ │ ├── libbrotlicommon.so │ │ │ │ ├── libbrotlidec.so │ │ │ │ ├── libbrotlienc.so │ │ │ │ ├── libjxl.so │ │ │ │ ├── libjxl_cms.so │ │ │ │ ├── libjxl_threads.so │ │ │ │ └── libweaver.a │ │ │ ├── armeabi-v7a │ │ │ │ ├── libbrotlicommon.so │ │ │ │ ├── libbrotlidec.so │ │ │ │ ├── libbrotlienc.so │ │ │ │ ├── libjxl.so │ │ │ │ ├── libjxl_cms.so │ │ │ │ ├── libjxl_threads.so │ │ │ │ └── libweaver.a │ │ │ ├── x86 │ │ │ │ ├── libbrotlicommon.so │ │ │ │ ├── libbrotlidec.so │ │ │ │ ├── libbrotlienc.so │ │ │ │ ├── libjxl.so │ │ │ │ ├── libjxl_cms.so │ │ │ │ ├── libjxl_threads.so │ │ │ │ └── libweaver.a │ │ │ └── x86_64 │ │ │ │ ├── libbrotlicommon.so │ │ │ │ ├── libbrotlidec.so │ │ │ │ ├── libbrotlienc.so │ │ │ │ ├── libjxl.so │ │ │ │ ├── libjxl_cms.so │ │ │ │ ├── libjxl_threads.so │ │ │ │ └── libweaver.a │ │ ├── libpng │ │ │ ├── CMakeLists.txt │ │ │ ├── arm │ │ │ │ ├── arm_init.c │ │ │ │ ├── filter_neon.S │ │ │ │ ├── filter_neon_intrinsics.c │ │ │ │ └── palette_neon_intrinsics.c │ │ │ ├── intel │ │ │ │ ├── filter_sse2_intrinsics.c │ │ │ │ └── intel_init.c │ │ │ ├── mips │ │ │ │ ├── .editorconfig │ │ │ │ ├── filter_mmi_inline_assembly.c │ │ │ │ ├── filter_msa_intrinsics.c │ │ │ │ └── mips_init.c │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── pngdebug.h │ │ │ ├── pngerror.c │ │ │ ├── pngget.c │ │ │ ├── pnginfo.h │ │ │ ├── pnglibconf.h │ │ │ ├── pngmem.c │ │ │ ├── pngpread.c │ │ │ ├── pngpriv.h │ │ │ ├── pngread.c │ │ │ ├── pngrio.c │ │ │ ├── pngrtran.c │ │ │ ├── pngrutil.c │ │ │ ├── pngset.c │ │ │ ├── pngstruct.h │ │ │ ├── pngtrans.c │ │ │ ├── pngwio.c │ │ │ ├── pngwrite.c │ │ │ ├── pngwtran.c │ │ │ ├── pngwutil.c │ │ │ └── powerpc │ │ │ │ ├── .editorconfig │ │ │ │ ├── filter_vsx_intrinsics.c │ │ │ │ └── powerpc_init.c │ │ └── weaver.h │ └── java │ │ └── com │ │ └── awxkee │ │ └── jxlcoder │ │ ├── FrameSequenceDrawable.kt │ │ ├── InvalidColorSpaceException.kt │ │ ├── InvalidCompressionOptionException.kt │ │ ├── InvalidImageSizeException.kt │ │ ├── InvalidJXLException.kt │ │ ├── JXLCoderCompressionException.kt │ │ ├── JxlAnimatedEncoder.kt │ │ ├── JxlAnimatedImage.kt │ │ ├── JxlChannelsConfiguration.kt │ │ ├── JxlCoder.kt │ │ ├── JxlCompressionOption.kt │ │ ├── JxlDecodingSpeed.kt │ │ ├── JxlEffort.kt │ │ ├── JxlEncodingDataPixelFormat.kt │ │ ├── JxlResizeFilter.kt │ │ ├── JxlToneMapper.kt │ │ ├── LockPixelsException.kt │ │ ├── PreferredColorConfig.kt │ │ ├── ScaleMode.kt │ │ └── animation │ │ ├── AnimatedDrawable.kt │ │ ├── AnimatedFrameStore.kt │ │ └── JxlAnimatedStore.kt │ └── test │ └── java │ └── com │ └── awxkee │ └── jxlcoder │ └── ExampleUnitTest.kt ├── settings.gradle.kts └── weaver ├── .cargo └── config.toml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── build.rs ├── build.sh ├── cbindgen.toml ├── include └── weaver.h ├── rust-toolchain.toml └── src ├── lib.rs ├── scale.rs └── scaling_function.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: awxkee 4 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/create_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/.github/workflows/create_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Maintenance. Update base tone mapper 2 | -------------------------------------------------------------------------------- /LICENSE-BSD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/LICENSE-BSD.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/awxkee/jxlcoder/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/androidTest/java/com/awxkee/jxlcoder/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/alpha_jxl.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/alpha_jxl.jxl -------------------------------------------------------------------------------- /app/src/main/assets/alpha_png_freepik.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/alpha_png_freepik.jxl -------------------------------------------------------------------------------- /app/src/main/assets/animated_jxl.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/animated_jxl.jxl -------------------------------------------------------------------------------- /app/src/main/assets/art.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/art.jxl -------------------------------------------------------------------------------- /app/src/main/assets/dark_street.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/dark_street.jxl -------------------------------------------------------------------------------- /app/src/main/assets/first_jxl.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/first_jxl.jxl -------------------------------------------------------------------------------- /app/src/main/assets/hdr_cosmos.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/hdr_cosmos.jxl -------------------------------------------------------------------------------- /app/src/main/assets/jxl_icc_12.bit.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/jxl_icc_12.bit.jxl -------------------------------------------------------------------------------- /app/src/main/assets/large_jxl.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/large_jxl.jxl -------------------------------------------------------------------------------- /app/src/main/assets/pexels-thibaut-tattevin-18273081.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/pexels-thibaut-tattevin-18273081.jxl -------------------------------------------------------------------------------- /app/src/main/assets/second_jxl.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/second_jxl.jxl -------------------------------------------------------------------------------- /app/src/main/assets/summer_nature.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/summer_nature.jxl -------------------------------------------------------------------------------- /app/src/main/assets/wide_gamut.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/assets/wide_gamut.jxl -------------------------------------------------------------------------------- /app/src/main/java/com/awxkee/jxlcoder/JxlDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/java/com/awxkee/jxlcoder/JxlDecoder.kt -------------------------------------------------------------------------------- /app/src/main/java/com/awxkee/jxlcoder/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/java/com/awxkee/jxlcoder/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/awxkee/jxlcoder/glide/JxlCoderByteBufferDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/java/com/awxkee/jxlcoder/glide/JxlCoderByteBufferDecoder.kt -------------------------------------------------------------------------------- /app/src/main/java/com/awxkee/jxlcoder/glide/JxlCoderStreamDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/java/com/awxkee/jxlcoder/glide/JxlCoderStreamDecoder.kt -------------------------------------------------------------------------------- /app/src/main/java/com/awxkee/jxlcoder/glide/JxlGlideModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/java/com/awxkee/jxlcoder/glide/JxlGlideModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/awxkee/jxlcoder/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/java/com/awxkee/jxlcoder/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/awxkee/jxlcoder/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/java/com/awxkee/jxlcoder/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/awxkee/jxlcoder/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/java/com/awxkee/jxlcoder/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-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/jxl-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/jxl-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/jxl-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/jxl-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/jxl-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/jxl-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/jxl-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/jxl-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/jxl-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/jxl-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/jxl-coder/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/awxkee/jxlcoder/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/app/src/test/java/com/awxkee/jxlcoder/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: 2 | - openjdk17 -------------------------------------------------------------------------------- /jxlcoder/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /jxlcoder/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/build.gradle.kts -------------------------------------------------------------------------------- /jxlcoder/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jxlcoder/download_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/download_deps.sh -------------------------------------------------------------------------------- /jxlcoder/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/proguard-rules.pro -------------------------------------------------------------------------------- /jxlcoder/src/androidTest/java/com/awxkee/jxlcoder/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/androidTest/java/com/awxkee/jxlcoder/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/EasyGifReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/EasyGifReader.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/EasyGifReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/EasyGifReader.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/Cholesky -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/CholmodSupport -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/Core -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/Dense -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/Eigen -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/Eigenvalues -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/Geometry -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/Householder -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/Jacobi -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/KLUSupport -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/LU -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/MetisSupport -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/OrderingMethods -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/PardisoSupport -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/QR -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/SPQRSupport -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/SVD -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/Sparse -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/SparseCholesky -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/SparseCore -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/SparseLU -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/SparseQR -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/StdDeque -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/StdList -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/StdVector -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/ArithmeticSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/ArithmeticSequence.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/IndexedView.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/PartialReduxEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/PartialReduxEvaluator.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Reshaped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Reshaped.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/StlIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/StlIterators.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX512/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX512/Complex.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX512/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AVX512/TypeCasting.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MatrixProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MatrixProduct.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/Default/BFloat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/Default/BFloat16.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/Default/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/Default/Half.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/Default/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/Default/TypeCasting.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/GPU/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/GPU/MathFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/GPU/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/GPU/PacketMath.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/GPU/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/GPU/TypeCasting.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/HIP/hcc/math_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/HIP/hcc/math_constants.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/MSA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/MSA/Complex.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/MSA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/MSA/MathFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/MSA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/MSA/PacketMath.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/NEON/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/NEON/TypeCasting.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/SVE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/SVE/MathFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/SVE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/SVE/PacketMath.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/SVE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/SVE/TypeCasting.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/SYCL/InteropHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/SYCL/InteropHeaders.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/SYCL/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/SYCL/MathFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/SYCL/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/SYCL/PacketMath.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/SYCL/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/SYCL/TypeCasting.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/ConfigureVectorization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/ConfigureVectorization.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/IndexedViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/IndexedViewHelper.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/IntegralConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/IntegralConstant.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/ReshapedHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/ReshapedHelper.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/SymbolicIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/SymbolicIndex.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Geometry/arch/Geometry_SIMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Geometry/arch/Geometry_SIMD.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/KLUSupport/KLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/KLUSupport/KLUSupport.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/LU/arch/InverseSize4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/LU/arch/InverseSize4.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/plugins/IndexedViewMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/plugins/IndexedViewMethods.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Eigen/src/plugins/ReshapedMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Eigen/src/plugins/ReshapedMethods.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/HardwareBuffersCompat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/HardwareBuffersCompat.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/HardwareBuffersCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/HardwareBuffersCompat.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/JXLConventions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/JXLConventions.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/JXLJpegInterop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/JXLJpegInterop.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/JniDecoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/JniDecoding.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/JniExceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/JniExceptions.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/JniExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/JniExceptions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/JxlAnimatedDecoderCoordinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/JxlAnimatedDecoderCoordinator.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/JxlAnimatedDecoderCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/JxlAnimatedDecoderCoordinator.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/JxlAnimatedEncoderCoordinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/JxlAnimatedEncoderCoordinator.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/JxlAnimatedEncoderCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/JxlAnimatedEncoderCoordinator.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/JxlEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/JxlEncoder.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/ReformatBitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/ReformatBitmap.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/ReformatBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/ReformatBitmap.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/SizeScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/SizeScaler.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/SizeScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/SizeScaler.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Support.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/Support.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/XScaler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/XScaler.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/XScaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/XScaler.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/algo/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/algo/common.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/algo/concurrency.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/algo/concurrency.hpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/algo/fast_math-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/algo/fast_math-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/algo/math-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/algo/math-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/algo/rational_polynomial-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/algo/rational_polynomial-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/algo/sampler-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/algo/sampler-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/algo/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/algo/sampler.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/aligned_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/aligned_allocator.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/AcesToneMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/AcesToneMapper.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/AcesToneMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/AcesToneMapper.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/ColorMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/ColorMatrix.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/ColorMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/ColorMatrix.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/ColorSpaceProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/ColorSpaceProfile.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/FilmicToneMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/FilmicToneMapper.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/FilmicToneMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/FilmicToneMapper.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/ITUR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/ITUR.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/LogarithmicToneMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/LogarithmicToneMapper.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/LogarithmicToneMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/LogarithmicToneMapper.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/Oklab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/Oklab.hpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/Rec2408ToneMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/Rec2408ToneMapper.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/Rec2408ToneMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/Rec2408ToneMapper.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/ToneMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/ToneMapper.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/Trc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/Trc.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/Trc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/Trc.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/colorspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/colorspace.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/colorspaces/colorspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/colorspaces/colorspace.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/conversion/ConversionUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/conversion/ConversionUtils.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/conversion/HalfFloats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/conversion/HalfFloats.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/conversion/HalfFloats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/conversion/HalfFloats.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/conversion/RgbChannels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/conversion/RgbChannels.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/conversion/RgbChannels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/conversion/RgbChannels.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/conversion/half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/conversion/half.hpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/definitions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/CMakeLists.txt -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/dgif_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/dgif_lib.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/egif_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/egif_lib.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/getarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/getarg.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/getarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/getarg.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gif2rgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gif2rgb.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gif_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gif_err.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gif_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gif_font.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gif_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gif_hash.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gif_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gif_hash.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gif_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gif_lib.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gif_lib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gif_lib_private.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gifalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gifalloc.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gifbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gifbg.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gifbuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gifbuild.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gifclrmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gifclrmp.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gifcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gifcolor.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gifecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gifecho.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/giffilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/giffilter.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/giffix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/giffix.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gifhisto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gifhisto.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gifinto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gifinto.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gifsponge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gifsponge.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/giftext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/giftext.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/giftool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/giftool.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/gifwedge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/gifwedge.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/openbsd-reallocarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/openbsd-reallocarray.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/qprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/qprintf.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/giflib/quantize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/giflib/quantize.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/aligned_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/aligned_allocator.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/aligned_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/aligned_allocator.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/base.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/cache_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/cache_control.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/algo/copy-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/algo/copy-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/algo/copy_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/algo/copy_test.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/algo/find-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/algo/find-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/algo/find_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/algo/find_test.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/algo/transform-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/algo/transform-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/algo/transform_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/algo/transform_test.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/bit_pack/bit_pack-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/bit_pack/bit_pack-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/bit_pack/bit_pack_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/bit_pack/bit_pack_test.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/dot/dot-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/dot/dot-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/dot/dot_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/dot/dot_test.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/image/image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/image/image.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/image/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/image/image.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/image/image_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/image/image_test.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/math/math-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/math/math-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/math/math_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/math/math_test.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/matvec/matvec-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/matvec/matvec-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/matvec/matvec_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/matvec/matvec_test.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/README.md -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/algo-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/algo-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/bench_parallel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/bench_parallel.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/bench_sort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/bench_sort.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/order.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/print_network.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/print_network.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/result-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/result-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/shared-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/shared-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/sort_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/sort_test.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/sorting_networks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/sorting_networks-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/traits-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/traits-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/traits128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/traits128-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_128a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_128a.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_128d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_128d.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_f16a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_f16a.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_f16d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_f16d.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_f32a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_f32a.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_f32d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_f32d.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_f64a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_f64a.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_f64d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_f64d.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_i16a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_i16a.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_i16d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_i16d.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_i32a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_i32a.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_i32d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_i32d.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_i64a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_i64a.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_i64d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_i64d.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_kv128a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_kv128a.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_kv128d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_kv128d.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_kv64a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_kv64a.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_kv64d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_kv64d.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_u16a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_u16a.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_u16d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_u16d.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_u32a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_u32a.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_u32d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_u32d.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_u64a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_u64a.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_u64d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/sort/vqsort_u64d.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/thread_pool/futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/thread_pool/futex.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/thread_pool/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/thread_pool/thread_pool.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/thread_pool/thread_pool_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/thread_pool/thread_pool_test.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/unroller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/unroller/README.md -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/unroller/unroller-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/unroller/unroller-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/contrib/unroller/unroller_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/contrib/unroller/unroller_test.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/detect_compiler_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/detect_compiler_arch.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/detect_targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/detect_targets.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/foreach_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/foreach_target.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/highway.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/highway.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/highway_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/highway_export.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/nanobenchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/nanobenchmark.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/nanobenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/nanobenchmark.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/arm_neon-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/arm_neon-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/arm_sve-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/arm_sve-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/emu128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/emu128-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/generic_ops-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/generic_ops-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/ppc_vsx-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/ppc_vsx-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/rvv-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/rvv-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/scalar-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/scalar-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/set_macros-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/set_macros-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/shared-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/shared-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/tuple-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/tuple-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/wasm_128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/wasm_128-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/wasm_256-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/wasm_256-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/x86_128-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/x86_128-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/x86_256-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/x86_256-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/ops/x86_512-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/ops/x86_512-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/per_target.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/per_target.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/per_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/per_target.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/print-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/print-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/print.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/print.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/print.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/profiler.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/robust_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/robust_statistics.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/targets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/targets.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/targets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/targets.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/timer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/timer-inl.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/timer.cc -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/hwy/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/hwy/timer.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsalpha.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmscam02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmscam02.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmscgats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmscgats.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmscnvrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmscnvrt.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmserr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmserr.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsgamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsgamma.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsgmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsgmt.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmshalf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmshalf.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsintrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsintrp.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsio0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsio0.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsio1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsio1.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmslut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmslut.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsmd5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsmd5.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsmtrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsmtrx.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsnamed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsnamed.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsopt.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmspack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmspack.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmspcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmspcs.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsplugin.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsps2.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmssamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmssamp.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmssm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmssm.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmstypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmstypes.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsvirt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsvirt.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmswtpnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmswtpnt.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/cmsxform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/cmsxform.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/lcms2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/lcms2.def -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/lcms2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/lcms2.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/lcms2.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/lcms2.rc.in -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/lcms2_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/lcms2_internal.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/icc/lcms2_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/icc/lcms2_plugin.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/CopyUnalignedRGBA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/CopyUnalignedRGBA.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/CopyUnalignedRGBA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/CopyUnalignedRGBA.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/RGBAlpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/RGBAlpha.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/RGBAlpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/RGBAlpha.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/Rgb1010102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/Rgb1010102.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/Rgb1010102.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/Rgb1010102.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/Rgb565.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/Rgb565.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/Rgb565.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/Rgb565.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/Rgba16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/Rgba16.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/Rgba16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/Rgba16.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/Rgba8ToF16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/Rgba8ToF16.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/Rgba8ToF16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/Rgba8ToF16.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/RgbaF16bitNBitU8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/RgbaF16bitNBitU8.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/RgbaF16bitNBitU8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/RgbaF16bitNBitU8.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/RgbaF16bitToNBitU16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/RgbaF16bitToNBitU16.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/RgbaF16bitToNBitU16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/RgbaF16bitToNBitU16.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/RgbaToRgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/RgbaToRgb.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/RgbaToRgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/RgbaToRgb.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/RgbaU16toHF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/RgbaU16toHF.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/RgbaU16toHF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/RgbaU16toHF.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/ScanAlpha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/ScanAlpha.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/ScanAlpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/ScanAlpha.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/half.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/half.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/imagebit/half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/imagebit/half.hpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/interop/JxlAnimatedDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/interop/JxlAnimatedDecoder.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/interop/JxlAnimatedDecoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/interop/JxlAnimatedDecoder.hpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/interop/JxlAnimatedEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/interop/JxlAnimatedEncoder.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/interop/JxlAnimatedEncoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/interop/JxlAnimatedEncoder.hpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/interop/JxlConstruction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/interop/JxlConstruction.hpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/interop/JxlDecoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/interop/JxlDecoding.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/interop/JxlDecoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/interop/JxlDecoding.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/interop/JxlDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/interop/JxlDefinitions.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/interop/JxlEncoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/interop/JxlEncoding.cpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/interop/JxlEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/interop/JxlEncoding.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/interop/JxlReconstruction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/interop/JxlReconstruction.hpp -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jpegli/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jpegli/jconfig.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jpegli/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jpegli/jmorecfg.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jpegli/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jpegli/jpeglib.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/cms.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/cms_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/cms_interface.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/codestream_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/codestream_header.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/color_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/color_encoding.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/compressed_icc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/compressed_icc.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/decode.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/decode_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/decode_cxx.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/encode.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/encode_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/encode_cxx.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/gain_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/gain_map.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/jxl_cms_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/jxl_cms_export.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/jxl_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/jxl_export.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/jxl_threads_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/jxl_threads_export.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/memory_manager.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/parallel_runner.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/resizable_parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/resizable_parallel_runner.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/resizable_parallel_runner_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/resizable_parallel_runner_cxx.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/stats.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/thread_parallel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/thread_parallel_runner.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/thread_parallel_runner_cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/thread_parallel_runner_cxx.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/types.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/jxl/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/jxl/version.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/arm64-v8a/libbrotlicommon.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/arm64-v8a/libbrotlicommon.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/arm64-v8a/libbrotlidec.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/arm64-v8a/libbrotlidec.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/arm64-v8a/libbrotlienc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/arm64-v8a/libbrotlienc.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/arm64-v8a/libjxl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/arm64-v8a/libjxl.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/arm64-v8a/libjxl_cms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/arm64-v8a/libjxl_cms.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/arm64-v8a/libjxl_threads.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/arm64-v8a/libjxl_threads.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/arm64-v8a/libweaver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/arm64-v8a/libweaver.a -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/armeabi-v7a/libbrotlicommon.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/armeabi-v7a/libbrotlicommon.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/armeabi-v7a/libbrotlidec.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/armeabi-v7a/libbrotlidec.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/armeabi-v7a/libbrotlienc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/armeabi-v7a/libbrotlienc.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/armeabi-v7a/libjxl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/armeabi-v7a/libjxl.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/armeabi-v7a/libjxl_cms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/armeabi-v7a/libjxl_cms.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/armeabi-v7a/libjxl_threads.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/armeabi-v7a/libjxl_threads.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/armeabi-v7a/libweaver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/armeabi-v7a/libweaver.a -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86/libbrotlicommon.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86/libbrotlicommon.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86/libbrotlidec.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86/libbrotlidec.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86/libbrotlienc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86/libbrotlienc.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86/libjxl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86/libjxl.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86/libjxl_cms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86/libjxl_cms.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86/libjxl_threads.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86/libjxl_threads.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86/libweaver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86/libweaver.a -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86_64/libbrotlicommon.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86_64/libbrotlicommon.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86_64/libbrotlidec.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86_64/libbrotlidec.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86_64/libbrotlienc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86_64/libbrotlienc.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86_64/libjxl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86_64/libjxl.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86_64/libjxl_cms.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86_64/libjxl_cms.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86_64/libjxl_threads.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86_64/libjxl_threads.so -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/lib/x86_64/libweaver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/lib/x86_64/libweaver.a -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/CMakeLists.txt -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/arm/arm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/arm/arm_init.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/arm/filter_neon.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/arm/filter_neon.S -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/arm/filter_neon_intrinsics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/arm/filter_neon_intrinsics.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/arm/palette_neon_intrinsics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/arm/palette_neon_intrinsics.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/intel/filter_sse2_intrinsics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/intel/filter_sse2_intrinsics.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/intel/intel_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/intel/intel_init.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/mips/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/mips/.editorconfig -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/mips/filter_mmi_inline_assembly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/mips/filter_mmi_inline_assembly.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/mips/filter_msa_intrinsics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/mips/filter_msa_intrinsics.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/mips/mips_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/mips/mips_init.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/png.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/png.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngconf.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngdebug.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngerror.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngget.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pnginfo.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pnglibconf.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngmem.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngpread.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngpriv.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngread.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngrio.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngrtran.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngrutil.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngset.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngstruct.h -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngtrans.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngwio.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngwrite.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngwtran.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/pngwutil.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/powerpc/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/powerpc/.editorconfig -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/powerpc/filter_vsx_intrinsics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/powerpc/filter_vsx_intrinsics.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/libpng/powerpc/powerpc_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/libpng/powerpc/powerpc_init.c -------------------------------------------------------------------------------- /jxlcoder/src/main/cpp/weaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/cpp/weaver.h -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/FrameSequenceDrawable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/FrameSequenceDrawable.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/InvalidColorSpaceException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/InvalidColorSpaceException.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/InvalidImageSizeException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/InvalidImageSizeException.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/InvalidJXLException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/InvalidJXLException.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/JXLCoderCompressionException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/JXLCoderCompressionException.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlAnimatedEncoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlAnimatedEncoder.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlAnimatedImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlAnimatedImage.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlChannelsConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlChannelsConfiguration.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlCoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlCoder.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlCompressionOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlCompressionOption.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlDecodingSpeed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlDecodingSpeed.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlEffort.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlEffort.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlEncodingDataPixelFormat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlEncodingDataPixelFormat.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlResizeFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlResizeFilter.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlToneMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/JxlToneMapper.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/LockPixelsException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/LockPixelsException.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/PreferredColorConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/PreferredColorConfig.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/ScaleMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/ScaleMode.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/animation/AnimatedDrawable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/animation/AnimatedDrawable.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/animation/AnimatedFrameStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/animation/AnimatedFrameStore.kt -------------------------------------------------------------------------------- /jxlcoder/src/main/java/com/awxkee/jxlcoder/animation/JxlAnimatedStore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/main/java/com/awxkee/jxlcoder/animation/JxlAnimatedStore.kt -------------------------------------------------------------------------------- /jxlcoder/src/test/java/com/awxkee/jxlcoder/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/jxlcoder/src/test/java/com/awxkee/jxlcoder/ExampleUnitTest.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /weaver/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/weaver/.cargo/config.toml -------------------------------------------------------------------------------- /weaver/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | built.zip -------------------------------------------------------------------------------- /weaver/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/weaver/Cargo.lock -------------------------------------------------------------------------------- /weaver/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/weaver/Cargo.toml -------------------------------------------------------------------------------- /weaver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/weaver/README.md -------------------------------------------------------------------------------- /weaver/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/weaver/build.rs -------------------------------------------------------------------------------- /weaver/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/weaver/build.sh -------------------------------------------------------------------------------- /weaver/cbindgen.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weaver/include/weaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/weaver/include/weaver.h -------------------------------------------------------------------------------- /weaver/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/weaver/rust-toolchain.toml -------------------------------------------------------------------------------- /weaver/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/weaver/src/lib.rs -------------------------------------------------------------------------------- /weaver/src/scale.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/weaver/src/scale.rs -------------------------------------------------------------------------------- /weaver/src/scaling_function.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awxkee/jxl-coder/HEAD/weaver/src/scaling_function.rs --------------------------------------------------------------------------------