Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
f817e539
Commit
f817e539
authored
Jun 05, 2017
by
Luc Trudeau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CFL] Move cfl_init out of plane loop
Change-Id: I3ce09c03d4306c1f2a9c70aa1e82126493bc9406
parent
d339595c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
av1/common/onyxc_int.h
av1/common/onyxc_int.h
+4
-4
No files found.
av1/common/onyxc_int.h
View file @
f817e539
...
...
@@ -529,10 +529,6 @@ static INLINE void av1_init_macroblockd(AV1_COMMON *cm, MACROBLOCKD *xd,
xd
->
plane
[
i
].
dqcoeff
=
dqcoeff
;
#if CONFIG_PVQ
xd
->
plane
[
i
].
pvq_ref_coeff
=
pvq_ref_coeff
;
#endif
#if CONFIG_CFL
xd
->
cfl
=
cfl
;
cfl_init
(
cfl
,
cm
);
#endif
xd
->
above_context
[
i
]
=
cm
->
above_context
[
i
];
if
(
xd
->
plane
[
i
].
plane_type
==
PLANE_TYPE_Y
)
{
...
...
@@ -561,6 +557,10 @@ static INLINE void av1_init_macroblockd(AV1_COMMON *cm, MACROBLOCKD *xd,
xd
->
above_seg_context
=
cm
->
above_seg_context
;
#if CONFIG_VAR_TX
xd
->
above_txfm_context
=
cm
->
above_txfm_context
;
#endif
#if CONFIG_CFL
cfl_init
(
cfl
,
cm
);
xd
->
cfl
=
cfl
;
#endif
xd
->
mi_stride
=
cm
->
mi_stride
;
xd
->
error_info
=
&
cm
->
error
;
...
...
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