Skip to content

Commit 497e57d

Browse files
committed
fec_vectorisation: update modified encode_post_process
1 parent f5d4ef5 commit 497e57d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fec_vectorisation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void RsFnt<uint16_t>::encode_post_process(
5454
unsigned code_len = this->n_outputs;
5555

5656
simd::encode_post_process(
57-
output, props, offset, code_len, threshold, simd_vec_len);
57+
output, props, offset, code_len, simd_vec_len);
5858

5959
if (simd_trailing_len > 0) {
6060
for (unsigned i = 0; i < code_len; ++i) {
@@ -79,7 +79,7 @@ void RsFnt<uint32_t>::encode_post_process(
7979
const unsigned code_len = this->n_outputs;
8080

8181
simd::encode_post_process(
82-
output, props, offset, code_len, threshold, simd_vec_len);
82+
output, props, offset, code_len, simd_vec_len);
8383

8484
if (simd_trailing_len > 0) {
8585
for (unsigned i = 0; i < code_len; ++i) {

0 commit comments

Comments
 (0)