summaryrefslogtreecommitdiffstats
path: root/decoder.h
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-11-06 12:50:02 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2015-11-06 12:50:02 +0000
commitaaed943b403d90335816ae7a8e486ffa834cd383 (patch)
tree1262948f006f2cef62c6be9fc6a9face0b27baa8 /decoder.h
parentAdding debian version 1.6~pre1-2. (diff)
downloadclzip-aaed943b403d90335816ae7a8e486ffa834cd383.tar.xz
clzip-aaed943b403d90335816ae7a8e486ffa834cd383.zip
Merging upstream version 1.6~pre2.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'decoder.h')
-rw-r--r--decoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder.h b/decoder.h
index ec82667..03db425 100644
--- a/decoder.h
+++ b/decoder.h
@@ -158,7 +158,7 @@ static inline int Rd_decode_tree6( struct Range_decoder * const rdec,
symbol = ( symbol << 1 ) | Rd_decode_bit( rdec, &bm[symbol] );
symbol = ( symbol << 1 ) | Rd_decode_bit( rdec, &bm[symbol] );
symbol = ( symbol << 1 ) | Rd_decode_bit( rdec, &bm[symbol] );
- return symbol - (1 << 6);
+ return symbol & 0x3F;
}
static inline int Rd_decode_tree_reversed( struct Range_decoder * const rdec,