Renaming vp9_token_struct to vp9_token and removing previous typedef.
Change-Id: If69c3d795f87af5cc7bfdfe70ef733c41b4d55c8
This commit is contained in:
@@ -31,16 +31,15 @@ typedef int8_t vp9_tree_index;
|
||||
|
||||
typedef const vp9_tree_index vp9_tree[], *vp9_tree_p;
|
||||
|
||||
typedef const struct vp9_token_struct {
|
||||
struct vp9_token {
|
||||
int value;
|
||||
int Len;
|
||||
} vp9_token;
|
||||
int len;
|
||||
};
|
||||
|
||||
/* Construct encoding array from tree. */
|
||||
|
||||
void vp9_tokens_from_tree(struct vp9_token_struct *, vp9_tree);
|
||||
void vp9_tokens_from_tree_offset(struct vp9_token_struct *, vp9_tree,
|
||||
int offset);
|
||||
void vp9_tokens_from_tree(struct vp9_token*, vp9_tree);
|
||||
void vp9_tokens_from_tree_offset(struct vp9_token*, vp9_tree, int offset);
|
||||
|
||||
/* Convert array of token occurrence counts into a table of probabilities
|
||||
for the associated binary encoding tree. Also writes count of branches
|
||||
|
Reference in New Issue
Block a user