Remove redundant "Prob" type (it's a duplicate of vp9_prob).

Change-Id: I9548891d7b8ff672a31579bcdce74e4cea529883
This commit is contained in:
Ronald S. Bultje 2012-12-18 10:38:12 -08:00
Родитель 1306ba7659
Коммит ebb5f2f7bd
1 изменённых файлов: 6 добавлений и 8 удалений

Просмотреть файл

@ -24,8 +24,6 @@
typedef const uchar cuchar;
typedef const uint cuint;
typedef vp9_prob Prob;
#include "vp9/common/vp9_coefupdateprobs.h"
const int vp9_i8x8_block[4] = {0, 2, 8, 10};
@ -490,12 +488,12 @@ struct vp9_token_struct vp9_coef_encodings[MAX_ENTROPY_TOKENS];
/* Trees for extra bits. Probabilities are constant and
do not depend on previously encoded bits */
static const Prob Pcat1[] = { 159};
static const Prob Pcat2[] = { 165, 145};
static const Prob Pcat3[] = { 173, 148, 140};
static const Prob Pcat4[] = { 176, 155, 140, 135};
static const Prob Pcat5[] = { 180, 157, 141, 134, 130};
static const Prob Pcat6[] = {
static const vp9_prob Pcat1[] = { 159};
static const vp9_prob Pcat2[] = { 165, 145};
static const vp9_prob Pcat3[] = { 173, 148, 140};
static const vp9_prob Pcat4[] = { 176, 155, 140, 135};
static const vp9_prob Pcat5[] = { 180, 157, 141, 134, 130};
static const vp9_prob Pcat6[] = {
254, 254, 254, 252, 249, 243, 230, 196, 177, 153, 140, 133, 130, 129
};