bytebeat_compiler.py: fix `wav_product` calculation

This commit is contained in:
Intel A80486DX2-66 2024-05-19 10:57:33 +03:00
parent fa1180e222
commit e7fd7131d1
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ if __name__ == "__main__":
"fp_return_type": args.floating_point,
"channels": args.channels,
"length": samples,
"wav_product": args.channels * samples,
"wav_product": args.channels * samples * (args.bit_depth // 8),
"sequential_mode": args.mode == "sequential",
"block_size": args.block_size,
"silent_mode": args.silent,