bytebeat_compiler.py: extract BITS_PER_BYTE
This commit is contained in:
parent
fc5612219d
commit
cd927b83fb
@ -12,6 +12,9 @@ from sys import stdin, stdout, exit
|
||||
from typing import Dict, Union
|
||||
import subprocess
|
||||
|
||||
# Definitions
|
||||
BITS_PER_BYTE = 8
|
||||
|
||||
# Paths
|
||||
PATHS = {
|
||||
"src_dir": "src",
|
||||
@ -244,7 +247,7 @@ if __name__ == "__main__":
|
||||
"fp_return_type": args.floating_point,
|
||||
"channels": args.channels,
|
||||
"length": samples,
|
||||
"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,
|
||||
|
Loading…
Reference in New Issue
Block a user