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

Diff of /xvidcore/src/prediction/mbprediction.h

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

revision 1.12, Wed Jul 3 12:32:50 2002 UTC revision 1.16, Sat Oct 19 12:20:33 2002 UTC
# Line 3  Line 3 
3   *  XVID MPEG-4 VIDEO CODEC   *  XVID MPEG-4 VIDEO CODEC
4   *  -  MB prediction header file  -   *  -  MB prediction header file  -
5   *   *
6     *  Copyright(C) 2002 Christoph Lampert <gruel@web.de>
7     *               2002 Peter Ross <pross@xvid.org>
8     *
9   *  This program is an implementation of a part of one or more MPEG-4   *  This program is an implementation of a part of one or more MPEG-4
10   *  Video tools as specified in ISO/IEC 14496-2 standard.  Those intending   *  Video tools as specified in ISO/IEC 14496-2 standard.  Those intending
11   *  to use this software module in hardware or software products are   *  to use this software module in hardware or software products are
# Line 30  Line 33 
33   *   *
34   *************************************************************************/   *************************************************************************/
35    
  /******************************************************************************  
   *                                                                            *  
   *  Revision history:                                                         *  
   *                                                                            *  
   *  29.06.2002 get_pmvdata() bounding                                         *  
   *                                                                            *  
   ******************************************************************************/  
   
   
36  #ifndef _MBPREDICTION_H_  #ifndef _MBPREDICTION_H_
37  #define _MBPREDICTION_H_  #define _MBPREDICTION_H_
38    
# Line 54  Line 48 
48    
49  #define MVequal(A,B) ( ((A).x)==((B).x) && ((A).y)==((B).y) )  #define MVequal(A,B) ( ((A).x)==((B).x) && ((A).y)==((B).y) )
50    
51    /*****************************************************************************
52     * Prototypes
53     ****************************************************************************/
54    
55  void MBPrediction(FRAMEINFO * frame,    /* <-- The parameter for ACDC and MV prediction */  void MBPrediction(FRAMEINFO * frame,    /* <-- The parameter for ACDC and MV prediction */
56    
57                                    uint32_t x_pos,       /* <-- The x position of the MB to be searched  */                                    uint32_t x_pos,       /* <-- The x position of the MB to be searched  */
# Line 83  Line 81 
81                                  const int bound);                                  const int bound);
82    
83    
84  /* get_pmvdata returns the median predictor and nothing else */  /*****************************************************************************
85     * Inlined functions
86  static __inline VECTOR   ****************************************************************************/
 get_pmv(const MACROBLOCK * const pMBs,  
                 const uint32_t x,  
                 const uint32_t y,  
                 const uint32_t x_dim,  
                 const uint32_t block)  
 {  
   
         int xin1, xin2, xin3;  
         int yin1, yin2, yin3;  
         int vec1, vec2, vec3;  
         VECTOR lneigh, tneigh, trneigh; /* left neighbour, top neighbour, topright neighbour */  
         VECTOR median;  
   
         static VECTOR zeroMV = { 0, 0 };  
         uint32_t index = x + y * x_dim;  
   
         /* first row (special case) */  
         if (y == 0 && (block == 0 || block == 1)) {  
                 if ((x == 0) && (block == 0))   // first column, first block  
                 {  
                         return zeroMV;  
                 }  
                 if (block == 1)                 // second block; has only a left neighbour  
                 {  
                         return pMBs[index].mvs[0];  
                 } else {                                /* block==0, but x!=0, so again, there is a left neighbour */  
   
                         return pMBs[index - 1].mvs[1];  
                 }  
         }  
87    
88          /*          /*
89           * MODE_INTER, vm18 page 48           * MODE_INTER, vm18 page 48
# Line 130  Line 98 
98           *   [   | 3 ]    [ 2 | 3 ]    [   |   ]           *   [   | 3 ]    [ 2 | 3 ]    [   |   ]
99           */           */
100    
101    static __inline VECTOR
102    get_pmv2(const MACROBLOCK * const mbs,
103             const int mb_width,
104             const int bound,
105             const int x,
106             const int y,
107             const int block)
108    {
109            static const VECTOR zeroMV = { 0, 0 };
110    
111        int lx, ly, lz;         /* left */
112        int tx, ty, tz;         /* top */
113        int rx, ry, rz;         /* top-right */
114        int lpos, tpos, rpos;
115        int num_cand, last_cand;
116    
117            VECTOR pmv[4];  /* left neighbour, top neighbour, top-right neighbour */
118    
119          switch (block) {          switch (block) {
120          case 0:          case 0:
121                  xin1 = x - 1;                  lx = x - 1;     ly = y;         lz = 1;
122                  yin1 = y;                  tx = x;         ty = y - 1;     tz = 2;
123                  vec1 = 1;                               /* left */                  rx = x + 1;     ry = y - 1;     rz = 2;
                 xin2 = x;  
                 yin2 = y - 1;  
                 vec2 = 2;                               /* top */  
                 xin3 = x + 1;  
                 yin3 = y - 1;  
                 vec3 = 2;                               /* top right */  
124                  break;                  break;
125          case 1:          case 1:
126                  xin1 = x;                  lx = x;         ly = y;         lz = 0;
127                  yin1 = y;                  tx = x;         ty = y - 1;     tz = 3;
128                  vec1 = 0;                  rx = x + 1;     ry = y - 1;     rz = 2;
                 xin2 = x;  
                 yin2 = y - 1;  
                 vec2 = 3;  
                 xin3 = x + 1;  
                 yin3 = y - 1;  
                 vec3 = 2;  
129                  break;                  break;
130          case 2:          case 2:
131                  xin1 = x - 1;                  lx = x - 1;     ly = y;         lz = 3;
132                  yin1 = y;                  tx = x;         ty = y;         tz = 0;
133                  vec1 = 3;                  rx = x;         ry = y;         rz = 1;
                 xin2 = x;  
                 yin2 = y;  
                 vec2 = 0;  
                 xin3 = x;  
                 yin3 = y;  
                 vec3 = 1;  
134                  break;                  break;
135          default:          default:
136                  xin1 = x;                  lx = x;         ly = y;         lz = 2;
137                  yin1 = y;                  tx = x;         ty = y;         tz = 0;
138                  vec1 = 2;                  rx = x;         ry = y;         rz = 1;
                 xin2 = x;  
                 yin2 = y;  
                 vec2 = 0;  
                 xin3 = x;  
                 yin3 = y;  
                 vec3 = 1;  
139          }          }
140    
141        lpos = lx + ly * mb_width;
142        rpos = rx + ry * mb_width;
143        tpos = tx + ty * mb_width;
144        last_cand = num_cand = 0;
145    
146          if (xin1 < 0 || /* yin1 < 0  || */ xin1 >= (int32_t) x_dim) {      if (lpos >= bound && lx >= 0) {
147                  lneigh = zeroMV;          num_cand++;
148            last_cand = 1;
149            pmv[1] = mbs[lpos].mvs[lz];
150          } else {          } else {
151                  lneigh = pMBs[xin1 + yin1 * x_dim].mvs[vec1];          pmv[1] = zeroMV;
152          }          }
153    
154          if (xin2 < 0 || /* yin2 < 0 || */ xin2 >= (int32_t) x_dim) {      if (tpos >= bound) {
155                  tneigh = zeroMV;          num_cand++;
156            last_cand = 2;
157            pmv[2] = mbs[tpos].mvs[tz];
158          } else {          } else {
159                  tneigh = pMBs[xin2 + yin2 * x_dim].mvs[vec2];          pmv[2] = zeroMV;
160          }          }
161    
162          if (xin3 < 0 || /* yin3 < 0 || */ xin3 >= (int32_t) x_dim) {      if (rpos >= bound && rx < mb_width) {
163                  trneigh = zeroMV;          num_cand++;
164            last_cand = 3;
165            pmv[3] = mbs[rpos].mvs[rz];
166          } else {          } else {
167                  trneigh = pMBs[xin3 + yin3 * x_dim].mvs[vec3];          pmv[3] = zeroMV;
168          }          }
169    
170          /* median,minimum */      /*
171             * If there're more than one candidate, we return the median vector
172             * edgomez : the special case "no candidates" is handled the same way
173             *           because all vectors are set to zero. So the median vector
174             *           is {0,0}, and this is exactly the vector we must return
175             *           according to the mpeg4 specs.
176             */
177    
178          median.x =          if (num_cand != 1) {
179                  MIN(MAX(lneigh.x, tneigh.x),                  /* set median */
180                          MIN(MAX(tneigh.x, trneigh.x), MAX(lneigh.x, trneigh.x)));  
181          median.y =                  pmv[0].x =
182                  MIN(MAX(lneigh.y, tneigh.y),                          MIN(MAX(pmv[1].x, pmv[2].x),
183                          MIN(MAX(tneigh.y, trneigh.y), MAX(lneigh.y, trneigh.y)));                                  MIN(MAX(pmv[2].x, pmv[3].x), MAX(pmv[1].x, pmv[3].x)));
184          return median;                  pmv[0].y =
185                            MIN(MAX(pmv[1].y, pmv[2].y),
186                                    MIN(MAX(pmv[2].y, pmv[3].y), MAX(pmv[1].y, pmv[3].y)));
187                    return pmv[0];
188  }  }
189    
190             return pmv[last_cand];  /* no point calculating median mv */
191    }
192    
 /* This is somehow a copy of get_pmv, but returning all MVs and Minimum SAD  
    instead of only Median MV */  
