more effective use of byte-arrays

db4
Doug Coleman 2009-06-10 15:50:35 -04:00
parent 38ac04d317
commit 71f0ce5688
1 changed files with 4 additions and 4 deletions

View File

@ -195,16 +195,16 @@ CONSTANT: dist-table
PRIVATE>
! for debug -- shows residual values
: reverse-png-filter' ( lines -- filtered )
: reverse-png-filter' ( lines -- byte-array )
[ first ] [ 1 tail ] [ map ] bi-curry@ bi nip
concat [ 128 + 256 wrap ] map ;
concat [ 128 + ] B{ } map-as ;
: reverse-png-filter ( lines -- filtered )
: reverse-png-filter ( lines -- byte-array )
dup first [ 0 ] replicate prefix
[ { 0 0 } prepend ] map
2 clump [
first2 dup [ third ] [ 0 2 rot set-nth ] bi png-unfilter-line
] map concat ;
] map B{ } concat-as ;
: zlib-inflate ( bytes -- bytes )
bs:<lsb0-bit-reader>