Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
b55ecafd
Commit
b55ecafd
authored
Jul 11, 2013
by
Dmitry Kovalev
Committed by
Gerrit Code Review
Jul 11, 2013
Browse files
Merge "Making vp9_default_nmv_context static."
parents
c4ad3273
ac72ad07
Changes
2
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_entropymv.c
View file @
b55ecafd
...
...
@@ -56,7 +56,7 @@ const vp9_tree_index vp9_mv_fp_tree [2 * 4 - 2] = {
};
struct
vp9_token
vp9_mv_fp_encodings
[
4
];
const
nmv_context
vp9_
default_nmv_context
=
{
static
const
nmv_context
default_nmv_context
=
{
{
32
,
64
,
96
},
{
{
/* vert component */
...
...
@@ -360,5 +360,5 @@ void vp9_entropy_mv_init() {
}
void
vp9_init_mv_probs
(
VP9_COMMON
*
cm
)
{
vpx_memcpy
(
&
cm
->
fc
.
nmvc
,
&
vp9_
default_nmv_context
,
sizeof
(
nmv_context
))
;
cm
->
fc
.
nmvc
=
default_nmv_context
;
}
vp9/common/vp9_entropymv.h
View file @
b55ecafd
...
...
@@ -130,7 +130,6 @@ typedef struct {
void
vp9_inc_mv
(
const
MV
*
mv
,
const
MV
*
ref
,
nmv_context_counts
*
mvctx
,
int
usehp
);
extern
const
nmv_context
vp9_default_nmv_context
;
void
vp9_counts_process
(
nmv_context_counts
*
NMVcount
,
int
usehp
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment