From bf0c103588c61110fda5513c9d2f348d9d05040d Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Sun, 14 Jul 2024 00:13:25 +0300 Subject: [PATCH] bytebeat_compiler.py: extract `BITS_PER_BYTE` --- bytebeat_compiler.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index c1f94b0..7824099 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -13,6 +13,9 @@ from typing import Dict, Union import re import subprocess +# Definitions +BITS_PER_BYTE = 8 + # Paths PATHS = { "src_dir": "src", @@ -339,7 +342,7 @@ if __name__ == "__main__": "loop_end_minus_1": loop_end - 1, "initial_time": skip_first_samples, "repeat_times": args.repeat, - "wav_product": gen_length * (args.bit_depth // 8), + "wav_product": gen_length * (args.bit_depth // BITS_PER_BYTE), "gen_length": gen_length, "sequential_mode": args.mode == "sequential", "block_size": args.block_size,