mirror of https://git.ffmpeg.org/ffmpeg.git
xface: reduce table sizes.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
parent
6369a7b742
commit
dfc6f56c5a
|
@ -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];
|
||||||
|
|
Loading…
Reference in New Issue