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
559e8d8e
Commit
559e8d8e
authored
May 10, 2016
by
Geza Lore
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build without dual-filter
Change-Id: I91946940c1540c9f935161da89155ed304055fda
parent
6f3e7160
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
7 deletions
+13
-7
vp10/common/reconinter.c
vp10/common/reconinter.c
+6
-2
vp10/encoder/bitstream.c
vp10/encoder/bitstream.c
+7
-5
No files found.
vp10/common/reconinter.c
View file @
559e8d8e
...
...
@@ -474,9 +474,13 @@ void vp10_make_masked_inter_predictor(
const
MODE_INFO
*
mi
=
xd
->
mi
[
0
];
// The prediction filter types used here should be those for
// the second reference block.
INTERP_FILTER
tmp_ipf
[
4
]
=
{
interp_filter
[
2
],
interp_filter
[
3
],
interp_filter
[
2
],
interp_filter
[
3
],
#if CONFIG_DUAL_FILTER
INTERP_FILTER
tmp_ipf
[
4
]
=
{
interp_filter
[
2
],
interp_filter
[
3
],
interp_filter
[
2
],
interp_filter
[
3
],
};
#else
INTERP_FILTER
tmp_ipf
=
interp_filter
;
#endif // CONFIG_DUAL_FILTER
#if CONFIG_VP9_HIGHBITDEPTH
DECLARE_ALIGNED
(
16
,
uint8_t
,
tmp_dst_
[
2
*
MAX_SB_SQUARE
]);
uint8_t
*
tmp_dst
=
...
...
vp10/encoder/bitstream.c
View file @
559e8d8e
...
...
@@ -950,11 +950,13 @@ static void write_switchable_interp_filter(VP10_COMP *cpi,
}
}
#else
const
int
ctx
=
vp10_get_pred_context_switchable_interp
(
xd
);
vp10_write_token
(
w
,
vp10_switchable_interp_tree
,
cm
->
fc
->
switchable_interp_prob
[
ctx
],
&
switchable_interp_encodings
[
mbmi
->
interp_filter
]);
++
cpi
->
interp_filter_selected
[
0
][
mbmi
->
interp_filter
];
{
const
int
ctx
=
vp10_get_pred_context_switchable_interp
(
xd
);
vp10_write_token
(
w
,
vp10_switchable_interp_tree
,
cm
->
fc
->
switchable_interp_prob
[
ctx
],
&
switchable_interp_encodings
[
mbmi
->
interp_filter
]);
++
cpi
->
interp_filter_selected
[
0
][
mbmi
->
interp_filter
];
}
#endif
}
}
...
...
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