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
d8e55641
Commit
d8e55641
authored
Mar 13, 2014
by
Dmitry Kovalev
Browse files
Using MB_PREDICTION_MODE enum instead of int.
Change-Id: I652d17f7bff84f75d015f4f39652472e14eb3134
parent
069e2458
Changes
2
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_reconintra.c
View file @
d8e55641
...
...
@@ -434,7 +434,7 @@ static void build_intra_predictors(const MACROBLOCKD *xd, const uint8_t *ref,
}
void
vp9_predict_intra_block
(
const
MACROBLOCKD
*
xd
,
int
block_idx
,
int
bwl_in
,
TX_SIZE
tx_size
,
int
mode
,
TX_SIZE
tx_size
,
MB_PREDICTION_MODE
mode
,
const
uint8_t
*
ref
,
int
ref_stride
,
uint8_t
*
dst
,
int
dst_stride
,
int
aoff
,
int
loff
,
int
plane
)
{
...
...
vp9/common/vp9_reconintra.h
View file @
d8e55641
...
...
@@ -19,7 +19,7 @@ extern "C" {
#endif
void
vp9_predict_intra_block
(
const
MACROBLOCKD
*
xd
,
int
block_idx
,
int
bwl_in
,
TX_SIZE
tx_size
,
int
mode
,
TX_SIZE
tx_size
,
MB_PREDICTION_MODE
mode
,
const
uint8_t
*
ref
,
int
ref_stride
,
uint8_t
*
dst
,
int
dst_stride
,
int
aoff
,
int
loff
,
int
plane
);
...
...
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