[svn] / branches / dev-api-3 / xvidcore / src / global.h Repository:
ViewVC logotype

Diff of /branches/dev-api-3/xvidcore/src/global.h

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

revision 101, Fri Apr 5 14:40:36 2002 UTC revision 157, Fri May 3 08:37:55 2002 UTC
# Line 4  Line 4 
4  #include "xvid.h"  #include "xvid.h"
5  #include "portab.h"  #include "portab.h"
6    
7  /* --- macroblock stuff --- */  /* --- macroblock modes --- */
8    
9  #define MODE_INTER              0  #define MODE_INTER              0
10  #define MODE_INTER_Q    1  #define MODE_INTER_Q    1
# Line 14  Line 14 
14  #define MODE_STUFFING   7  #define MODE_STUFFING   7
15  #define MODE_NOT_CODED  16  #define MODE_NOT_CODED  16
16    
17    /* --- bframe specific --- */
18    
19    #define MODE_DIRECT                     0
20    #define MODE_INTERPOLATE        1
21    #define MODE_BACKWARD           2
22    #define MODE_FORWARD            3
23    #define MODE_DIRECT_NONE_MV     4
24    
25    
26  typedef struct  typedef struct
27  {  {
28          uint32_t bufa;          uint32_t bufa;
# Line 54  Line 63 
63          int dquant;          int dquant;
64          int cbp;          int cbp;
65    
66            // bframe stuff
67    
68            VECTOR b_mvs[4];
69            VECTOR b_pmvs[4];
70    
71            int mb_type;
72            int dbquant;
73    
74  } MACROBLOCK;  } MACROBLOCK;
75    
76  static __inline int8_t get_dc_scaler(int32_t quant, uint32_t lum)  static __inline int8_t get_dc_scaler(uint32_t quant, uint32_t lum)
77  {  {
78      int8_t dc_scaler;          if(quant < 5)
79            return 8;
80    
81          if(quant > 0 && quant < 5) {          if(quant < 25 && !lum)
82          dc_scaler = 8;          return (quant + 13) / 2;
                 return dc_scaler;  
         }  
83    
84          if(quant < 25 && !lum) {          if(quant < 9)
85          dc_scaler = (quant + 13) >> 1;          return 2 * quant;
                 return dc_scaler;  
         }  
86    
87          if(quant < 9) {      if(quant < 25)
88          dc_scaler = quant << 1;          return quant + 8;
                 return dc_scaler;  
         }  
   
     if(quant < 25) {  
         dc_scaler = quant + 8;  
                 return dc_scaler;  
         }  
89    
90          if(lum)          if(lum)
91                  dc_scaler = (quant << 1) - 16;                  return 2 * quant - 16;
92          else          else
93          dc_scaler = quant - 6;          return quant - 6;
   
     return dc_scaler;  
94  }  }
95    
96    // useful macros
97    
98    #define MIN(X, Y) ((X)<(Y)?(X):(Y))
99    #define MAX(X, Y) ((X)>(Y)?(X):(Y))
100    #define ABS(X)    (((X)>0)?(X):-(X))
101    #define SIGN(X)   (((X)>0)?1:-1)
102    
103    
104  #endif /* _GLOBAL_H_ */  #endif /* _GLOBAL_H_ */

Legend:
Removed from v.101  
changed lines
  Added in v.157

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