Skip to content
Snippets Groups Projects
Commit 83642e9a authored by Michael Platzer's avatar Michael Platzer
Browse files

sequential/h264_dec: add an explicit signed/unsigned before each char

parent 80408643
Branches
No related tags found
No related merge requests found
...@@ -47,8 +47,8 @@ extern signed char h264_dec_mv_array[ 65 ][ 65 ][ 2 ]; ...@@ -47,8 +47,8 @@ extern signed char h264_dec_mv_array[ 65 ][ 65 ][ 2 ];
extern short h264_dec_list_imgUV[ 2 ][ 45 ][ 45 ]; extern short h264_dec_list_imgUV[ 2 ][ 45 ][ 45 ];
extern int h264_dec_img_m7[ 16 ][ 16 ]; extern int h264_dec_img_m7[ 16 ][ 16 ];
char h264_dec_img_mpr[ 7 ][ 7 ]; signed char h264_dec_img_mpr[ 7 ][ 7 ];
char h264_dec_dec_picture_imgUV[ 2 ][ 64 ][ 54 ]; signed char h264_dec_dec_picture_imgUV[ 2 ][ 64 ][ 54 ];
struct h264_dec_img_par h264_dec_img; struct h264_dec_img_par h264_dec_img;
...@@ -66,7 +66,7 @@ void h264_dec_init () ...@@ -66,7 +66,7 @@ void h264_dec_init ()
{ {
unsigned int i; unsigned int i;
unsigned char *p; unsigned char *p;
volatile char bitmask = 0; volatile signed char bitmask = 0;
/* /*
Apply volatile XOR-bitmask to entire input array. Apply volatile XOR-bitmask to entire input array.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment