[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.4, Fri Apr 5 14:40:36 2002 UTC revision 1.21.2.1, Sat Feb 22 08:49:44 2003 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
11  #define MODE_INTER4V    2  #define MODE_INTER4V    2
12  #define MODE_INTRA              3  #define MODE_INTRA              3
13  #define MODE_INTRA_Q    4  #define MODE_INTRA_Q    4
 #define MODE_STUFFING   7  
14  #define MODE_NOT_CODED  16  #define MODE_NOT_CODED  16
15    #define MODE_NOT_CODED_GMC      17
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    #define MODE_DIRECT_NO4V        5
25    
26    
27    // vop coding types
28    // intra, prediction, backward, sprite, not_coded
29    #define I_VOP   0
30    #define P_VOP   1
31    #define B_VOP   2
32    #define S_VOP   3
33    #define N_VOP   4
34    
35    /* convert mpeg-4 coding type i/p/b/s_VOP to XVID_TYPE_xxx */
36    static __inline int
37    coding2type(int coding_type)
38    {
39            return coding_type + 1;
40    }
41    
42    /* convert XVID_TYPE_xxx to bitstream coding type i/p/b/s_VOP */
43    static __inline int
44    type2coding(int xvid_type)
45    {
46            return xvid_type - 1;
47    }
48    
49    
50    typedef struct
51    {
52            int x;
53            int y;
54    }
55    VECTOR;
56    
57    
58    
59    typedef struct
60    {
61            VECTOR duv[3];
62    }
63    WARPPOINTS;
64    
65    /* save all warping parameters for GMC once and for all, instead of
66       recalculating for every block. This is needed for encoding&decoding
67       When switching to incremental calculations, this will get much shorter
68    */
69    
70    /*      we don't include WARPPOINTS wp  here, but in FRAMEINFO itself */
71    
72    typedef struct
73    {
74            int num_wp;             //      [input]: 0=none, 1=translation, 2,3 = warping
75                                                            //  a value of -1 means: "structure not initialized!"
76            int s;                                  //  [input]: calc is done with 1/s pel resolution
77    
78            int W;
79            int H;
80    
81            int ss;
82            int smask;
83            int sigma;
84    
85            int r;
86            int rho;
87    
88            int i0s;
89            int j0s;
90            int i1s;
91            int j1s;
92            int i2s;
93            int j2s;
94    
95            int i1ss;
96            int j1ss;
97            int i2ss;
98            int j2ss;
99    
100            int alpha;
101            int beta;
102            int Ws;
103            int Hs;
104    
105            int dxF, dyF, dxG, dyG;
106            int Fo, Go;
107            int cFo, cGo;
108    }
109    GMC_DATA;
110    
111    
112    typedef struct
113    {
114            uint8_t *y;
115            uint8_t *u;
116            uint8_t *v;
117    }
118    IMAGE;
119    
120    
121  typedef struct  typedef struct
122  {  {
# Line 34  Line 138 
138  {  {
139          // decoder/encoder          // decoder/encoder
140          VECTOR mvs[4];          VECTOR mvs[4];
         uint32_t sad8[4];               // SAD values for inter4v-VECTORs  
         uint32_t sad16;                 // SAD value for inter-VECTOR  
141    
142      short int pred_values[6][MBPRED_SIZE];      short int pred_values[6][MBPRED_SIZE];
143      int acpred_directions[6];      int acpred_directions[6];
# Line 50  Line 152 
152    
153          // encoder specific          // encoder specific
154    
155            VECTOR mv16;
156          VECTOR pmvs[4];          VECTOR pmvs[4];
157            VECTOR qmvs[4];                         // mvs in quarter pixel resolution
158    
159            int32_t sad8[4];                        // SAD values for inter4v-VECTORs
160            int32_t sad16;                          // SAD value for inter-VECTOR
161    
162          int dquant;          int dquant;
163          int cbp;          int cbp;
164    
165  } MACROBLOCK;          // bframe stuff
166    
167  static __inline int8_t get_dc_scaler(int32_t quant, uint32_t lum)          VECTOR b_mvs[4];
168  {          VECTOR b_qmvs[4];
     int8_t dc_scaler;  
169    
170          if(quant > 0 && quant < 5) {          int mb_type;
         dc_scaler = 8;  
                 return dc_scaler;  
         }  
171    
172          if(quant < 25 && !lum) {          // stuff for block based ME (needed for Qpel ME)
173          dc_scaler = (quant + 13) >> 1;          // backup of last integer ME vectors/sad
                 return dc_scaler;  
         }  
174    
175          if(quant < 9) {          VECTOR amv; // average motion vectors from GMC
176          dc_scaler = quant << 1;          int32_t mcsel;
177                  return dc_scaler;  
178          }  /* This structure has become way to big! What to do? Split it up?   */
179    
     if(quant < 25) {  
         dc_scaler = quant + 8;  
                 return dc_scaler;  
180          }          }
181    MACROBLOCK;
182    
183    static __inline uint32_t
184    get_dc_scaler(uint32_t quant,
185                              uint32_t lum)
186    {
187            if (quant < 5)
188                    return 8;
189    
190            if (quant < 25 && !lum)
191                    return (quant + 13) / 2;
192    
193            if (quant < 9)
194                    return 2 * quant;
195    
196            if (quant < 25)
197                    return quant + 8;
198    
199          if(lum)          if(lum)
200                  dc_scaler = (quant << 1) - 16;                  return 2 * quant - 16;
201          else          else
202          dc_scaler = quant - 6;                  return quant - 6;
   
     return dc_scaler;  
203  }  }
204    
205    // useful macros
206    
207    #define MIN(X, Y) ((X)<(Y)?(X):(Y))
208    #define MAX(X, Y) ((X)>(Y)?(X):(Y))
209    #define ABS(X)    (((X)>0)?(X):-(X))
210    #define SIGN(X)   (((X)>0)?1:-1)
211    #define CLIP(X,AMIN,AMAX)   (((X)<(AMIN)) ? (AMIN) : ((X)>(AMAX)) ? (AMAX) : (X))
212    #define DIV_DIV(a,b)    (((a)>0) ? ((a)+((b)>>1))/(b) : ((a)-((b)>>1))/(b))
213    
214    
215  #endif /* _GLOBAL_H_ */  #endif /* _GLOBAL_H_ */

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.21.2.1

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