Skip to content
GitLab
Menu
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
39772c1b
Commit
39772c1b
authored
Dec 01, 2016
by
Jingning Han
Browse files
Fix get_entropy_contexts_plane for 2x2 transform block size
Change-Id: I094d7787b5ababa4855a0c57064c09c6fa02aede
parent
cabd9892
Changes
1
Show whitespace changes
Inline
Side-by-side
av1/encoder/rd.c
View file @
39772c1b
...
@@ -557,6 +557,9 @@ static void get_entropy_contexts_plane(
...
@@ -557,6 +557,9 @@ static void get_entropy_contexts_plane(
int
i
;
int
i
;
switch
(
tx_size
)
{
switch
(
tx_size
)
{
#if CONFIG_CB4X4
case
TX_2X2
:
#endif
case
TX_4X4
:
case
TX_4X4
:
memcpy
(
t_above
,
above
,
sizeof
(
ENTROPY_CONTEXT
)
*
num_4x4_w
);
memcpy
(
t_above
,
above
,
sizeof
(
ENTROPY_CONTEXT
)
*
num_4x4_w
);
memcpy
(
t_left
,
left
,
sizeof
(
ENTROPY_CONTEXT
)
*
num_4x4_h
);
memcpy
(
t_left
,
left
,
sizeof
(
ENTROPY_CONTEXT
)
*
num_4x4_h
);
...
...
Write
Preview
Supports
Markdown
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