Class IncUintOptRleEncoder


  • public class IncUintOptRleEncoder
    extends java.lang.Object
    Increasing Uint Optimized RLE Encoder

    The RLE encoder counts the number of same occurrences of the same value. The IncUintOptRle encoder counts if the value increases. I.e. 7, 8, 9, 10 will be encoded as [-7, 4]. 1, 3, 5 will be encoded as [1, 3, 5].

    • Constructor Detail

      • IncUintOptRleEncoder

        public IncUintOptRleEncoder()
    • Method Detail

      • write

        public void write​(int v)