[svn] / branches / dev-api-4 / xvidcore / src / bitstream / mbcoding.c Repository:
ViewVC logotype

Annotation of /branches/dev-api-4/xvidcore/src/bitstream/mbcoding.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 17 - (view) (download)
Original Path: trunk/xvidcore/src/bitstream/mbcoding.c

1 : Isibaar 3 #include "../portab.h"
2 :     #include "bitstream.h"
3 :     #include "zigzag.h"
4 :     #include "vlc_codes.h"
5 :    
6 :     #include "../utils/mbfunctions.h"
7 :    
8 : edgomez 17 #include <stdlib.h> /* malloc, free */
9 :    
10 : Isibaar 3 #define ESCAPE 7167
11 :     #define ABS(X) (((X)>0)?(X):-(X))
12 :     #define CLIP(X,A) (X > A) ? (A) : (X)
13 :    
14 :     static VLC *DCT3D[2];
15 :    
16 :     VLC *intra_table, *inter_table;
17 :     static short clip_table[4096];
18 :    
19 :     void create_vlc_tables(void)
20 :     {
21 :     int32_t k, l, i, intra, last;
22 :     VLC *vlc[2];
23 :     VLC **coeff_ptr;
24 :     VLC *vlc1, *vlc2;
25 :    
26 :     VLC *DCT3Dintra;
27 :     VLC *DCT3Dinter;
28 :    
29 :     DCT3Dintra = (VLC *) malloc(sizeof(VLC) * 4096);
30 :     DCT3Dinter = (VLC *) malloc(sizeof(VLC) * 4096);
31 :    
32 :     vlc1 = DCT3Dintra;
33 :     vlc2 = DCT3Dinter;
34 :    
35 :     vlc[0] = intra_table = (VLC *) malloc(128 * 511 * sizeof(VLC));
36 :     vlc[1] = inter_table = (VLC *) malloc(128 * 511 * sizeof(VLC));
37 :    
38 :     // initialize the clipping table
39 :     for(i = -2048; i < 2048; i++) {
40 :     clip_table[i + 2048] = i;
41 :     if(i < -255)
42 :     clip_table[i + 2048] = -255;
43 :     if(i > 255)
44 :     clip_table[i + 2048] = 255;
45 :     }
46 :    
47 :     // generate intra/inter vlc lookup table
48 :     for(i = 0; i < 4; i++) {
49 :     intra = i % 2;
50 :     last = i >> 1;
51 :    
52 :     coeff_ptr = coeff_vlc[last + (intra << 1)];
53 :    
54 :     for(k = -255; k < 256; k++) { // level
55 :     char *max_level_ptr = max_level[last + (intra << 1)];
56 :     char *max_run_ptr = max_run[last + (intra << 1)];
57 :    
58 :     for(l = 0; l < 64; l++) { // run
59 :     int32_t level = k, run = l;
60 :    
61 :     if(abs(level) <= max_level_ptr[run] && run <= max_run_ptr[abs(level)]) {
62 :    
63 :     if(level > 0) {
64 :     vlc[intra]->code = (coeff_ptr[run][level - 1].code) << 1;
65 :     vlc[intra]->len = coeff_ptr[run][level - 1].len + 1;
66 :     }
67 :     else if(level < 0) {
68 :     vlc[intra]->code = ((coeff_ptr[run][-level - 1].code) << 1) + 1;
69 :     vlc[intra]->len = coeff_ptr[run][-level - 1].len + 1;
70 :     }
71 :     else {
72 :     vlc[intra]->code = 0;
73 :     vlc[intra]->len = 0;
74 :     }
75 :     } else {
76 :     if(level > 0)
77 :     level -= max_level_ptr[run];
78 :     else
79 :     level += max_level_ptr[run];
80 :    
81 :     if(abs(level) <= max_level_ptr[run] &&
82 :     run <= max_run_ptr[abs(level)]) {
83 :    
84 :     if(level > 0) {
85 :     vlc[intra]->code = (0x06 << (coeff_ptr[run][level - 1].len + 1)) |
86 :     (coeff_ptr[run][level - 1].code << 1);
87 :     vlc[intra]->len = (coeff_ptr[run][level - 1].len + 1) + 8;
88 :     }
89 :     else if(level < 0) {
90 :     vlc[intra]->code = (0x06 << (coeff_ptr[run][-level - 1].len + 1)) |
91 :     ((coeff_ptr[run][-level - 1].code << 1) + 1);
92 :     vlc[intra]->len = (coeff_ptr[run][-level - 1].len + 1) + 8;
93 :     }
94 :     else {
95 :     vlc[intra]->code = 0x06;
96 :     vlc[intra]->len = 8;
97 :     }
98 :     } else {
99 :     if(level > 0)
100 :     level += max_level_ptr[run];
101 :     else
102 :     level -= max_level_ptr[run];
103 :    
104 :     run -= max_run_ptr[abs(level)] + 1;
105 :    
106 :     if(abs(level) <= max_level_ptr[run] &&
107 :     run <= max_run_ptr[abs(level)]) {
108 :    
109 :     if(level > 0) {
110 :     vlc[intra]->code = (0x0e << (coeff_ptr[run][level - 1].len + 1)) |
111 :     (coeff_ptr[run][level - 1].code << 1);
112 :     vlc[intra]->len = (coeff_ptr[run][level - 1].len + 1) + 9;
113 :     }
114 :     else if(level < 0) {
115 :     vlc[intra]->code = (0x0e << (coeff_ptr[run][-level - 1].len + 1)) |
116 :     ((coeff_ptr[run][-level - 1].code << 1) + 1);
117 :     vlc[intra]->len = (coeff_ptr[run][-level - 1].len + 1) + 9;
118 :     }
119 :     else {
120 :     vlc[intra]->code = 0x0e;
121 :     vlc[intra]->len = 9;
122 :     }
123 :     } else {
124 :     if(level != 0)
125 :     run += max_run_ptr[abs(level)] + 1;
126 :     else
127 :     run++;
128 :    
129 :     vlc[intra]->code = (uint32_t) ((0x1e + last) << 20) |
130 :     (l << 14) | (1 << 13) | ((k & 0xfff) << 1) | 1;
131 :    
132 :     vlc[intra]->len = 30;
133 :     }
134 :     }
135 :     }
136 :     vlc[intra]++;
137 :     }
138 :     }
139 :     }
140 :     intra_table += 64*255; // center vlc tables
141 :     inter_table += 64*255; // center vlc tables
142 :    
143 :     for(i = 0; i < 4096; i++) {
144 :     if(i >= 512) {
145 :     *vlc1 = DCT3Dtab3[(i >> 5) - 16];
146 :     *vlc2 = DCT3Dtab0[(i >> 5) - 16];
147 :     }
148 :     else if(i >= 128) {
149 :     *vlc1 = DCT3Dtab4[(i >> 2) - 32];
150 :     *vlc2 = DCT3Dtab1[(i >> 2) - 32];
151 :     }
152 :     else if(i >= 8) {
153 :     *vlc1 = DCT3Dtab5[i - 8];
154 :     *vlc2 = DCT3Dtab2[i - 8];
155 :     }
156 :     else {
157 :     *vlc1 = ERRtab[i];
158 :     *vlc2 = ERRtab[i];
159 :     }
160 :    
161 :     vlc1++;
162 :     vlc2++;
163 :     }
164 :     DCT3D[0] = DCT3Dinter;
165 :     DCT3D[1] = DCT3Dintra;
166 :    
167 :     }
168 :    
169 :     void destroy_vlc_tables(void) {
170 :    
171 :     if(intra_table != NULL && inter_table != NULL) {
172 :     intra_table -= 64*255; // uncenter vlc tables
173 :     inter_table -= 64*255; // uncenter vlc tables
174 :    
175 :     free(intra_table);
176 :     free(inter_table);
177 :     }
178 :    
179 :     if(DCT3D[0] != NULL && DCT3D[1] != NULL) {
180 :     free(DCT3D[0]);
181 :     free(DCT3D[1]);
182 :     }
183 :    
184 :     }
185 :    
186 :     static __inline void CodeVector(Bitstream *bs, int16_t value, int16_t f_code, Statistics *pStat)
187 :     {
188 :     const int scale_factor = 1 << (f_code - 1);
189 :     const int cmp = scale_factor << 5;
190 :    
191 :     if(value < (-1 * cmp))
192 :     value += 64 * scale_factor;
193 :    
194 :     if(value > (cmp - 1))
195 :     value -= 64 * scale_factor;
196 :    
197 :     pStat->iMvSum += value * value;
198 :     pStat->iMvCount++;
199 :    
200 :     if (value == 0)
201 :     BitstreamPutBits(bs, mb_motion_table[32].code, mb_motion_table[32].len);
202 :     else {
203 :     uint16_t length, code, mv_res, sign;
204 :    
205 :     length = 16 << f_code;
206 :     f_code--;
207 :    
208 :     sign = (value < 0);
209 :    
210 :     if(value >= length)
211 :     value -= 2 * length;
212 :     else if(value < -length)
213 :     value += 2 * length;
214 :    
215 :     if(sign)
216 :     value = -value;
217 :    
218 :     value--;
219 :     mv_res = value & ((1 << f_code) - 1);
220 :     code = ((value - mv_res) >> f_code) + 1;
221 :    
222 :     if(sign)
223 :     code = -code;
224 :    
225 :     code += 32;
226 :     BitstreamPutBits(bs, mb_motion_table[code].code, mb_motion_table[code].len);
227 :    
228 :     if(f_code)
229 :     BitstreamPutBits(bs, mv_res, f_code);
230 :     }
231 :     }
232 :    
233 :    
234 :     static __inline void CodeCoeff(Bitstream *bs, int16_t qcoeff[64], VLC *table,
235 :     const uint16_t *zigzag, uint16_t intra) {
236 :     uint32_t j, last;
237 :     short v;
238 :     VLC *vlc;
239 :    
240 :     j = intra;
241 :     last = 1 + intra;
242 :    
243 :     while((v = qcoeff[zigzag[j++]]) == 0);
244 :    
245 :     do {
246 :     // count zeroes
247 :     vlc = table + (clip_table[2048+v] << 6) + j - last;
248 :     last = j + 1;
249 :     while(j < 64 && (v = qcoeff[zigzag[j++]]) == 0);
250 :    
251 :     // write code
252 :     if(j != 64) {
253 :     BitstreamPutBits(bs, vlc->code, vlc->len);
254 :     } else {
255 :     vlc += 64*511;
256 :     BitstreamPutBits(bs, vlc->code, vlc->len);
257 :     break;
258 :     }
259 :     } while(1);
260 :     }
261 :    
262 :    
263 :     static void CodeBlockIntra(const MBParam * pParam, const MACROBLOCK *pMB,
264 :     int16_t qcoeff[][64], Bitstream * bs, Statistics * pStat)
265 :     {
266 :     uint32_t i, mcbpc, cbpy, bits;
267 :    
268 :     mcbpc = pMB->cbp & 3;
269 :     cbpy = pMB->cbp >> 2;
270 :    
271 :     // write mcbpc
272 :     if(pParam->coding_type == I_VOP)
273 :     BitstreamPutBits(bs, mcbpc_I[mcbpc].code, mcbpc_I[mcbpc].len);
274 :     else
275 :     BitstreamPutBits(bs, mcbpc_P_intra[mcbpc].code, mcbpc_P_intra[mcbpc].len);
276 :    
277 :     // ac prediction flag
278 :     if(pMB->acpred_directions[0])
279 :     BitstreamPutBits(bs, 1, 1);
280 :     else
281 :     BitstreamPutBits(bs, 0, 1);
282 :    
283 :     // write cbpy
284 :     BitstreamPutBits (bs, cbpy_tab[cbpy].code, cbpy_tab[cbpy].len);
285 :    
286 :     // write dquant
287 :     if(pMB->mode == MODE_INTRA_Q)
288 :     BitstreamPutBits(bs, pMB->dquant, 2);
289 :    
290 :     // code block coeffs
291 :     for(i = 0; i < 6; i++)
292 :     {
293 :     if(i < 4)
294 :     BitstreamPutBits(bs, dcy_tab[qcoeff[i][0] + 255].code,
295 :     dcy_tab[qcoeff[i][0] + 255].len);
296 :     else
297 :     BitstreamPutBits(bs, dcc_tab[qcoeff[i][0] + 255].code,
298 :     dcc_tab[qcoeff[i][0] + 255].len);
299 :    
300 :     if(pMB->cbp & (1 << (5 - i)))
301 :     {
302 :     bits = BitstreamPos(bs);
303 :    
304 :     CodeCoeff(bs, qcoeff[i], intra_table, scan_tables[pMB->acpred_directions[i]], 1);
305 :    
306 :     bits = BitstreamPos(bs) - bits;
307 :     pStat->iTextBits += bits;
308 :     }
309 :     }
310 :     }
311 :    
312 :    
313 :     static void CodeBlockInter(const MBParam * pParam, const MACROBLOCK *pMB,
314 :     int16_t qcoeff[][64], Bitstream * bs, Statistics * pStat)
315 :     {
316 :     int32_t i;
317 :     uint32_t bits, mcbpc, cbpy;
318 :    
319 :     mcbpc = pMB->cbp & 3;
320 :     cbpy = 15 - (pMB->cbp >> 2);
321 :    
322 :     // write mcbpc
323 :     if(pMB->mode == MODE_INTER4V)
324 :     BitstreamPutBits(bs, mcbpc_P_inter4v[mcbpc].code, mcbpc_P_inter4v[mcbpc].len);
325 :     else
326 :     BitstreamPutBits(bs, mcbpc_P_inter[mcbpc].code, mcbpc_P_inter[mcbpc].len);
327 :    
328 :     // write cbpy
329 :     BitstreamPutBits(bs, cbpy_tab[cbpy].code, cbpy_tab[cbpy].len);
330 :    
331 :     // write dquant
332 :     if(pMB->mode == MODE_INTER_Q)
333 :     BitstreamPutBits(bs, pMB->dquant, 2);
334 :    
335 :     // code motion vector(s)
336 :     for(i = 0; i < (pMB->mode == MODE_INTER4V ? 4 : 1); i++)
337 :     {
338 :     CodeVector(bs, pMB->pmvs[i].x, pParam->fixed_code, pStat);
339 :     CodeVector(bs, pMB->pmvs[i].y, pParam->fixed_code, pStat);
340 :     }
341 :    
342 :     bits = BitstreamPos(bs);
343 :    
344 :     // code block coeffs
345 :     for(i = 0; i < 6; i++)
346 :     if(pMB->cbp & (1 << (5 - i)))
347 :     CodeCoeff(bs, qcoeff[i], inter_table, scan_tables[0], 0);
348 :    
349 :     bits = BitstreamPos(bs) - bits;
350 :     pStat->iTextBits += bits;
351 :     }
352 :    
353 :    
354 :     void MBCoding(const MBParam * pParam, MACROBLOCK *pMB,
355 :     int16_t qcoeff[][64],
356 :     Bitstream * bs, Statistics * pStat)
357 :     {
358 :     int intra = (pMB->mode == MODE_INTRA || pMB->mode == MODE_INTRA_Q);
359 :    
360 :     if(pParam->coding_type == P_VOP) {
361 :     if(pMB->cbp == 0 && pMB->mode == MODE_INTER &&
362 :     pMB->mvs[0].x == 0 && pMB->mvs[0].y == 0)
363 :     {
364 :     BitstreamPutBit(bs, 1); // not_coded
365 :     return;
366 :     }
367 :     else
368 :     BitstreamPutBit(bs, 0); // coded
369 :     }
370 :    
371 :     if(intra)
372 :     CodeBlockIntra(pParam, pMB, qcoeff, bs, pStat);
373 :     else
374 :     CodeBlockInter(pParam, pMB, qcoeff, bs, pStat);
375 :     }
376 :    
377 :    
378 :     /***************************************************************
379 : edgomez 15 * decoding stuff starts here *
380 :     ***************************************************************/
381 : Isibaar 3
382 :     int get_mcbpc_intra(Bitstream * bs)
383 :     {
384 :     uint32_t index;
385 :    
386 :     while((index = BitstreamShowBits(bs, 9)) == 1)
387 :     BitstreamSkip(bs, 9);
388 :    
389 :     index >>= 3;
390 :    
391 :     BitstreamSkip(bs, mcbpc_intra_table[index].len);
392 :     return mcbpc_intra_table[index].code;
393 :     }
394 :    
395 :     int get_mcbpc_inter(Bitstream * bs)
396 :     {
397 :     uint32_t index;
398 :    
399 :     while((index = CLIP(BitstreamShowBits(bs, 9), 256)) == 1)
400 :     BitstreamSkip(bs, 9);
401 :    
402 :     BitstreamSkip(bs, mcbpc_inter_table[index].len);
403 :     return mcbpc_inter_table[index].code;
404 :     }
405 :    
406 :     int get_cbpy(Bitstream * bs, int intra)
407 :     {
408 :     int cbpy;
409 :     uint32_t index = BitstreamShowBits(bs, 6);
410 :    
411 :     BitstreamSkip(bs, cbpy_table[index].len);
412 :     cbpy = cbpy_table[index].code;
413 :    
414 :     if(!intra)
415 :     cbpy = 15 - cbpy;
416 :    
417 :     return cbpy;
418 :     }
419 :    
420 :     int get_mv_data(Bitstream * bs)
421 :     {
422 :     uint32_t index;
423 :    
424 :     if(BitstreamGetBit(bs))
425 :     return 0;
426 :    
427 :     index = BitstreamShowBits(bs, 12);
428 :    
429 :     if(index >= 512)
430 :     {
431 :     index = (index >> 8) - 2;
432 :     BitstreamSkip(bs, TMNMVtab0[index].len);
433 :     return TMNMVtab0[index].code;
434 :     }
435 :    
436 :     if(index >= 128)
437 :     {
438 :     index = (index >> 2) - 32;
439 :     BitstreamSkip(bs, TMNMVtab1[index].len);
440 :     return TMNMVtab1[index].code;
441 :     }
442 :    
443 :     index -= 4;
444 :    
445 :     BitstreamSkip(bs, TMNMVtab2[index].len);
446 :     return TMNMVtab2[index].code;
447 :     }
448 :    
449 :     int get_mv(Bitstream * bs, int fcode)
450 :     {
451 :     int data;
452 :     int res;
453 :     int mv;
454 :     int scale_fac = 1 << (fcode - 1);
455 :    
456 :     data = get_mv_data(bs);
457 :    
458 :     if(scale_fac == 1 || data == 0)
459 :     return data;
460 :    
461 :     res = BitstreamGetBits(bs, fcode - 1);
462 :     mv = ((ABS(data) - 1) * scale_fac) + res + 1;
463 :    
464 :     return data < 0 ? -mv : mv;
465 :     }
466 :    
467 :     int get_dc_dif(Bitstream * bs, uint32_t dc_size)
468 :     {
469 :     int code = BitstreamGetBits(bs, dc_size);
470 :     int msb = code >> (dc_size - 1);
471 :    
472 :     if(msb == 0)
473 :     return (-1 * (code^((1 << dc_size) - 1)));
474 :    
475 :     return code;
476 :     }
477 :    
478 :     int get_dc_size_lum(Bitstream * bs)
479 :     {
480 :     int code, i;
481 :     code = BitstreamShowBits(bs, 11);
482 :    
483 :     for(i = 11; i > 3; i--) {
484 :     if(code == 1) {
485 :     BitstreamSkip(bs, i);
486 :     return i + 1;
487 :     }
488 :     code >>= 1;
489 :     }
490 :    
491 :     BitstreamSkip(bs, dc_lum_tab[code].len);
492 :     return dc_lum_tab[code].code;
493 :     }
494 :    
495 :    
496 :     int get_dc_size_chrom(Bitstream * bs)
497 :     {
498 :     uint32_t code, i;
499 :     code = BitstreamShowBits(bs, 12);
500 :    
501 :     for(i = 12; i > 2; i--) {
502 :     if(code == 1) {
503 :     BitstreamSkip(bs, i);
504 :     return i;
505 :     }
506 :     code >>= 1;
507 :     }
508 :    
509 :     return 3 - BitstreamGetBits(bs, 2);
510 :     }
511 :    
512 :     int get_coeff(Bitstream * bs, int *run, int *last, int intra, int short_video_header)
513 :     {
514 :     uint32_t mode;
515 :     const VLC *tab;
516 :     int32_t level;
517 :    
518 :     if(short_video_header) // inter-VLCs will be used for both intra and inter blocks
519 :     intra = 0;
520 :    
521 :     tab = &DCT3D[intra][BitstreamShowBits(bs, 12)];
522 :    
523 :     if(tab->code == -1)
524 :     goto error;
525 :    
526 :     BitstreamSkip(bs, tab->len);
527 :    
528 :     if(tab->code != ESCAPE) {
529 :     if(!intra)
530 :     {
531 :     *run = (tab->code >> 4) & 255;
532 :     level = tab->code & 15;
533 :     *last = (tab->code >> 12) & 1;
534 :     }
535 :     else
536 :     {
537 :     *run = (tab->code >> 8) & 255;
538 :     level = tab->code & 255;
539 :     *last = (tab->code >> 16) & 1;
540 :     }
541 :     return BitstreamGetBit(bs) ? -level : level;
542 :     }
543 :    
544 :     if(short_video_header)
545 :     {
546 :     // escape mode 4 - H.263 type, only used if short_video_header = 1
547 :     *last = BitstreamGetBit(bs);
548 :     *run = BitstreamGetBits(bs, 6);
549 :     level = BitstreamGetBits(bs, 8);
550 :    
551 :     if (level == 0 || level == 128)
552 :     DEBUG1("Illegal LEVEL for ESCAPE mode 4:", level);
553 :    
554 :     return (level >= 128 ? -(256 - level) : level);
555 :     }
556 :    
557 :     mode = BitstreamShowBits(bs, 2);
558 :    
559 :     if(mode < 3) {
560 :     BitstreamSkip(bs, (mode == 2) ? 2 : 1);
561 :    
562 :     tab = &DCT3D[intra][BitstreamShowBits(bs, 12)];
563 :     if (tab->code == -1)
564 :     goto error;
565 :    
566 :     BitstreamSkip(bs, tab->len);
567 :    
568 :     if (!intra) {
569 :     *run = (tab->code >> 4) & 255;
570 :     level = tab->code & 15;
571 :     *last = (tab->code >> 12) & 1;
572 :     }
573 :     else
574 :     {
575 :     *run = (tab->code >> 8) & 255;
576 :     level = tab->code & 255;
577 :     *last = (tab->code >> 16) & 1;
578 :     }
579 :    
580 :     if(mode < 2) // first escape mode, level is offset
581 :     level += max_level[*last + (!intra<<1)][*run]; // need to add back the max level
582 :     else if(mode == 2) // second escape mode, run is offset
583 :     *run += max_run[*last + (!intra<<1)][level] + 1;
584 :    
585 :     return BitstreamGetBit(bs) ? -level : level;
586 :     }
587 :    
588 :     // third escape mode - fixed length codes
589 :     BitstreamSkip(bs, 2);
590 :     *last = BitstreamGetBits(bs, 1);
591 :     *run = BitstreamGetBits(bs, 6);
592 :     BitstreamSkip(bs, 1); // marker
593 :     level = BitstreamGetBits(bs, 12);
594 :     BitstreamSkip(bs, 1); // marker
595 :    
596 :     return (level & 0x800) ? (level | (-1 ^ 0xfff)) : level;
597 :    
598 :     error:
599 :     *run = VLC_ERROR;
600 :     return 0;
601 :     }
602 :    
603 :    
604 :     void get_intra_block(Bitstream * bs, int16_t * block, int direction, int coeff)
605 :     {
606 :     const uint16_t * scan = scan_tables[ direction ];
607 :     int level;
608 :     int run;
609 :     int last;
610 :    
611 :     do
612 :     {
613 :     level = get_coeff(bs, &run, &last, 1, 0);
614 :     if (run == -1)
615 :     {
616 :     DEBUG("fatal: invalid run");
617 :     break;
618 :     }
619 :     coeff += run;
620 :     block[ scan[coeff] ] = level;
621 :     if (level < -127 || level > 127)
622 :     {
623 :     DEBUG1("warning: intra_overflow", level);
624 :     }
625 :     coeff++;
626 :     } while (!last);
627 :     }
628 :    
629 :     void get_inter_block(Bitstream * bs, int16_t * block)
630 :     {
631 :     const uint16_t * scan = scan_tables[0];
632 :     int p;
633 :     int level;
634 :     int run;
635 :     int last;
636 :    
637 :     p = 0;
638 :     do
639 :     {
640 :     level = get_coeff(bs, &run, &last, 0, 0);
641 :     if (run == -1)
642 :     {
643 :     DEBUG("fatal: invalid run");
644 :     break;
645 :     }
646 :     p += run;
647 :     block[ scan[p] ] = level;
648 :     if (level < -127 || level > 127)
649 :     {
650 :     DEBUG1("warning: inter_overflow", level);
651 :     }
652 :     p++;
653 :     } while (!last);
654 :     }

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