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
2a67a34f
Commit
2a67a34f
authored
Oct 29, 2013
by
Johann
Committed by
Gerrit Code Review
Oct 29, 2013
Browse files
Merge "vp9_decodframe.c: use vpx_memset instead of cast"
parents
b18ea70b
dc799a87
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/decoder/vp9_decodframe.c
View file @
2a67a34f
...
...
@@ -282,7 +282,7 @@ static void decode_block(int plane, int block, BLOCK_SIZE plane_bsize,
}
if
(
eob
==
1
)
{
*
((
int32_t
*
)
qcoeff
)
=
0
;
vpx_memset
(
qcoeff
,
0
,
2
*
sizeof
(
qcoeff
[
0
]))
;
}
else
{
if
(
tx_type
==
DCT_DCT
&&
tx_size
<=
TX_16X16
&&
eob
<=
10
)
vpx_memset
(
qcoeff
,
0
,
4
*
(
4
<<
tx_size
)
*
sizeof
(
qcoeff
[
0
]));
...
...
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