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
Raphael Zumer
aom-rav1e
Commits
b4297bb1
Commit
b4297bb1
authored
Jul 24, 2015
by
Aℓex Converse
Committed by
Gerrit Code Review
Jul 24, 2015
Browse files
Merge "Allocate eobs array per txblock and not per pixel."
parents
fd660f01
fa84acb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_context_tree.c
View file @
b4297bb1
...
...
@@ -36,7 +36,7 @@ static void alloc_mode_context(VP9_COMMON *cm, int num_4x4_blk,
CHECK_MEM_ERROR
(
cm
,
ctx
->
dqcoeff
[
i
][
k
],
vpx_memalign
(
16
,
num_pix
*
sizeof
(
*
ctx
->
dqcoeff
[
i
][
k
])));
CHECK_MEM_ERROR
(
cm
,
ctx
->
eobs
[
i
][
k
],
vpx_memalign
(
16
,
num_
pix
*
sizeof
(
*
ctx
->
eobs
[
i
][
k
])));
vpx_memalign
(
16
,
num_
blk
*
sizeof
(
*
ctx
->
eobs
[
i
][
k
])));
ctx
->
coeff_pbuf
[
i
][
k
]
=
ctx
->
coeff
[
i
][
k
];
ctx
->
qcoeff_pbuf
[
i
][
k
]
=
ctx
->
qcoeff
[
i
][
k
];
ctx
->
dqcoeff_pbuf
[
i
][
k
]
=
ctx
->
dqcoeff
[
i
][
k
];
...
...
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