<div class="gmail_quote">On 11 June 2012 14:15, Chris Parsons <span dir="ltr"><<a href="mailto:chris.p@rsons.org" target="_blank">chris.p@rsons.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div style="word-wrap:break-word">Hmm, interesting. Feels like a bug causing 13-15 to appear three times as often. Can we see the code?</div></blockquote><div><br></div><div>The codes actually JS. Ruby would look something like this, for taking the next chunk of the bit stream:</div>
<div><br></div><div>n = Math.ceil(Math.log(charset.size) / Math.log(2))</div><div>chunk = bits[0...n]</div><div>return chunk if chunk =~ /^0/ # definitely within range</div><div>value = chunk.to_i(2)</div><div>return (value >= size.size) ? chunk[0..-2] : chunk</div>
</div>