Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
libvpx
Commits
3cf5908e
Commit
3cf5908e
authored
10 years ago
by
Jim Bankoski
Browse files
Options
Download
Patches
Plain Diff
uint8_t segment and skip to avoid signed / unsigned warnings
Change-Id: I2e2765b851fb0a1b15351c2aa0e079197cbee373
parent
fffe4768
v1.14.0-linphone
1.4.X
feature/update_to_v1.9.0-linphone
feature/uwp_nuget
highbitdepth
indianrunnerduck
javanwhistlingduck
khakicampbell
linphone
linphone-android
linphone-old
longtailedduck
m49-2623
m52-2743
m54-2840
m56-2924
m66-3359
m68-3440
mandarinduck
nextgen
nextgenv2
sandbox/Jingning/experimental
sandbox/Jingning/vpx
sandbox/aconverse@google.com/ansbench
sandbox/hkuang@google.com/decode
sandbox/jimbankoski@google.com/proposed-aom
sandbox/jingning@google.com/decoder_test_suite
sandbox/jingning@google.com/experimental
sandbox/jzern@google.com/test
sandbox/wangch@google.com/vp9
sandbox/yaowu@google.com/mergeaom
v1.12.0-linphone
v1.6.1_linphone
v1.7.0-linphone
v1.9.0-linphone
v1.9.0
v1.9.0-rc1
v1.8.2
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
v1.4.0
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
vp9/common/vp9_blockd.h
+3
-3
vp9/common/vp9_blockd.h
vp9/encoder/vp9_encodemb.c
+2
-2
vp9/encoder/vp9_encodemb.c
vp9/encoder/vp9_encodemb.h
+1
-1
vp9/encoder/vp9_encodemb.h
with
6 additions
and
6 deletions
vp9/common/vp9_blockd.h
+
3
−
3
View file @
3cf5908e
...
...
@@ -124,9 +124,9 @@ typedef struct {
BLOCK_SIZE
sb_type
;
PREDICTION_MODE
mode
;
TX_SIZE
tx_size
;
u
int8_t
skip
;
u
int8_t
segment_id
;
u
int8_t
seg_id_predicted
;
// valid only when temporal_update is enabled
int8_t
skip
;
int8_t
segment_id
;
int8_t
seg_id_predicted
;
// valid only when temporal_update is enabled
// Only for INTRA blocks
PREDICTION_MODE
uv_mode
;
...
...
This diff is collapsed.
Click to expand it.
vp9/encoder/vp9_encodemb.c
+
2
−
2
View file @
3cf5908e
...
...
@@ -32,7 +32,7 @@ struct optimize_ctx {
struct
encode_b_args
{
MACROBLOCK
*
x
;
struct
optimize_ctx
*
ctx
;
unsigned
char
*
skip
;
int8_t
*
skip
;
};
void
vp9_subtract_block_c
(
int
rows
,
int
cols
,
...
...
@@ -699,7 +699,7 @@ static void encode_block_intra(int plane, int block, BLOCK_SIZE plane_bsize,
void
vp9_encode_block_intra
(
MACROBLOCK
*
x
,
int
plane
,
int
block
,
BLOCK_SIZE
plane_bsize
,
TX_SIZE
tx_size
,
unsigned
char
*
skip
)
{
int8_t
*
skip
)
{
struct
encode_b_args
arg
=
{
x
,
NULL
,
skip
};
encode_block_intra
(
plane
,
block
,
plane_bsize
,
tx_size
,
&
arg
);
}
...
...
This diff is collapsed.
Click to expand it.
vp9/encoder/vp9_encodemb.h
+
1
−
1
View file @
3cf5908e
...
...
@@ -33,7 +33,7 @@ void vp9_subtract_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane);
void
vp9_encode_block_intra
(
MACROBLOCK
*
x
,
int
plane
,
int
block
,
BLOCK_SIZE
plane_bsize
,
TX_SIZE
tx_size
,
unsigned
char
*
skip
);
int8_t
*
skip
);
void
vp9_encode_intra_block_plane
(
MACROBLOCK
*
x
,
BLOCK_SIZE
bsize
,
int
plane
);
...
...
This diff is collapsed.
Click to expand it.
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!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets