Fixed decoder::end() for uncompressed scenario

See issue #2
pull/4/head
Clyne 4 years ago committed by GitHub
parent 365deff037
commit 2028b12fda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -275,7 +275,7 @@ public:
ender.m_data += size_bytes - 1;
ender.m_bit = 1 << (7 - last_bits);
} else {
ender.m_data += raw_data.size() + 1;
ender.m_data += raw_data.size();
}
return ender;

Loading…
Cancel
Save