193    
 static __inline int  
 get_pmvdata(const MACROBLOCK * const pMBs,  
                         const uint32_t x,  
                         const uint32_t y,  
                         const uint32_t x_dim,  
                         const uint32_t block,  
                         VECTOR * const pmv,  
                         int32_t * const psad)  
 {  
194    
195          /*          /*
196           * pmv are filled with:           * pmv are filled with:
# Line 233  Line 205 
205           *  [3]: topright neighbour's SAD           *  [3]: topright neighbour's SAD
206           */           */
207    
208          int xin1, xin2, xin3;  static __inline int
209          int yin1, yin2, yin3;  get_pmvdata2(const MACROBLOCK * const mbs,
210          int vec1, vec2, vec3;           const int mb_width,
211             const int bound,
212          uint32_t index = x + y * x_dim;           const int x,
213          const VECTOR zeroMV = { 0, 0 };           const int y,
214             const int block,
215          // first row of blocks (special case)                   VECTOR * const pmv,
216          if (y == 0 && (block == 0 || block == 1)) {                   int32_t * const psad)
                 if ((x == 0) && (block == 0))   // first column, first block  
                 {  
                         pmv[0] = pmv[1] = pmv[2] = pmv[3] = zeroMV;  
                         psad[0] = 0;  
                         psad[1] = psad[2] = psad[3] = MV_MAX_ERROR;  
                         return 0;  
                 }  
                 if (block == 1)                 // second block; has only a left neighbour  
217                  {                  {
218                          pmv[0] = pmv[1] = pMBs[index].mvs[0];          static const VECTOR zeroMV = { 0, 0 };
                         pmv[2] = pmv[3] = zeroMV;  
                         psad[0] = psad[1] = pMBs[index].sad8[0];  
                         psad[2] = psad[3] = MV_MAX_ERROR;  
                         return 0;  
                 } else {                                /* block==0, but x!=0, so again, there is a left neighbour */  
   
                         pmv[0] = pmv[1] = pMBs[index - 1].mvs[1];  
                         pmv[2] = pmv[3] = zeroMV;  
                         psad[0] = psad[1] = pMBs[index - 1].sad8[1];  
                         psad[2] = psad[3] = MV_MAX_ERROR;  
                         return 0;  
                 }  
         }  
219    
220          /*      int lx, ly, lz;         /* left */
221           * MODE_INTER, vm18 page 48      int tx, ty, tz;         /* top */
222           * MODE_INTER4V vm18 page 51      int rx, ry, rz;         /* top-right */
223           *      int lpos, tpos, rpos;
224           *  (x,y-1)      (x+1,y-1)      int num_cand, last_cand;
          *  [   |   ]    [   |   ]  
          *  [ 2 | 3 ]    [ 2 |   ]  
          *  
          *  (x-1,y)      (x,y)        (x+1,y)  
          *  [   | 1 ]    [ 0 | 1 ]    [ 0 |   ]  
          *  [   | 3 ]    [ 2 | 3 ]    [   |   ]  
          */  
225    
226          switch (block) {          switch (block) {
227          case 0:          case 0:
228                  xin1 = x - 1;                  lx = x - 1;     ly = y;         lz = 1;
229                  yin1 = y;                  tx = x;         ty = y - 1;     tz = 2;
230                  vec1 = 1;                               /* left */                  rx = x + 1;     ry = y - 1;     rz = 2;
                 xin2 = x;  
                 yin2 = y - 1;  
                 vec2 = 2;                               /* top */  
                 xin3 = x + 1;  
                 yin3 = y - 1;  
                 vec3 = 2;                               /* top right */  
231                  break;                  break;
232          case 1:          case 1:
233                  xin1 = x;                  lx = x;         ly = y;         lz = 0;
234                  yin1 = y;                  tx = x;         ty = y - 1;     tz = 3;
235                  vec1 = 0;                  rx = x + 1;     ry = y - 1;     rz = 2;
                 xin2 = x;  
                 yin2 = y - 1;  
                 vec2 = 3;  
                 xin3 = x + 1;  
                 yin3 = y - 1;  
                 vec3 = 2;  
236                  break;                  break;
237          case 2:          case 2:
238                  xin1 = x - 1;                  lx = x - 1;     ly = y;         lz = 3;
239                  yin1 = y;                  tx = x;         ty = y;         tz = 0;
240                  vec1 = 3;                  rx = x;         ry = y;         rz = 1;
                 xin2 = x;  
                 yin2 = y;  
                 vec2 = 0;  
                 xin3 = x;  
                 yin3 = y;  
                 vec3 = 1;  
241                  break;                  break;
242          default:          default:
243                  xin1 = x;                  lx = x;         ly = y;         lz = 2;
244                  yin1 = y;                  tx = x;         ty = y;         tz = 0;
245                  vec1 = 2;                  rx = x;         ry = y;         rz = 1;
                 xin2 = x;  
                 yin2 = y;  
                 vec2 = 0;  
                 xin3 = x;  
                 yin3 = y;  
                 vec3 = 1;  
246          }          }
247    
248        lpos = lx + ly * mb_width;
249        rpos = rx + ry * mb_width;
250        tpos = tx + ty * mb_width;
251        last_cand = num_cand = 0;
252    
253          if (xin1 < 0 || xin1 >= (int32_t) x_dim) {      if (lpos >= bound && lx >= 0) {
254            num_cand++;
255            last_cand = 1;
256            pmv[1] = mbs[lpos].mvs[lz];
257                    psad[1] = mbs[lpos].sad8[lz];
258        } else {
259                  pmv[1] = zeroMV;                  pmv[1] = zeroMV;
260                  psad[1] = MV_MAX_ERROR;                  psad[1] = MV_MAX_ERROR;
         } else {  
                 pmv[1] = pMBs[xin1 + yin1 * x_dim].mvs[vec1];  
                 psad[1] = pMBs[xin1 + yin1 * x_dim].sad8[vec1];  
261          }          }
262    
263          if (xin2 < 0 || xin2 >= (int32_t) x_dim) {      if (tpos >= bound) {
264            num_cand++;
265            last_cand = 2;
266            pmv[2]= mbs[tpos].mvs[tz];
267            psad[2] = mbs[tpos].sad8[tz];
268        } else {
269                  pmv[2] = zeroMV;                  pmv[2] = zeroMV;
270                  psad[2] = MV_MAX_ERROR;                  psad[2] = MV_MAX_ERROR;
         } else {  
                 pmv[2] = pMBs[xin2 + yin2 * x_dim].mvs[vec2];  
                 psad[2] = pMBs[xin2 + yin2 * x_dim].sad8[vec2];  
271          }          }
272    
273          if (xin3 < 0 || xin3 >= (int32_t) x_dim) {      if (rpos >= bound && rx < mb_width) {
274            num_cand++;
275            last_cand = 3;
276            pmv[3] = mbs[rpos].mvs[rz];
277            psad[3] = mbs[rpos].sad8[rz];
278        } else {
279                  pmv[3] = zeroMV;                  pmv[3] = zeroMV;
280                  psad[3] = MV_MAX_ERROR;                  psad[3] = MV_MAX_ERROR;
281          } else {      }
282                  pmv[3] = pMBs[xin3 + yin3 * x_dim].mvs[vec3];  
283                  psad[3] = pMBs[xin3 + yin3 * x_dim].sad8[vec3];          /* original pmvdata() compatibility hack */
284            if (x == 0 && y == 0 && block == 0)
285            {
286                    pmv[0] = pmv[1] = pmv[2] = pmv[3] = zeroMV;
287                    psad[0] = 0;
288                    psad[1] = psad[2] = psad[3] = MV_MAX_ERROR;
289                    return 0;
290            }
291    
292        /* if only one valid candidate preictor, the invalid candiates are set to the canidate */
293            if (num_cand == 1) {
294                    pmv[0] = pmv[last_cand];
295                    psad[0] = psad[last_cand];
296            // return MVequal(pmv[0], zeroMV); /* no point calculating median mv and minimum sad */
297    
298                    /* original pmvdata() compatibility hack */
299                    return y==0 && block <= 1 ? 0 : MVequal(pmv[0], zeroMV);
300          }          }
301    
302          if ((MVequal(pmv[1], pmv[2])) && (MVequal(pmv[1], pmv[3]))) {          if ((MVequal(pmv[1], pmv[2])) && (MVequal(pmv[1], pmv[3]))) {
303                  pmv[0] = pmv[1];                  pmv[0] = pmv[1];
304                  psad[0] = MIN(MIN(psad[1], psad[2]), psad[3]);                  psad[0] = MIN(MIN(psad[1], psad[2]), psad[3]);
305                  return 1;                  return 1;
306                    /* compatibility patch */
307                    //return y==0 && block <= 1 ? 0 : 1;
308          }          }
309    
310          /* median,minimum */          /* set median, minimum */
311    
312          pmv[0].x =          pmv[0].x =
313                  MIN(MAX(pmv[1].x, pmv[2].x),                  MIN(MAX(pmv[1].x, pmv[2].x),
# Line 364  Line 315 
315          pmv[0].y =          pmv[0].y =
316                  MIN(MAX(pmv[1].y, pmv[2].y),                  MIN(MAX(pmv[1].y, pmv[2].y),
317                          MIN(MAX(pmv[2].y, pmv[3].y), MAX(pmv[1].y, pmv[3].y)));                          MIN(MAX(pmv[2].y, pmv[3].y), MAX(pmv[1].y, pmv[3].y)));
318    
319          psad[0] = MIN(MIN(psad[1], psad[2]), psad[3]);          psad[0] = MIN(MIN(psad[1], psad[2]), psad[3]);
320    
321          return 0;          return 0;
322  }  }
323    
324    /* copies of get_pmv and get_pmvdata for prediction from integer search */
         /*  
          * MODE_INTER, vm18 page 48  
          * MODE_INTER4V vm18 page 51  
          *  
          *   (x,y-1)      (x+1,y-1)  
          *   [   |   ]    [   |   ]  
          *   [ 2 | 3 ]    [ 2 |   ]  
          *  
          *   (x-1,y)       (x,y)        (x+1,y)  
          *   [   | 1 ]    [ 0 | 1 ]    [ 0 |   ]  
          *   [   | 3 ]    [ 2 | 3 ]    [   |   ]  
          */  
325    
326  static __inline VECTOR  static __inline VECTOR
327  get_pmv2(const MACROBLOCK * const mbs,  get_ipmv(const MACROBLOCK * const mbs,
328           const int mb_width,           const int mb_width,
329           const int bound,           const int bound,
330           const int x,           const int x,
# Line 426  Line 366 
366      lpos = lx + ly * mb_width;      lpos = lx + ly * mb_width;
367      rpos = rx + ry * mb_width;      rpos = rx + ry * mb_width;
368      tpos = tx + ty * mb_width;      tpos = tx + ty * mb_width;
369      num_cand = 0;      last_cand = num_cand = 0;
370    
371      if (lpos >= bound && lx >= 0) {      if (lpos >= bound && lx >= 0) {
372          num_cand++;          num_cand++;
373          last_cand = 1;          last_cand = 1;
374          pmv[1] = mbs[lpos].mvs[lz];          pmv[1] = mbs[lpos].i_mvs[lz];
375      } else {      } else {
376          pmv[1] = zeroMV;          pmv[1] = zeroMV;
377      }      }
# Line 439  Line 379 
379      if (tpos >= bound) {      if (tpos >= bound) {
380          num_cand++;          num_cand++;
381          last_cand = 2;          last_cand = 2;
382          pmv[2] = mbs[tpos].mvs[tz];          pmv[2] = mbs[tpos].i_mvs[tz];
383      } else {      } else {
384          pmv[2] = zeroMV;          pmv[2] = zeroMV;
385      }      }
# Line 447  Line 387 
387      if (rpos >= bound && rx < mb_width) {      if (rpos >= bound && rx < mb_width) {
388          num_cand++;          num_cand++;
389          last_cand = 3;          last_cand = 3;
390          pmv[3] = mbs[rpos].mvs[rz];          pmv[3] = mbs[rpos].i_mvs[rz];
391      } else {      } else {
392          pmv[3] = zeroMV;          pmv[3] = zeroMV;
393      }      }
394    
395      /* if only one valid candidate preictor, the invalid candiates are set to the canidate */      /* if only one valid candidate predictor, the invalid candiates are set to the canidate */
396          if (num_cand != 1) {          if (num_cand != 1) {
397                  /* set median */                  /* set median */
398    
# Line 468  Line 408 
408           return pmv[last_cand];  /* no point calculating median mv */           return pmv[last_cand];  /* no point calculating median mv */
409  }  }
410    
   
   
         /*  
          * pmv are filled with:  
          *  [0]: Median (or whatever is correct in a special case)  
          *  [1]: left neighbour  
          *  [2]: top neighbour  
          *  [3]: topright neighbour  
          * psad are filled with:  
          *  [0]: minimum of [1] to [3]  
          *  [1]: left neighbour's SAD (NB:[1] to [3] are actually not needed)  
          *  [2]: top neighbour's SAD  
          *  [3]: topright neighbour's SAD  
          */  
411  static __inline int  static __inline int
412  get_pmvdata2(const MACROBLOCK * const mbs,  get_ipmvdata(const MACROBLOCK * const mbs,
413           const int mb_width,           const int mb_width,
414           const int bound,           const int bound,
415           const int x,           const int x,
# Line 525  Line 451 
451      lpos = lx + ly * mb_width;      lpos = lx + ly * mb_width;
452      rpos = rx + ry * mb_width;      rpos = rx + ry * mb_width;
453      tpos = tx + ty * mb_width;      tpos = tx + ty * mb_width;
454      num_cand = 0;      last_cand = num_cand = 0;
455    
456      if (lpos >= bound && lx >= 0) {      if (lpos >= bound && lx >= 0) {
457          num_cand++;          num_cand++;
458          last_cand = 1;          last_cand = 1;
459          pmv[1] = mbs[lpos].mvs[lz];          pmv[1] = mbs[lpos].i_mvs[lz];
460                  psad[1] = mbs[lpos].sad8[lz];                  psad[1] = mbs[lpos].i_sad8[lz];
461      } else {      } else {
462          pmv[1] = zeroMV;          pmv[1] = zeroMV;
463                  psad[1] = MV_MAX_ERROR;                  psad[1] = MV_MAX_ERROR;
# Line 540  Line 466 
466      if (tpos >= bound) {      if (tpos >= bound) {
467          num_cand++;          num_cand++;
468          last_cand = 2;          last_cand = 2;
469          pmv[2]= mbs[tpos].mvs[tz];          pmv[2]= mbs[tpos].i_mvs[tz];
470          psad[2] = mbs[tpos].sad8[tz];          psad[2] = mbs[tpos].i_sad8[tz];
471      } else {      } else {
472          pmv[2] = zeroMV;          pmv[2] = zeroMV;
473                  psad[2] = MV_MAX_ERROR;                  psad[2] = MV_MAX_ERROR;
# Line 550  Line 476 
476      if (rpos >= bound && rx < mb_width) {      if (rpos >= bound && rx < mb_width) {
477          num_cand++;          num_cand++;
478          last_cand = 3;          last_cand = 3;
479          pmv[3] = mbs[rpos].mvs[rz];          pmv[3] = mbs[rpos].i_mvs[rz];
480          psad[3] = mbs[rpos].sad8[rz];          psad[3] = mbs[rpos].i_sad8[rz];
481      } else {      } else {
482          pmv[3] = zeroMV;          pmv[3] = zeroMV;
483                  psad[3] = MV_MAX_ERROR;                  psad[3] = MV_MAX_ERROR;

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.16

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