Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2014-11-23 01:27:38 +0300
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2014-11-23 08:51:18 +0300
commitdfc6f56c5a6a4b0470407ab44bf8cf91b1c9b012 (patch)
tree6ab644f60bc325566038d3cddc1cac6aea06c876 /libavcodec/xface.h
parent6369a7b742bd64e7ded377fe79a5d723379ce08d (diff)
xface: reduce table sizes.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec/xface.h')
-rw-r--r--libavcodec/xface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/xface.h b/libavcodec/xface.h
index 6fbe908b67..63df5d3308 100644
--- a/libavcodec/xface.h
+++ b/libavcodec/xface.h
@@ -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.
* Offset gives the first possible encoding of the range. */
typedef struct {
- int range;
- int offset;
+ uint8_t range;
+ uint8_t offset;
} ProbRange;
extern const ProbRange ff_xface_probranges_per_level[4][3];