Skip to content

Commit

Permalink
fix assertion in test.
Browse files Browse the repository at this point in the history
  • Loading branch information
aikiriao committed Jun 30, 2024
1 parent 6798008 commit 86c0438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/srla_encoder/srla_encoder_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ TEST(SRLAEncoderTest, EncodeBlockTest)
input[ch] = (int32_t *)malloc(sizeof(int32_t) * parameter.max_num_samples_per_block);
/* 乱数データ */
for (smpl = 0; smpl < parameter.max_num_samples_per_block; smpl++) {
input[ch][smpl] = rand();
input[ch][smpl] = rand() % (1 << parameter.bits_per_sample);
}
}

Expand Down

0 comments on commit 86c0438

Please sign in to comment.