Added ec_{enc|dec}_bits64 and ec_{enc|dec}_bits64.

Updated broken paper URLs.
Cleaned up non-multiply-free range coder documentation (e.g., stop claiming
it's multiply-free).
This commit is contained in:
Timothy B. Terriberry 2007-12-11 13:25:57 +11:00 committed by Jean-Marc Valin
parent d710177d0a
commit f13fea7b53
13 changed files with 175 additions and 44 deletions

View file

@ -6,6 +6,7 @@
typedef unsigned ec_uint32;
typedef unsigned long long ec_uint64;
typedef struct ec_byte_buffer ec_byte_buffer;
@ -45,5 +46,6 @@ long ec_byte_bytes(ec_byte_buffer *_b);
unsigned char *ec_byte_get_buffer(ec_byte_buffer *_b);
int ec_ilog(ec_uint32 _v);
int ec_ilog64(ec_uint64 _v);
#endif