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
8ce9fb8d
Commit
8ce9fb8d
authored
Oct 29, 2012
by
Ronald S. Bultje
Browse files
bitstream: give exported symbols a vp9_ prefix; make local symbols static.
Change-Id: I3aa5b515c1eae19ae40ba9808d133590c95f7d13
parent
7228a38a
Changes
3
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/bitstream.c
View file @
8ce9fb8d
...
...
@@ -186,7 +186,7 @@ static int get_binary_prob(int n0, int n1) {
return
get_prob
(
n0
,
n0
+
n1
);
}
void
update_skip_probs
(
VP8_COMP
*
cpi
)
{
void
vp9_
update_skip_probs
(
VP8_COMP
*
cpi
)
{
VP8_COMMON
*
const
pc
=
&
cpi
->
common
;
int
prob_skip_false
[
3
]
=
{
0
,
0
,
0
};
int
k
;
...
...
@@ -197,7 +197,8 @@ void update_skip_probs(VP8_COMP *cpi) {
}
}
void
update_switchable_interp_probs
(
VP8_COMP
*
cpi
,
vp8_writer
*
const
bc
)
{
static
void
update_switchable_interp_probs
(
VP8_COMP
*
cpi
,
vp8_writer
*
const
bc
)
{
VP8_COMMON
*
const
pc
=
&
cpi
->
common
;
unsigned
int
branch_ct
[
32
][
2
];
int
i
,
j
;
...
...
@@ -1512,8 +1513,7 @@ static void print_prob_tree(vp8_prob
fclose
(
f
);
}
void
build_coeff_contexts
(
VP8_COMP
*
cpi
)
{
static
void
build_coeff_contexts
(
VP8_COMP
*
cpi
)
{
int
i
=
0
,
j
,
k
;
#ifdef ENTROPY_STATS
int
t
=
0
;
...
...
@@ -2263,7 +2263,7 @@ void vp8_pack_bitstream(VP8_COMP *cpi, unsigned char *dest, unsigned long *size)
if
(
pc
->
mb_no_coeff_skip
)
{
int
k
;
update_skip_probs
(
cpi
);
vp9_
update_skip_probs
(
cpi
);
for
(
k
=
0
;
k
<
MBSKIP_CONTEXTS
;
++
k
)
vp8_write_literal
(
&
header_bc
,
pc
->
mbskip_pred_probs
[
k
],
8
);
}
...
...
vp8/encoder/bitstream.h
View file @
8ce9fb8d
...
...
@@ -24,4 +24,4 @@ void vp8cx_pack_tokens_armv5(vp8_writer *w, const TOKENEXTRA *p, int xcount,
#endif
#endif
void
update_skip_probs
(
VP8_COMP
*
cpi
);
void
vp9_
update_skip_probs
(
VP8_COMP
*
cpi
);
vp8/encoder/onyx_if.c
View file @
8ce9fb8d
...
...
@@ -280,7 +280,7 @@ static void update_base_skip_probs(VP8_COMP *cpi) {
VP8_COMMON
*
cm
=
&
cpi
->
common
;
if
(
cm
->
frame_type
!=
KEY_FRAME
)
{
update_skip_probs
(
cpi
);
vp9_
update_skip_probs
(
cpi
);
if
(
cm
->
refresh_alt_ref_frame
)
{
int
k
;
...
...
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