Commit dfc6f56c authored by Reimar Döffinger's avatar Reimar Döffinger

xface: reduce table sizes.

Signed-off-by: 's avatarReimar Döffinger <Reimar.Doeffinger@gmx.de>
parent 6369a7b7
...@@ -85,8 +85,8 @@ enum XFaceColor { XFACE_COLOR_BLACK = 0, XFACE_COLOR_GREY, XFACE_COLOR_WHITE }; ...@@ -85,8 +85,8 @@ enum XFaceColor { XFACE_COLOR_BLACK = 0, XFACE_COLOR_GREY, XFACE_COLOR_WHITE };
* The probability of the data determines the range of possible encodings. * The probability of the data determines the range of possible encodings.
* Offset gives the first possible encoding of the range. */ * Offset gives the first possible encoding of the range. */
typedef struct { typedef struct {
int range; uint8_t range;
int offset; uint8_t offset;
} ProbRange; } ProbRange;
extern const ProbRange ff_xface_probranges_per_level[4][3]; extern const ProbRange ff_xface_probranges_per_level[4][3];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment