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

Diff of /branches/dev-api-4/xvidcore/src/prediction/mbprediction.c

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

trunk/xvidcore/src/prediction/mbprediction.c revision 677, Tue Nov 26 23:44:11 2002 UTC branches/dev-api-4/xvidcore/src/prediction/mbprediction.c revision 1161, Wed Oct 1 23:23:01 2003 UTC
# Line 1  Line 1 
1  /*****************************************************************************  /*****************************************************************************
2   *   *
3   *  XVID MPEG-4 VIDEO CODEC   *  XVID MPEG-4 VIDEO CODEC
4   *  - Prediction functions -   *  - Prediction module -
5   *   *
6   *  Copyright(C) 2001-2002 - Michael Militzer <isibaar@xvid.org>   *  Copyright (C) 2001-2003 Michael Militzer <isibaar@xvid.org>
7   *  Copyright(C) 2001-2002 - Peter Ross <pross@xvid.org>   *                2001-2003 Peter Ross <pross@xvid.org>
8   *   *
9   *  This file is part of XviD, a free MPEG-4 video encoder/decoder   *  This program is free software ; you can redistribute it and/or modify
10   *   *  it under the terms of the GNU General Public License as published by
  *  XviD is free software; you can redistribute it and/or modify it  
  *  under the terms of the GNU General Public License as published by  
11   *  the Free Software Foundation; either version 2 of the License, or   *  the Free Software Foundation; either version 2 of the License, or
12   *  (at your option) any later version.   *  (at your option) any later version.
13   *   *
# Line 22  Line 20 
20   *  along with this program; if not, write to the Free Software   *  along with this program; if not, write to the Free Software
21   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
22   *   *
23   *  Under section 8 of the GNU General Public License, the copyright   * $Id: mbprediction.c,v 1.13.2.9 2003-10-01 23:23:01 edgomez Exp $
  *  holders of XVID explicitly forbid distribution in the following  
  *  countries:  
  *  
  *    - Japan  
  *    - United States of America  
  *  
  *  Linking XviD statically or dynamically with other modules is making a  
  *  combined work based on XviD.  Thus, the terms and conditions of the  
  *  GNU General Public License cover the whole combination.  
  *  
  *  As a special exception, the copyright holders of XviD give you  
  *  permission to link XviD with independent modules that communicate with  
  *  XviD solely through the VFW1.1 and DShow interfaces, regardless of the  
  *  license terms of these independent modules, and to copy and distribute  
  *  the resulting combined work under terms of your choice, provided that  
  *  every copy of the combined work is accompanied by a complete copy of  
  *  the source code of XviD (the version of XviD used to produce the  
  *  combined work), being distributed under the terms of the GNU General  
  *  Public License plus this exception.  An independent module is a module  
  *  which is not derived from or based on XviD.  
  *  
  *  Note that people who make modified versions of XviD are not obligated  
  *  to grant this special exception for their modified versions; it is  
  *  their choice whether to do so.  The GNU General Public License gives  
  *  permission to release a modified version without this exception; this  
  *  exception also makes it possible to release a modified version which  
  *  carries forward this exception.  
  *  
  * $Id: mbprediction.c,v 1.11 2002-11-26 23:44:11 edgomez Exp $  
24   *   *
25   ****************************************************************************/   ****************************************************************************/
26    
27    #include <stdlib.h>
28    
29    #include "../global.h"
30  #include "../encoder.h"  #include "../encoder.h"
31  #include "mbprediction.h"  #include "mbprediction.h"
32  #include "../utils/mbfunctions.h"  #include "../utils/mbfunctions.h"
33  #include "../bitstream/cbp.h"  #include "../bitstream/cbp.h"
34    #include "../bitstream/mbcoding.h"
35    #include "../bitstream/zigzag.h"
36    
37    
 #define ABS(X) (((X)>0)?(X):-(X))  
 #define DIV_DIV(A,B)    ( (A) > 0 ? ((A)+((B)>>1))/(B) : ((A)-((B)>>1))/(B) )  
   
   
 /*****************************************************************************  
  * Local inlined function  
  ****************************************************************************/  
   
38  static int __inline  static int __inline
39  rescale(int predict_quant,  rescale(int predict_quant,
40                  int current_quant,                  int current_quant,
# Line 79  Line 45 
45  }  }
46    
47    
 /*****************************************************************************  
  * Local data  
  ****************************************************************************/  
   
48  static const int16_t default_acdc_values[15] = {  static const int16_t default_acdc_values[15] = {
49          1024,          1024,
50          0, 0, 0, 0, 0, 0, 0,          0, 0, 0, 0, 0, 0, 0,
# Line 90  Line 52 
52  };  };
53    
54    
 /*****************************************************************************  
  * Functions  
  ****************************************************************************/  
   
   
55  /*      get dc/ac prediction direction for a single block and place  /*      get dc/ac prediction direction for a single block and place
56          predictor values into MB->pred_values[j][..]          predictor values into MB->pred_values[j][..]
57  */  */
# Line 139  Line 96 
96    
97                  left = pMBs[index - 1].pred_values[0];                  left = pMBs[index - 1].pred_values[0];
98                  left_quant = pMBs[index - 1].quant;                  left_quant = pMBs[index - 1].quant;
                 /*DEBUGI("LEFT", *(left+MBPRED_SIZE)); */  
99          }          }
100          /* top macroblock */          /* top macroblock */
101    
# Line 228  Line 184 
184                  break;                  break;
185          }          }
186    
187          /*  determine ac prediction direction & ac/dc predictor */          /*
188          /*  place rescaled ac/dc predictions into predictors[] for later use */           * determine ac prediction direction & ac/dc predictor place rescaled ac/dc
189             * predictions into predictors[] for later use
190             */
191    
192          if (ABS(pLeft[0] - pDiag[0]) < ABS(pDiag[0] - pTop[0])) {          if (abs(pLeft[0] - pDiag[0]) < abs(pDiag[0] - pTop[0])) {
193                  *acpred_direction = 1;  /* vertical */                  *acpred_direction = 1;  /* vertical */
194                  predictors[0] = DIV_DIV(pTop[0], iDcScaler);                  predictors[0] = DIV_DIV(pTop[0], iDcScaler);
195                  for (i = 1; i < 8; i++) {                  for (i = 1; i < 8; i++) {
# Line 263  Line 221 
221          int16_t *pCurrent = pMB->pred_values[block];          int16_t *pCurrent = pMB->pred_values[block];
222          uint32_t i;          uint32_t i;
223    
224          DPRINTF(DPRINTF_COEFF,"predictor[0] %i", predictors[0]);          DPRINTF(XVID_DEBUG_COEFF,"predictor[0] %i\n", predictors[0]);
225    
226          dct_codes[0] += predictors[0];  /* dc prediction */          dct_codes[0] += predictors[0];  /* dc prediction */
227          pCurrent[0] = dct_codes[0] * iDcScaler;          pCurrent[0] = dct_codes[0] * iDcScaler;
# Line 272  Line 230 
230                  for (i = 1; i < 8; i++) {                  for (i = 1; i < 8; i++) {
231                          int level = dct_codes[i] + predictors[i];                          int level = dct_codes[i] + predictors[i];
232    
233                          DPRINTF(DPRINTF_COEFF,"predictor[%i] %i",i, predictors[i]);                          DPRINTF(XVID_DEBUG_COEFF,"predictor[%i] %i\n",i, predictors[i]);
234    
235                          dct_codes[i] = level;                          dct_codes[i] = level;
236                          pCurrent[i] = level;                          pCurrent[i] = level;
# Line 281  Line 239 
239          } else if (acpred_direction == 2) {          } else if (acpred_direction == 2) {
240                  for (i = 1; i < 8; i++) {                  for (i = 1; i < 8; i++) {
241                          int level = dct_codes[i * 8] + predictors[i];                          int level = dct_codes[i * 8] + predictors[i];
242                          DPRINTF(DPRINTF_COEFF,"predictor[%i] %i",i*8, predictors[i]);                          DPRINTF(XVID_DEBUG_COEFF,"predictor[%i] %i\n",i*8, predictors[i]);
243    
244                          dct_codes[i * 8] = level;                          dct_codes[i * 8] = level;
245                          pCurrent[i + 7] = level;                          pCurrent[i + 7] = level;
# Line 297  Line 255 
255    
256    
257    
258  /* ****************************************************************** */  /*****************************************************************************
259  /* ****************************************************************** */   ****************************************************************************/
260    
261  /* encoder: subtract predictors from qcoeff[] and calculate S1/S2  /* encoder: subtract predictors from qcoeff[] and calculate S1/S2
262    
263  todo: perform [-127,127] clamping after prediction  returns sum of coeefficients *saved* if prediction is enabled
 clamping must adjust the coeffs, so dequant is done correctly  
264    
 S1/S2 are used  to determine if its worth predicting for AC  
265  S1 = sum of all (qcoeff - prediction)  S1 = sum of all (qcoeff - prediction)
266  S2 = sum of all qcoeff  S2 = sum of all qcoeff
267  */  */
268    
269  uint32_t  int
270  calc_acdc(MACROBLOCK * pMB,  calc_acdc_coeff(MACROBLOCK * pMB,
271                    uint32_t block,                    uint32_t block,
272                    int16_t qcoeff[64],                    int16_t qcoeff[64],
273                    uint32_t iDcScaler,                    uint32_t iDcScaler,
# Line 319  Line 275 
275  {  {
276          int16_t *pCurrent = pMB->pred_values[block];          int16_t *pCurrent = pMB->pred_values[block];
277          uint32_t i;          uint32_t i;
278          uint32_t S1 = 0, S2 = 0;          int S1 = 0, S2 = 0;
279    
280    
281          /* store current coeffs to pred_values[] for future prediction */          /* store current coeffs to pred_values[] for future prediction */
# Line 339  Line 295 
295                          int16_t level;                          int16_t level;
296    
297                          level = qcoeff[i];                          level = qcoeff[i];
298                          S2 += ABS(level);                          S2 += abs(level);
299                          level -= predictors[i];                          level -= predictors[i];
300                          S1 += ABS(level);                          S1 += abs(level);
301                          predictors[i] = level;                          predictors[i] = level;
302                  }                  }
303          } else                                          /* acpred_direction == 2 */          } else                                          /* acpred_direction == 2 */
# Line 350  Line 306 
306                          int16_t level;                          int16_t level;
307    
308                          level = qcoeff[i * 8];                          level = qcoeff[i * 8];
309                          S2 += ABS(level);                          S2 += abs(level);
310                          level -= predictors[i];                          level -= predictors[i];
311                          S1 += ABS(level);                          S1 += abs(level);
312                          predictors[i] = level;                          predictors[i] = level;
313                  }                  }
314    
# Line 363  Line 319 
319  }  }
320    
321    
322    
323    /* returns the bits *saved* if prediction is enabled */
324    
325    int
326    calc_acdc_bits(MACROBLOCK * pMB,
327                      uint32_t block,
328                      int16_t qcoeff[64],
329                      uint32_t iDcScaler,
330                      int16_t predictors[8])
331    {
332            const int direction = pMB->acpred_directions[block];
333            int16_t *pCurrent = pMB->pred_values[block];
334            int16_t tmp[8];
335            unsigned int i;
336            int Z1, Z2;
337    
338            /* store current coeffs to pred_values[] for future prediction */
339            pCurrent[0] = qcoeff[0] * iDcScaler;
340            for (i = 1; i < 8; i++) {
341                    pCurrent[i] = qcoeff[i];
342                    pCurrent[i + 7] = qcoeff[i * 8];
343            }
344    
345    
346            /* dc prediction */
347            qcoeff[0] = qcoeff[0] - predictors[0];
348    
349            /* calc cost before ac prediction */
350    #ifdef BIGLUT
351            Z2 = CodeCoeff_CalcBits(qcoeff, intra_table, scan_tables[0], 1);
352    #else
353            Z2 = CodeCoeffIntra_CalcBits(qcoeff, scan_tables[0]);
354    #endif
355    
356            /* apply ac prediction & calc cost*/
357            if (direction == 1) {
358                    for (i = 1; i < 8; i++) {
359                            tmp[i] = qcoeff[i];
360                            qcoeff[i] -= predictors[i];
361                            predictors[i] = qcoeff[i];
362                    }
363            }else{                                          /* acpred_direction == 2 */
364                    for (i = 1; i < 8; i++) {
365                            tmp[i] = qcoeff[i*8];
366                            qcoeff[i*8] -= predictors[i];
367                            predictors[i] = qcoeff[i*8];
368                    }
369            }
370    
371    #ifdef BIGLUT
372            Z1 = CodeCoeff_CalcBits(qcoeff, intra_table, scan_tables[direction], 1);
373    #else
374            Z1 = CodeCoeffIntra_CalcBits(qcoeff, scan_tables[direction]);
375    #endif
376    
377            /* undo prediction */
378            if (direction == 1) {
379                    for (i = 1; i < 8; i++)
380                            qcoeff[i] = tmp[i];
381            }else{                                          /* acpred_direction == 2 */
382                    for (i = 1; i < 8; i++)
383                            qcoeff[i*8] = tmp[i];
384            }
385    
386            return Z2-Z1;
387    }
388    
389  /* apply predictors[] to qcoeff */  /* apply predictors[] to qcoeff */
390    
391  void  void
# Line 371  Line 394 
394                     int16_t qcoeff[64],                     int16_t qcoeff[64],
395                     int16_t predictors[8])                     int16_t predictors[8])
396  {  {
397          uint32_t i;          unsigned int i;
398    
399          if (pMB->acpred_directions[block] == 1) {          if (pMB->acpred_directions[block] == 1) {
400                  for (i = 1; i < 8; i++) {                  for (i = 1; i < 8; i++)
401                          qcoeff[i] = predictors[i];                          qcoeff[i] = predictors[i];
                 }  
402          } else {          } else {
403                  for (i = 1; i < 8; i++) {                  for (i = 1; i < 8; i++)
404                          qcoeff[i * 8] = predictors[i];                          qcoeff[i * 8] = predictors[i];
405                  }                  }
406          }          }
 }  
407    
408    
409  void  void
# Line 394  Line 415 
415  {  {
416    
417          int32_t j;          int32_t j;
418          int32_t iDcScaler, iQuant = frame->quant;          int32_t iDcScaler, iQuant;
419          int32_t S = 0;          int S = 0;
420          int16_t predictors[6][8];          int16_t predictors[6][8];
421    
422          MACROBLOCK *pMB = &frame->mbs[x + y * mb_width];          MACROBLOCK *pMB = &frame->mbs[x + y * mb_width];
423        iQuant = pMB->quant;
424    
425          if ((pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q)) {          if ((pMB->mode == MODE_INTRA) || (pMB->mode == MODE_INTRA_Q)) {
426    
427                  for (j = 0; j < 6; j++) {                  for (j = 0; j < 6; j++) {
428                          iDcScaler = get_dc_scaler(iQuant, (j < 4) ? 1 : 0);                          iDcScaler = get_dc_scaler(iQuant, j<4);
429    
430                          predict_acdc(frame->mbs, x, y, mb_width, j, &qcoeff[j * 64],                          predict_acdc(frame->mbs, x, y, mb_width, j, &qcoeff[j * 64],
431                                                   iQuant, iDcScaler, predictors[j], 0);                                                   iQuant, iDcScaler, predictors[j], 0);
432    
433                          S += calc_acdc(pMB, j, &qcoeff[j * 64], iDcScaler, predictors[j]);                          if ((frame->vop_flags & XVID_VOP_HQACPRED))
434                                    S += calc_acdc_bits(pMB, j, &qcoeff[j * 64], iDcScaler, predictors[j]);
435                            else
436                                    S += calc_acdc_coeff(pMB, j, &qcoeff[j * 64], iDcScaler, predictors[j]);
437    
438                  }                  }
439    
440                  if (S < 0)                              /* dont predict */                  if (S<=0) {                             /* dont predict */
441                  {                          for (j = 0; j < 6; j++)
                         for (j = 0; j < 6; j++) {  
442                                  pMB->acpred_directions[j] = 0;                                  pMB->acpred_directions[j] = 0;
                         }  
443                  } else {                  } else {
444                          for (j = 0; j < 6; j++) {                          for (j = 0; j < 6; j++)
445                                  apply_acdc(pMB, j, &qcoeff[j * 64], predictors[j]);                                  apply_acdc(pMB, j, &qcoeff[j * 64], predictors[j]);
446                          }                          }
447                  }  
448                  pMB->cbp = calc_cbp(qcoeff);                  pMB->cbp = calc_cbp(qcoeff);
449          }          }
450    }
451    
452    static const VECTOR zeroMV = { 0, 0 };
453    
454    VECTOR
455    get_pmv2(const MACROBLOCK * const mbs,
456                    const int mb_width,
457                    const int bound,
458                    const int x,
459                    const int y,
460                    const int block)
461    {
462            int lx, ly, lz;         /* left */
463            int tx, ty, tz;         /* top */
464            int rx, ry, rz;         /* top-right */
465            int lpos, tpos, rpos;
466            int num_cand = 0, last_cand = 1;
467    
468            VECTOR pmv[4];  /* left neighbour, top neighbour, top-right neighbour */
469    
470            switch (block) {
471            case 0:
472                    lx = x - 1;     ly = y;         lz = 1;
473                    tx = x;         ty = y - 1;     tz = 2;
474                    rx = x + 1;     ry = y - 1;     rz = 2;
475                    break;
476            case 1:
477                    lx = x;         ly = y;         lz = 0;
478                    tx = x;         ty = y - 1;     tz = 3;
479                    rx = x + 1;     ry = y - 1;     rz = 2;
480                    break;
481            case 2:
482                    lx = x - 1;     ly = y;         lz = 3;
483                    tx = x;         ty = y;         tz = 0;
484                    rx = x;         ry = y;         rz = 1;
485                    break;
486            default:
487                    lx = x;         ly = y;         lz = 2;
488                    tx = x;         ty = y;         tz = 0;
489                    rx = x;         ry = y;         rz = 1;
490            }
491    
492            lpos = lx + ly * mb_width;
493            rpos = rx + ry * mb_width;
494            tpos = tx + ty * mb_width;
495    
496            if (lpos >= bound && lx >= 0) {
497                    num_cand++;
498                    pmv[1] = mbs[lpos].mvs[lz];
499            } else pmv[1] = zeroMV;
500    
501            if (tpos >= bound) {
502                    num_cand++;
503                    last_cand = 2;
504                    pmv[2] = mbs[tpos].mvs[tz];
505            } else pmv[2] = zeroMV;
506    
507            if (rpos >= bound && rx < mb_width) {
508                    num_cand++;
509                    last_cand = 3;
510                    pmv[3] = mbs[rpos].mvs[rz];
511            } else pmv[3] = zeroMV;
512    
513            /* If there're more than one candidate, we return the median vector */
514    
515            if (num_cand > 1) {
516                    /* set median */
517                    pmv[0].x =
518                            MIN(MAX(pmv[1].x, pmv[2].x),
519                                    MIN(MAX(pmv[2].x, pmv[3].x), MAX(pmv[1].x, pmv[3].x)));
520                    pmv[0].y =
521                            MIN(MAX(pmv[1].y, pmv[2].y),
522                                    MIN(MAX(pmv[2].y, pmv[3].y), MAX(pmv[1].y, pmv[3].y)));
523                    return pmv[0];
524            }
525    
526            return pmv[last_cand];  /* no point calculating median mv */
527    }
528    
529    VECTOR
530    get_qpmv2(const MACROBLOCK * const mbs,
531                    const int mb_width,
532                    const int bound,
533                    const int x,
534                    const int y,
535                    const int block)
536    {
537            int lx, ly, lz;         /* left */
538            int tx, ty, tz;         /* top */
539            int rx, ry, rz;         /* top-right */
540            int lpos, tpos, rpos;
541            int num_cand = 0, last_cand = 1;
542    
543            VECTOR pmv[4];  /* left neighbour, top neighbour, top-right neighbour */
544    
545            switch (block) {
546            case 0:
547                    lx = x - 1;     ly = y;         lz = 1;
548                    tx = x;         ty = y - 1;     tz = 2;
549                    rx = x + 1;     ry = y - 1;     rz = 2;
550                    break;
551            case 1:
552                    lx = x;         ly = y;         lz = 0;
553                    tx = x;         ty = y - 1;     tz = 3;
554                    rx = x + 1;     ry = y - 1;     rz = 2;
555                    break;
556            case 2:
557                    lx = x - 1;     ly = y;         lz = 3;
558                    tx = x;         ty = y;         tz = 0;
559                    rx = x;         ry = y;         rz = 1;
560                    break;
561            default:
562                    lx = x;         ly = y;         lz = 2;
563                    tx = x;         ty = y;         tz = 0;
564                    rx = x;         ry = y;         rz = 1;
565            }
566    
567            lpos = lx + ly * mb_width;
568            rpos = rx + ry * mb_width;
569            tpos = tx + ty * mb_width;
570    
571            if (lpos >= bound && lx >= 0) {
572                    num_cand++;
573                    pmv[1] = mbs[lpos].qmvs[lz];
574            } else pmv[1] = zeroMV;
575    
576            if (tpos >= bound) {
577                    num_cand++;
578                    last_cand = 2;
579                    pmv[2] = mbs[tpos].qmvs[tz];
580            } else pmv[2] = zeroMV;
581    
582            if (rpos >= bound && rx < mb_width) {
583                    num_cand++;
584                    last_cand = 3;
585                    pmv[3] = mbs[rpos].qmvs[rz];
586            } else pmv[3] = zeroMV;
587    
588            /* If there're more than one candidate, we return the median vector */
589    
590            if (num_cand > 1) {
591                    /* set median */
592                    pmv[0].x =
593                            MIN(MAX(pmv[1].x, pmv[2].x),
594                                    MIN(MAX(pmv[2].x, pmv[3].x), MAX(pmv[1].x, pmv[3].x)));
595                    pmv[0].y =
596                            MIN(MAX(pmv[1].y, pmv[2].y),
597                                    MIN(MAX(pmv[2].y, pmv[3].y), MAX(pmv[1].y, pmv[3].y)));
598                    return pmv[0];
599            }
600    
601            return pmv[last_cand];  /* no point calculating median mv */
602  }  }

Legend:
Removed from v.677  
changed lines
  Added in v.1161

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