Changeset 17134 for trunk/Mars
- Timestamp:
- 09/07/13 16:14:21 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mcore/huffman.h
r17128 r17134 383 383 }; 384 384 385 inlinebool Encode(std::string &bufout, const uint16_t *bufin, size_t bufinlen)385 bool Encode(std::string &bufout, const uint16_t *bufin, size_t bufinlen) 386 386 { 387 387 const Encoder encoder(bufin, bufinlen); … … 399 399 } 400 400 401 in line int64_t Decode(const uint8_t *bufin,402 403 401 int64_t Decode(const uint8_t *bufin, 402 size_t bufinlen, 403 std::vector<uint16_t> &pbufout) 404 404 { 405 405 int64_t i = 0;
Note:
See TracChangeset
for help on using the changeset viewer.