~bratsche/vlc/vlc-notify-add-actions-with-server-support

« back to all changes in this revision

Viewing changes to extras/x264/common/predict.h

  • Committer: Bazaar Package Importer
  • Date: 2008-11-28 09:29:51 UTC
  • Revision ID: jamesw@ubuntu.com-20081128092951-0y5ojboptscru17f
Tags: upstream-ubuntu-0.8.6.release.e+x264svn20071224+faad2.6.1
ImportĀ upstreamĀ versionĀ 0.8.6.release.e+x264svn20071224+faad2.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    I_PRED_CHROMA_DC_TOP  = 5,
39
39
    I_PRED_CHROMA_DC_128  = 6
40
40
};
41
 
static const int x264_mb_pred_mode8x8c_fix[7] =
 
41
static const uint8_t x264_mb_pred_mode8x8c_fix[7] =
42
42
{
43
43
    I_PRED_CHROMA_DC, I_PRED_CHROMA_H, I_PRED_CHROMA_V, I_PRED_CHROMA_P,
44
44
    I_PRED_CHROMA_DC, I_PRED_CHROMA_DC,I_PRED_CHROMA_DC
55
55
    I_PRED_16x16_DC_TOP  = 5,
56
56
    I_PRED_16x16_DC_128  = 6,
57
57
};
58
 
static const int x264_mb_pred_mode16x16_fix[7] =
 
58
static const uint8_t x264_mb_pred_mode16x16_fix[7] =
59
59
{
60
60
    I_PRED_16x16_V, I_PRED_16x16_H, I_PRED_16x16_DC, I_PRED_16x16_P,
61
61
    I_PRED_16x16_DC,I_PRED_16x16_DC,I_PRED_16x16_DC
77
77
    I_PRED_4x4_DC_TOP  = 10,
78
78
    I_PRED_4x4_DC_128  = 11,
79
79
};
80
 
static const int x264_mb_pred_mode4x4_fix[13] =
 
80
static const int8_t x264_mb_pred_mode4x4_fix[13] =
81
81
{
82
82
    -1,
83
83
    I_PRED_4x4_V,   I_PRED_4x4_H,   I_PRED_4x4_DC,