search for: ec_int32

Displaying 1 result from an estimated 1 matches for "ec_int32".

Did you mean: ec_uint32
2011 Mar 03
0
[PATCH] Eliminate the ec_int32 and ec_uint32 typedefs.
...case number of bits of val that must be encoded to ensure that the value is inside the range for any possible diff --git a/libcelt/entcode.h b/libcelt/entcode.h index 56f7ffe..f24e1c4 100644 --- a/libcelt/entcode.h +++ b/libcelt/entcode.h @@ -35,8 +35,8 @@ -typedef celt_int32 ec_int32; -typedef celt_uint32 ec_uint32; +/*OPT: ec_window must be at least 32 bits, but if you have fast arithmetic on a + larger type, you can speed up the decoder by using it here.*/ typedef celt_uint32 ec_window; typedef struct ec_ctx ec_ctx; typedef struct ec_ctx...