Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
libvpx
Commits
a4d308a4
Commit
a4d308a4
authored
Oct 30, 2012
by
Paul Wilkins
Committed by
Gerrit Code Review
Oct 30, 2012
Browse files
Merge "segmentation: make local symbols static." into experimental
parents
dd2e43c3
7f6f0703
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
vp8/encoder/bitstream.c
vp8/encoder/bitstream.c
+1
-1
vp8/encoder/segmentation.c
vp8/encoder/segmentation.c
+1
-1
vp8/encoder/segmentation.h
vp8/encoder/segmentation.h
+1
-1
No files found.
vp8/encoder/bitstream.c
View file @
a4d308a4
...
...
@@ -1929,7 +1929,7 @@ void vp8_pack_bitstream(VP8_COMP *cpi, unsigned char *dest, unsigned long *size)
// If it is, then indicate the method that will be used.
if
(
xd
->
update_mb_segmentation_map
)
{
// Select the coding strategy (temporal or spatial)
choose_segmap_coding_method
(
cpi
);
vp9_
choose_segmap_coding_method
(
cpi
);
// Send the tree probabilities used to decode unpredicted
// macro-block segments
for
(
i
=
0
;
i
<
MB_FEATURE_TREE_PROBS
;
i
++
)
{
...
...
vp8/encoder/segmentation.c
View file @
a4d308a4
...
...
@@ -160,7 +160,7 @@ static int cost_segmap(MACROBLOCKD *xd,
}
void
choose_segmap_coding_method
(
VP8_COMP
*
cpi
)
{
void
vp9_
choose_segmap_coding_method
(
VP8_COMP
*
cpi
)
{
VP8_COMMON
*
const
cm
=
&
cpi
->
common
;
MACROBLOCKD
*
const
xd
=
&
cpi
->
mb
.
e_mbd
;
...
...
vp8/encoder/segmentation.h
View file @
a4d308a4
...
...
@@ -38,6 +38,6 @@ extern void vp8_set_segmentation_map(VP8_PTR ptr, unsigned char *segmentation_ma
//
extern
void
vp8_set_segment_data
(
VP8_PTR
ptr
,
signed
char
*
feature_data
,
unsigned
char
abs_delta
);
extern
void
choose_segmap_coding_method
(
VP8_COMP
*
cpi
);
extern
void
vp9_
choose_segmap_coding_method
(
VP8_COMP
*
cpi
);
#endif
/* __INC_SEGMENTATION_H__ */
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