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
e2ac9855
Commit
e2ac9855
authored
Jun 05, 2017
by
Luc Trudeau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move FrameContext out of plane loop
Change-Id: Ideaeb52dbaf87e5a68da90cb94b0517760cb9d5c
parent
2dd982e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
av1/common/onyxc_int.h
av1/common/onyxc_int.h
+2
-3
No files found.
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
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