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

Diff of /trunk/xvidcore/src/global.h

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

revision 3, Fri Mar 8 02:46:11 2002 UTC revision 338, Wed Jul 24 23:07:45 2002 UTC
# Line 1  Line 1 
1  #ifndef _GLOBAL_H_  #ifndef _GLOBAL_H_
2  #define _GLOBAL_H_  #define _GLOBAL_H_
3    
4    #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 13  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          int x;          uint32_t bufa;
29          int y;          uint32_t bufb;
30  } VECTOR;          uint32_t buf;
31            uint32_t pos;
32            uint32_t *tail;
33            uint32_t *start;
34            uint32_t length;
35    }
36    Bitstream;
37    
38    
39  #define MBPRED_SIZE  15  #define MBPRED_SIZE  15
# Line 27  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 36  Line 50 
50          int mode;          int mode;
51          int quant;              // absolute quant          int quant;              // absolute quant
52    
53            int field_dct;
54            int field_pred;
55            int field_for_top;
56            int field_for_bot;
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    
69  } MACROBLOCK;          // bframe stuff
70    
71  static __inline int8_t get_dc_scaler(int32_t quant, uint32_t lum)          VECTOR b_mvs[4];
72  {          VECTOR b_pmvs[4];
     int8_t dc_scaler;  
73    
74          if(quant > 0 && quant < 5) {          // bframe direct mode
         dc_scaler = 8;  
                 return dc_scaler;  
         }  
75    
76          if(quant < 25 && !lum) {          VECTOR directmv[4];
77          dc_scaler = (quant + 13) >> 1;          VECTOR deltamv;
                 return dc_scaler;  
         }  
78    
79          if(quant < 9) {          int mb_type;
80          dc_scaler = quant << 1;          int dbquant;
81                  return dc_scaler;  
82          }          // stuff for block based ME (needed for Qpel ME)
83            // backup of last integer ME vectors/sad
84    
85            VECTOR i_mv16;
86            VECTOR i_mvs[4];
87    
88            int32_t i_sad8[4];      // SAD values for inter4v-VECTORs
89            int32_t i_sad16;        // SAD value for inter-VECTOR
90    
     if(quant < 25) {  
         dc_scaler = quant + 8;  
                 return dc_scaler;  
91          }          }
92    MACROBLOCK;
93    
94    static __inline int8_t
95    get_dc_scaler(uint32_t quant,
96                              uint32_t lum)
97    {
98            if (quant < 5)
99                    return 8;
100    
101            if (quant < 25 && !lum)
102                    return (quant + 13) / 2;
103    
104            if (quant < 9)
105                    return 2 * quant;
106    
107            if (quant < 25)
108                    return quant + 8;
109    
110          if(lum)          if(lum)
111                  dc_scaler = (quant << 1) - 16;                  return 2 * quant - 16;
112          else          else
113          dc_scaler = quant - 6;                  return quant - 6;
   
     return dc_scaler;  
114  }  }
115    
116    // useful macros
117    
118    #define MIN(X, Y) ((X)<(Y)?(X):(Y))
119    #define MAX(X, Y) ((X)>(Y)?(X):(Y))
120    #define ABS(X)    (((X)>0)?(X):-(X))
121    #define SIGN(X)   (((X)>0)?1:-1)
122    
123    
124  #endif /* _GLOBAL_H_ */  #endif /* _GLOBAL_H_ */

Legend:
Removed from v.3  
changed lines
  Added in v.338

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