Displaying 1 result from an estimated 1 matches for "ec_window".
Did you mean:
_window
2011 Mar 03
0
[PATCH] Eliminate the ec_int32 and ec_uint32 typedefs.
...ure 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 ec_enc;
@@ -44,8 +44,6 @@ typedef struct ec_ctx ec...