Changeset 18979 for trunk/Mars/mcore
- Timestamp:
- 04/05/18 19:01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mcore/huffman.h
r17142 r18979 301 301 while (in_ptr<in_end && out_ptr<out_end) 302 302 { 303 const uint16_t *two = (uint16_t*)in_ptr;303 const uint16_t *two = reinterpret_cast<const uint16_t*>(in_ptr); 304 304 305 305 const uint8_t curbyte = (*two >> curbit);
Note:
See TracChangeset
for help on using the changeset viewer.