```python >>> len(AudioFrame(1000, 1)) 32 >>> len(AudioFrame(999, 1)) 0 >>> len(AudioFrame(1, 1)) 0 >>> ``` Likely the integer division flooring (well, rounding towards zero) from: https://github.com/microbit-foundation/micropython-microbit-v2/blob/c91ae4e83c5a1a82f647740277f7d4a462192160/src/codal_port/modaudio.c#L334