Skip to content
Snippets Groups Projects
Commit 7804befb authored by Yunqing Wang's avatar Yunqing Wang
Browse files

Fix one gcc compiler warning

../libvpx/vp8/encoder/bitstream.c: In function ‘pack_inter_mode_mvs’:
../libvpx/vp8/encoder/bitstream.c:1026: warning: array subscript has type ‘char’

Change-Id: Ic77491e0a172fa1821e5b3e914d0dc41fe87c00f
parent d6da7b8e
No related branches found
No related tags found
No related merge requests found
...@@ -169,7 +169,7 @@ typedef struct ...@@ -169,7 +169,7 @@ typedef struct
MV as_mv; MV as_mv;
} mv; } mv;
char partitioning; unsigned char partitioning;
unsigned char mb_skip_coeff; //does this mb has coefficients at all, 1=no coefficients, 0=need decode tokens unsigned char mb_skip_coeff; //does this mb has coefficients at all, 1=no coefficients, 0=need decode tokens
unsigned char dc_diff; unsigned char dc_diff;
unsigned char need_to_clamp_mvs; unsigned char need_to_clamp_mvs;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment