Browse Source

int->int8_t (no need for them to be int ...)

Originally committed as revision 10204 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 18 years ago
parent
commit
50464a1e83
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/h264data.h

+ 2
- 2
libavcodec/h264data.h View File

@@ -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 */
{


Loading…
Cancel
Save