Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
240ae972
Commit
240ae972
authored
Mar 09, 2016
by
Jingning Han
Committed by
Gerrit Code Review
Mar 09, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Add horizontal and vertical scan order for 1-D transform" into nextgenv2
parents
954e560f
e0413094
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1089 additions
and
11 deletions
+1089
-11
vp10/common/scan.c
vp10/common/scan.c
+1084
-11
vp10/decoder/decodeframe.c
vp10/decoder/decodeframe.c
+5
-0
No files found.
vp10/common/scan.c
View file @
240ae972
This diff is collapsed.
Click to expand it.
vp10/decoder/decodeframe.c
View file @
240ae972
...
...
@@ -276,10 +276,15 @@ static void inverse_transform_block_inter(MACROBLOCKD* xd, int plane,
}
else
{
if
(
tx_type
==
DCT_DCT
&&
tx_size
<=
TX_16X16
&&
eob
<=
10
)
memset
(
dqcoeff
,
0
,
4
*
(
4
<<
tx_size
)
*
sizeof
(
dqcoeff
[
0
]));
#if CONFIG_EXT_TX
else
memset
(
dqcoeff
,
0
,
(
16
<<
(
tx_size
<<
1
))
*
sizeof
(
dqcoeff
[
0
]));
#else
else
if
(
tx_size
==
TX_32X32
&&
eob
<=
34
)
memset
(
dqcoeff
,
0
,
256
*
sizeof
(
dqcoeff
[
0
]));
else
memset
(
dqcoeff
,
0
,
(
16
<<
(
tx_size
<<
1
))
*
sizeof
(
dqcoeff
[
0
]));
#endif
}
}
}
...
...
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