Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
fa84acb4
Commit
fa84acb4
authored
Jul 23, 2015
by
Alex Converse
Browse files
Allocate eobs array per txblock and not per pixel.
Change-Id: I5368f5fc7283420c38d5bd85e3077b761d94ace6
parent
33a9d53c
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_context_tree.c
View file @
fa84acb4
...
...
@@ -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
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