Commit 58961c74 authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Gerrit Code Review
Browse files

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

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