Skip to content

Commit

Permalink
fix decoder bug in large coefficient order.
Browse files Browse the repository at this point in the history
  • Loading branch information
aikiriao committed Jun 7, 2023
1 parent cb8d00f commit fc53064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/srla_player/srla_player.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ int main(int argc, char **argv)

/* デコーダハンドルの作成 */
decoder_config.max_num_channels = header.num_channels;
decoder_config.max_num_parameters = 32;
decoder_config.max_num_parameters = SRLA_MAX_COEFFICIENT_ORDER;
decoder_config.check_checksum = 1;
if ((decoder = SRLADecoder_Create(&decoder_config, NULL, 0)) == NULL) {
fprintf(stderr, "Failed to create decoder handle. \n");
Expand Down

0 comments on commit fc53064

Please sign in to comment.