diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-08-24 14:02:02 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-08-24 14:02:02 +0000 |
commit | 50464a1e835cbc6a5a80099a8a01be11af72ca7b (patch) | |
tree | dc92713a8ce1f9c0f50b0f16e4d4786d034ebe82 | |
parent | 24c07998b9035411e0e0be86447f96d1c93c5a2b (diff) | |
download | ffmpeg-50464a1e835cbc6a5a80099a8a01be11af72ca7b.tar.gz |
int->int8_t (no need for them to be int ...)
Originally committed as revision 10204 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/h264data.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264data.h b/libavcodec/h264data.h index 8ade1df232..ddf2ce9bdc 100644 --- a/libavcodec/h264data.h +++ b/libavcodec/h264data.h @@ -688,7 +688,7 @@ static const int tc0_table[52*3][3] = { /* Cabac pre state table */ -static const int cabac_context_init_I[460][2] = +static const int8_t cabac_context_init_I[460][2] = { /* 0 - 10 */ { 20, -15 }, { 2, 54 }, { 3, 74 }, { 20, -15 }, @@ -857,7 +857,7 @@ static const int cabac_context_init_I[460][2] = { 29, 9 }, { 35, 20 }, { 29, 36 }, { 14, 67 } }; -static const int cabac_context_init_PB[3][460][2] = +static const int8_t cabac_context_init_PB[3][460][2] = { /* i_cabac_init_idc == 0 */ { |