[cvs] / xvidcore / src / global.h Repository:
ViewVC logotype

Diff of /xvidcore/src/global.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5, Sat Apr 13 16:30:01 2002 UTC revision 1.10, Wed Jun 12 20:38:40 2002 UTC
# Line 20  Line 20 
20  #define MODE_INTERPOLATE        1  #define MODE_INTERPOLATE        1
21  #define MODE_BACKWARD           2  #define MODE_BACKWARD           2
22  #define MODE_FORWARD            3  #define MODE_FORWARD            3
23    #define MODE_DIRECT_NONE_MV     4
24    
25    
26  typedef struct  typedef struct
# Line 42  Line 43 
43  {  {
44          // decoder/encoder          // decoder/encoder
45          VECTOR mvs[4];          VECTOR mvs[4];
         uint32_t sad8[4];               // SAD values for inter4v-VECTORs  
         uint32_t sad16;                 // SAD value for inter-VECTOR  
46    
47      short int pred_values[6][MBPRED_SIZE];      short int pred_values[6][MBPRED_SIZE];
48      int acpred_directions[6];      int acpred_directions[6];
# Line 58  Line 57 
57    
58          // encoder specific          // encoder specific
59    
60            VECTOR mv16;
61          VECTOR pmvs[4];          VECTOR pmvs[4];
62    
63            int32_t sad8[4];                        // SAD values for inter4v-VECTORs
64            int32_t sad16;                          // SAD value for inter-VECTOR
65    
66          int dquant;          int dquant;
67          int cbp;          int cbp;
68    
# Line 67  Line 71 
71          VECTOR b_mvs[4];          VECTOR b_mvs[4];
72          VECTOR b_pmvs[4];          VECTOR b_pmvs[4];
73    
74  } MACROBLOCK;          int mb_type;
75            int dbquant;
 static __inline int8_t get_dc_scaler(int32_t quant, uint32_t lum)  
 {  
     int8_t dc_scaler;  
76    
         if(quant > 0 && quant < 5) {  
         dc_scaler = 8;  
                 return dc_scaler;  
77          }          }
78    MACROBLOCK;
79    
80          if(quant < 25 && !lum) {  static __inline int8_t
81          dc_scaler = (quant + 13) >> 1;  get_dc_scaler(uint32_t quant,
82                  return dc_scaler;                            uint32_t lum)
83          }  {
84            if (quant < 5)
85                    return 8;
86    
87          if(quant < 9) {          if (quant < 25 && !lum)
88          dc_scaler = quant << 1;                  return (quant + 13) / 2;
                 return dc_scaler;  
         }  
89    
90      if(quant < 25) {          if (quant < 9)
91          dc_scaler = quant + 8;                  return 2 * quant;
92                  return dc_scaler;  
93          }          if (quant < 25)
94                    return quant + 8;
95    
96          if(lum)          if(lum)
97                  dc_scaler = (quant << 1) - 16;                  return 2 * quant - 16;
98          else          else
99          dc_scaler = quant - 6;                  return quant - 6;
   
     return dc_scaler;  
100  }  }
101    
   
102  // useful macros  // useful macros
103    
104  #define MIN(X, Y) ((X)<(Y)?(X):(Y))  #define MIN(X, Y) ((X)<(Y)?(X):(Y))

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.10

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4