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
90dad2e4
Commit
90dad2e4
authored
Jun 01, 2017
by
Angie Chiang
Browse files
Copy ctx in get_entropy_contexts_plane for lv_map
Change-Id: I112255996d85f94197387b8c481a5353d82a6b0a
parent
1c96e82c
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/encoder/rd.c
View file @
90dad2e4
...
...
@@ -556,6 +556,12 @@ static void get_entropy_contexts_plane(
const
ENTROPY_CONTEXT
*
const
above
=
pd
->
above_context
;
const
ENTROPY_CONTEXT
*
const
left
=
pd
->
left_context
;
#if CONFIG_LV_MAP
memcpy
(
t_above
,
above
,
sizeof
(
ENTROPY_CONTEXT
)
*
num_4x4_w
);
memcpy
(
t_left
,
left
,
sizeof
(
ENTROPY_CONTEXT
)
*
num_4x4_h
);
return
;
#endif // CONFIG_LV_MAP
int
i
;
#if CONFIG_CHROMA_2X2
...
...
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