Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
f80bd43b
Commit
f80bd43b
authored
May 19, 2014
by
Dmitry Kovalev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing unused members from PICK_MODE_CONTEXT struct.
Change-Id: Ieb3bc037a2ae7791323a0f9cec04381ba9b0c795
parent
28012a75
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
10 deletions
+0
-10
vp9/encoder/vp9_context_tree.h
vp9/encoder/vp9_context_tree.h
+0
-6
vp9/encoder/vp9_rdopt.c
vp9/encoder/vp9_rdopt.c
+0
-4
No files found.
vp9/encoder/vp9_context_tree.h
View file @
f80bd43b
...
...
@@ -33,13 +33,7 @@ typedef struct {
int
is_coded
;
int
num_4x4_blk
;
int
skip
;
int_mv
best_ref_mv
[
2
];
int_mv
ref_mvs
[
MAX_REF_FRAMES
][
MAX_MV_REF_CANDIDATES
];
int
rate
;
int
distortion
;
int
best_mode_index
;
int
rddiv
;
int
rdmult
;
int
hybrid_pred_diff
;
int
comp_pred_diff
;
int
single_pred_diff
;
...
...
vp9/encoder/vp9_rdopt.c
View file @
f80bd43b
...
...
@@ -2222,10 +2222,6 @@ static void store_coding_context(MACROBLOCK *x, PICK_MODE_CONTEXT *ctx,
ctx
->
skip
=
x
->
skip
;
ctx
->
best_mode_index
=
mode_index
;
ctx
->
mic
=
*
xd
->
mi
[
0
];
ctx
->
best_ref_mv
[
0
].
as_int
=
ref_mv
->
as_int
;
ctx
->
best_ref_mv
[
1
].
as_int
=
second_ref_mv
->
as_int
;
ctx
->
single_pred_diff
=
(
int
)
comp_pred_diff
[
SINGLE_REFERENCE
];
ctx
->
comp_pred_diff
=
(
int
)
comp_pred_diff
[
COMPOUND_REFERENCE
];
ctx
->
hybrid_pred_diff
=
(
int
)
comp_pred_diff
[
REFERENCE_MODE_SELECT
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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