Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
1e596da8
Commit
1e596da8
authored
Oct 29, 2012
by
Ronald S. Bultje
Browse files
encodemb: make locally used functions static.
Change-Id: I8341a19cb4f2234841a40fcbf560315f079b0108
parent
8044c6a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/encodemb.c
View file @
1e596da8
...
...
@@ -267,9 +267,9 @@ static const int plane_rd_mult[4] = {
}\
}
void
optimize_b
(
MACROBLOCK
*
mb
,
int
i
,
PLANE_TYPE
type
,
ENTROPY_CONTEXT
*
a
,
ENTROPY_CONTEXT
*
l
,
const
VP8_ENCODER_RTCD
*
rtcd
,
int
tx_size
)
{
static
void
optimize_b
(
MACROBLOCK
*
mb
,
int
i
,
PLANE_TYPE
type
,
ENTROPY_CONTEXT
*
a
,
ENTROPY_CONTEXT
*
l
,
const
VP8_ENCODER_RTCD
*
rtcd
,
int
tx_size
)
{
BLOCK
*
b
;
BLOCKD
*
d
;
vp8_token_state
tokens
[
65
][
2
];
...
...
@@ -689,14 +689,14 @@ void vp8_optimize_mbuv_8x8(MACROBLOCK *x, const VP8_ENCODER_RTCD *rtcd) {
}
}
void
optimize_mb_8x8
(
MACROBLOCK
*
x
,
const
VP8_ENCODER_RTCD
*
rtcd
)
{
static
void
optimize_mb_8x8
(
MACROBLOCK
*
x
,
const
VP8_ENCODER_RTCD
*
rtcd
)
{
vp8_optimize_mby_8x8
(
x
,
rtcd
);
vp8_optimize_mbuv_8x8
(
x
,
rtcd
);
}
void
optimize_b_16x16
(
MACROBLOCK
*
mb
,
int
i
,
PLANE_TYPE
type
,
ENTROPY_CONTEXT
*
a
,
ENTROPY_CONTEXT
*
l
,
const
VP8_ENCODER_RTCD
*
rtcd
)
{
static
void
optimize_b_16x16
(
MACROBLOCK
*
mb
,
int
i
,
PLANE_TYPE
type
,
ENTROPY_CONTEXT
*
a
,
ENTROPY_CONTEXT
*
l
,
const
VP8_ENCODER_RTCD
*
rtcd
)
{
BLOCK
*
b
=
&
mb
->
block
[
i
];
BLOCKD
*
d
=
&
mb
->
e_mbd
.
block
[
i
];
vp8_token_state
tokens
[
257
][
2
];
...
...
Write
Preview
Supports
Markdown
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