From 2a9f9fdc4887f578319d26fe5f340632743c81ac Mon Sep 17 00:00:00 2001 From: renhw001 Date: Mon, 23 Oct 2023 07:54:07 +0000 Subject: [PATCH 1/4] update Docs/Testing.md. Signed-off-by: renhw001 --- Docs/Testing.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Docs/Testing.md b/Docs/Testing.md index 2cef276..1d29b65 100644 --- a/Docs/Testing.md +++ b/Docs/Testing.md @@ -5,6 +5,7 @@ check source code changes to the compressor. It must be noted that this test suite is relatively limited in scope and does not cover every feature or bitrate of the standard. + # Required software Running the tests requires Python 3.7 to be installed on the host machine, and -- Gitee From ada5a1bdcee8b3396d9d12a1d913e7c6bb59e1aa Mon Sep 17 00:00:00 2001 From: renhw001 Date: Mon, 23 Oct 2023 07:57:42 +0000 Subject: [PATCH 2/4] update Docs/Testing.md. Signed-off-by: renhw001 --- Docs/Testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/Testing.md b/Docs/Testing.md index 1d29b65..55dfcd3 100644 --- a/Docs/Testing.md +++ b/Docs/Testing.md @@ -5,7 +5,7 @@ check source code changes to the compressor. It must be noted that this test suite is relatively limited in scope and does not cover every feature or bitrate of the standard. - +test # Required software Running the tests requires Python 3.7 to be installed on the host machine, and -- Gitee From 02a83dab2dfe53c55f94b529cc873e7a39a89524 Mon Sep 17 00:00:00 2001 From: renhw001 Date: Mon, 23 Oct 2023 08:39:10 +0000 Subject: [PATCH 3/4] update Source/astcenc_pick_best_endpoint_format.cpp. Signed-off-by: renhw001 --- Source/astcenc_pick_best_endpoint_format.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/astcenc_pick_best_endpoint_format.cpp b/Source/astcenc_pick_best_endpoint_format.cpp index fc00b74..8b0333f 100644 --- a/Source/astcenc_pick_best_endpoint_format.cpp +++ b/Source/astcenc_pick_best_endpoint_format.cpp @@ -219,8 +219,7 @@ static void compute_error_squared_rgb_single_partition( * @param ep The idealized endpoints. * @param[out] eci The resulting encoding choice error metrics. */ -static void compute_encoding_choice_errors( - const image_block& blk, +static void compute_encoding_choice_errors(const image_block& blk, const partition_info& pi, const endpoints& ep, encoding_choice_errors eci[BLOCK_MAX_PARTITIONS]) -- Gitee From 810d6ee87fbd06d42acbd5cd98b5c767430b32e0 Mon Sep 17 00:00:00 2001 From: renhw001 Date: Fri, 27 Oct 2023 12:08:33 +0000 Subject: [PATCH 4/4] update Source/astcenc_block_sizes.cpp. Signed-off-by: renhw001 --- Source/astcenc_block_sizes.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/astcenc_block_sizes.cpp b/Source/astcenc_block_sizes.cpp index e498da4..efde06b 100644 --- a/Source/astcenc_block_sizes.cpp +++ b/Source/astcenc_block_sizes.cpp @@ -162,7 +162,6 @@ static bool decode_block_mode_3d( unsigned int H = (block_mode >> 9) & 1; unsigned int D = (block_mode >> 10) & 1; unsigned int A = (block_mode >> 5) & 0x3; - x_weights = 0; y_weights = 0; z_weights = 0; -- Gitee