The formula is:
CODE
FrameLengthInBytes = 144 * BitRate / SampleRate + Padding
When inserting values I get:CODE
144 * 128000 / 44100 + 0 = 417,95918367346938775510204081633
I was expecting a whole number. The result is very close to 418, but not quite there. Is the formula wrong? Should I Int() the number, or Round() it?