4.2.1.1.2 Example 2
Uncompressed input:
-
54 68 65 20 71 75 69 63 6B 20 62 72 6F 77 6E 20 The quick brown 66 6F 78 20 6A 75 6D 70 73 20 6F 76 65 72 20 74 fox jumps over t 68 65 20 6C 61 7A 79 20 64 6F 67 he lazy dog
Compressed output:
The first byte is DEBLOCK_SINGLE, so the remainder is to be decoded. The second byte contains the compression type (4) but does not have the PACKET_COMPRESSED (0x20) bit set, so the remainder of the data is unencoded. Compression did not reduce the size, because there is little repetition in the source.
-
E0 04 54 68 65 20 71 75 69 63 6B 20 62 72 6F 77 ..The quick brow 6E 20 66 6F 78 20 6A 75 6D 70 73 20 6F 76 65 72 n fox jumps over 20 74 68 65 20 6C 61 7A 79 20 64 6F 67 the lazy dog E0 = DEBLOCK_SINGLE 04 = compression type 4 (not PACKET_COMPRESSED) remainder = unencoded input