Skip to content
GitLab
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
e2ac9855
Commit
e2ac9855
authored
Jun 05, 2017
by
Luc Trudeau
Browse files
Move FrameContext out of plane loop
Change-Id: Ideaeb52dbaf87e5a68da90cb94b0517760cb9d5c
parent
2dd982e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/common/onyxc_int.h
View file @
e2ac9855
...
...
@@ -525,8 +525,7 @@ static INLINE void av1_init_macroblockd(AV1_COMMON *cm, MACROBLOCKD *xd,
CFL_CTX
*
cfl
,
#endif
tran_low_t
*
dqcoeff
)
{
int
i
;
for
(
i
=
0
;
i
<
MAX_MB_PLANE
;
++
i
)
{
for
(
int
i
=
0
;
i
<
MAX_MB_PLANE
;
++
i
)
{
xd
->
plane
[
i
].
dqcoeff
=
dqcoeff
;
#if CONFIG_PVQ
xd
->
plane
[
i
].
pvq_ref_coeff
=
pvq_ref_coeff
;
...
...
@@ -558,8 +557,8 @@ static INLINE void av1_init_macroblockd(AV1_COMMON *cm, MACROBLOCKD *xd,
sizeof
(
cm
->
uv_dequant_nuq
));
#endif
}
xd
->
fc
=
cm
->
fc
;
}
xd
->
fc
=
cm
->
fc
;
xd
->
above_seg_context
=
cm
->
above_seg_context
;
#if CONFIG_VAR_TX
xd
->
above_txfm_context
=
cm
->
above_txfm_context
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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