x_motion_minq table reduction
Reduced by 4080 bytes. Change-Id: I037b55bc9684bf4a54bce238be00e8c4db3f643e
This commit is contained in:
Родитель
417b852967
Коммит
768ae275dc
|
@ -139,7 +139,7 @@ extern void vp8cx_init_quantizer(VP8_COMP *cpi);
|
|||
extern const int vp8cx_base_skip_false_prob[128];
|
||||
|
||||
// Tables relating active max Q to active min Q
|
||||
static const int kf_low_motion_minq[QINDEX_RANGE] =
|
||||
static const unsigned char kf_low_motion_minq[QINDEX_RANGE] =
|
||||
{
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
|
@ -150,7 +150,7 @@ static const int kf_low_motion_minq[QINDEX_RANGE] =
|
|||
11,11,12,12,13,13,13,13,14,14,15,15,15,15,16,16,
|
||||
16,16,17,17,18,18,18,18,19,20,20,21,21,22,23,23
|
||||
};
|
||||
static const int kf_high_motion_minq[QINDEX_RANGE] =
|
||||
static const unsigned char kf_high_motion_minq[QINDEX_RANGE] =
|
||||
{
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
|
@ -161,7 +161,7 @@ static const int kf_high_motion_minq[QINDEX_RANGE] =
|
|||
16,16,17,17,18,18,18,18,19,19,20,20,20,20,21,21,
|
||||
21,21,22,22,23,23,24,25,25,26,26,27,28,28,29,30
|
||||
};
|
||||
static const int gf_low_motion_minq[QINDEX_RANGE] =
|
||||
static const unsigned char gf_low_motion_minq[QINDEX_RANGE] =
|
||||
{
|
||||
0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,
|
||||
3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,
|
||||
|
@ -172,7 +172,7 @@ static const int gf_low_motion_minq[QINDEX_RANGE] =
|
|||
35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,
|
||||
43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58
|
||||
};
|
||||
static const int gf_mid_motion_minq[QINDEX_RANGE] =
|
||||
static const unsigned char gf_mid_motion_minq[QINDEX_RANGE] =
|
||||
{
|
||||
0,0,0,0,1,1,1,1,1,1,2,2,3,3,3,4,
|
||||
4,4,5,5,5,6,6,6,7,7,7,8,8,8,9,9,
|
||||
|
@ -183,7 +183,7 @@ static const int gf_mid_motion_minq[QINDEX_RANGE] =
|
|||
38,39,39,40,40,41,41,42,42,43,43,44,45,46,47,48,
|
||||
49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64
|
||||
};
|
||||
static const int gf_high_motion_minq[QINDEX_RANGE] =
|
||||
static const unsigned char gf_high_motion_minq[QINDEX_RANGE] =
|
||||
{
|
||||
0,0,0,0,1,1,1,1,1,2,2,2,3,3,3,4,
|
||||
4,4,5,5,5,6,6,6,7,7,7,8,8,8,9,9,
|
||||
|
@ -194,7 +194,7 @@ static const int gf_high_motion_minq[QINDEX_RANGE] =
|
|||
41,41,42,42,43,44,45,46,47,48,49,50,51,52,53,54,
|
||||
55,56,57,58,59,60,62,64,66,68,70,72,74,76,78,80
|
||||
};
|
||||
static const int inter_minq[QINDEX_RANGE] =
|
||||
static const unsigned char inter_minq[QINDEX_RANGE] =
|
||||
{
|
||||
0,0,1,1,2,3,3,4,4,5,6,6,7,8,8,9,
|
||||
9,10,11,11,12,13,13,14,15,15,16,17,17,18,19,20,
|
||||
|
|
Загрузка…
Ссылка в новой задаче