[svn] / trunk / xvidcore / src / motion / gmc.c Repository:
ViewVC logotype

Diff of /trunk/xvidcore/src/motion/gmc.c

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

revision 1708, Wed Jun 7 21:00:55 2006 UTC revision 1709, Wed Jun 14 21:44:07 2006 UTC
# Line 19  Line 19 
19   *  along with this program ; if not, write to the Free Software   *  along with this program ; if not, write to the Free Software
20   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21   *   *
22   * $Id: gmc.c,v 1.4 2006-06-07 21:00:55 Skal Exp $   * $Id: gmc.c,v 1.5 2006-06-14 21:44:07 Skal Exp $
23   *   *
24   ****************************************************************************/   ****************************************************************************/
25    
# Line 30  Line 30 
30    
31  #include <stdio.h>  #include <stdio.h>
32    
33      /* initialized by init_GMC(), for 3points */
34    static
35    void (*Predict_16x16_func)(const NEW_GMC_DATA * const This,
36                               uint8_t *dst, const uint8_t *src,
37                               int dststride, int srcstride, int x, int y, int rounding) = 0;
38    static
39    void (*Predict_8x8_func)(const NEW_GMC_DATA * const This,
40                             uint8_t *uDst, const uint8_t *uSrc,
41                             uint8_t *vDst, const uint8_t *vSrc,
42                             int dststride, int srcstride, int x, int y, int rounding) = 0;
43    
44    /****************************************************************************/
45    /* this is borrowed from   bitstream.c  until we find a common solution */
46    static uint32_t __inline
47    log2bin(uint32_t value)
48    {
49    /* Changed by Chenm001 */
50    #if !defined(_MSC_VER)
51      int n = 0;
52    
53      while (value) {
54            value >>= 1;
55            n++;
56      }
57      return n;
58    #else
59      __asm {
60            bsr eax, value
61            inc eax
62      }
63    #endif
64    }
65    
66    /* 16*sizeof(int) -> 1 or 2 cachelines */
67    /* table lookup might be faster!  (still to be benchmarked) */
68    
69    /*
70    static int log2bin_table[16] =
71            { 0, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4};
72    */
73    /*      1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 */
74    
75    #define RDIV(a,b) (((a)>0 ? (a) + ((b)>>1) : (a) - ((b)>>1))/(b))
76    #define RSHIFT(a,b) ( (a)>0 ? ((a) + (1<<((b)-1)))>>(b) : ((a) + (1<<((b)-1))-1)>>(b))
77    
78    #define MLT(i)  (((16-(i))<<16) + (i))
79    static const uint32_t MTab[16] = {
80      MLT( 0), MLT( 1), MLT( 2), MLT( 3), MLT( 4), MLT( 5), MLT( 6), MLT( 7),
81      MLT( 8), MLT( 9), MLT(10), MLT(11), MLT(12), MLT(13), MLT(14), MLT(15)
82    };
83    #undef MLT
84    
85  /* ************************************************************  /* ************************************************************
86   * Pts = 2 or 3   * Pts = 2 or 3
87   *   *
# Line 38  Line 90 
90   * Conversely, *dst is the macroblock top-left adress.   * Conversely, *dst is the macroblock top-left adress.
91   */   */
92    
93    static
94  void Predict_16x16_C(const NEW_GMC_DATA * const This,  void Predict_16x16_C(const NEW_GMC_DATA * const This,
95                                           uint8_t *dst, const uint8_t *src,                                           uint8_t *dst, const uint8_t *src,
96                                           int dststride, int srcstride, int x, int y, int rounding)                                           int dststride, int srcstride, int x, int y, int rounding)
# Line 97  Line 150 
150          }          }
151  }  }
152    
153    static
154  void Predict_8x8_C(const NEW_GMC_DATA * const This,  void Predict_8x8_C(const NEW_GMC_DATA * const This,
155                                           uint8_t *uDst, const uint8_t *uSrc,                                           uint8_t *uDst, const uint8_t *uSrc,
156                                           uint8_t *vDst, const uint8_t *vSrc,                                           uint8_t *vDst, const uint8_t *vSrc,
# Line 176  Line 230 
230          }          }
231  }  }
232    
233    static
234  void get_average_mv_C(const NEW_GMC_DATA * const Dsp, VECTOR * const mv,  void get_average_mv_C(const NEW_GMC_DATA * const Dsp, VECTOR * const mv,
235                                                  int x, int y, int qpel)                                                  int x, int y, int qpel)
236  {  {
# Line 206  Line 261 
261   * simplified version for 1 warp point   * simplified version for 1 warp point
262   */   */
263    
264    static
265  void Predict_1pt_16x16_C(const NEW_GMC_DATA * const This,  void Predict_1pt_16x16_C(const NEW_GMC_DATA * const This,
266                                                   uint8_t *Dst, const uint8_t *Src,                                                   uint8_t *Dst, const uint8_t *Src,
267                                                   int dststride, int srcstride, int x, int y, int rounding)                                                   int dststride, int srcstride, int x, int y, int rounding)
# Line 257  Line 313 
313          }          }
314  }  }
315    
316    static
317  void Predict_1pt_8x8_C(const NEW_GMC_DATA * const This,  void Predict_1pt_8x8_C(const NEW_GMC_DATA * const This,
318                                                   uint8_t *uDst, const uint8_t *uSrc,                                                   uint8_t *uDst, const uint8_t *uSrc,
319                                                   uint8_t *vDst, const uint8_t *vSrc,                                                   uint8_t *vDst, const uint8_t *vSrc,
# Line 319  Line 376 
376          }          }
377  }  }
378    
379    static
380  void get_average_mv_1pt_C(const NEW_GMC_DATA * const Dsp, VECTOR * const mv,  void get_average_mv_1pt_C(const NEW_GMC_DATA * const Dsp, VECTOR * const mv,
381                                                          int x, int y, int qpel)                                                          int x, int y, int qpel)
382  {  {
# Line 326  Line 384 
384          mv->y = RSHIFT(Dsp->Vo<<qpel, 3);          mv->y = RSHIFT(Dsp->Vo<<qpel, 3);
385  }  }
386    
387    #if defined(ARCH_IS_IA32)
388    /* *************************************************************
389     * MMX core function
390     */
391    
392    static
393    void (*GMC_Core_Lin_8)(uint8_t *Dst, const uint16_t * Offsets,
394                           const uint8_t * const Src0, const int BpS, const int Rounder) = 0;
395    
396    extern void xvid_GMC_Core_Lin_8_mmx(uint8_t *Dst, const uint16_t * Offsets,
397                                        const uint8_t * const Src0, const int BpS, const int Rounder);
398    
399    extern void xvid_GMC_Core_Lin_8_sse2(uint8_t *Dst, const uint16_t * Offsets,
400                                         const uint8_t * const Src0, const int BpS, const int Rounder);
401    
402    /* *************************************************************/
403    
404    static void GMC_Core_Non_Lin_8(uint8_t *Dst,
405                                   const uint16_t * Offsets,
406                                   const uint8_t * const Src0, const int srcstride,
407                                   const int Rounder)
408    {
409      int i;
410      for(i=0; i<8; ++i)
411      {
412        uint32_t u = Offsets[i   ];
413        uint32_t v = Offsets[i+16];
414        const uint32_t ri = MTab[u&0x0f];
415        const uint32_t rj = MTab[v&0x0f];
416        uint32_t f0, f1;
417        const uint8_t * const Src = Src0 + (u>>4) + (v>>4)*srcstride;
418        f0  = Src[0];
419        f0 |= Src[1] << 16;
420        f1  = Src[srcstride +0];
421        f1 |= Src[srcstride +1] << 16;
422        f0 = (ri*f0)>>16;
423        f1 = (ri*f1) & 0x0fff0000;
424        f0 |= f1;
425        f0 = ( rj*f0 + Rounder ) >> 24;
426        Dst[i] = (uint8_t)f0;
427      }
428    }
429    
430    //////////////////////////////////////////////////////////
431    
432    static
433    void Predict_16x16_mmx(const NEW_GMC_DATA * const This,
434                           uint8_t *dst, const uint8_t *src,
435                           int dststride, int srcstride, int x, int y, int rounding)
436    {
437      const int W = This->sW;
438      const int H = This->sH;
439      const int rho = 3 - This->accuracy;
440      const int Rounder = ( 128 - (rounding<<(2*rho)) ) << 16;
441      const uint32_t W2 = W<<(16-rho);
442      const uint32_t H2 = H<<(16-rho);
443    
444      const int dUx = This->dU[0];
445      const int dVx = This->dV[0];
446      const int dUy = This->dU[1];
447      const int dVy = This->dV[1];
448    
449      int Uo = This->Uo + 16*(dUy*y + dUx*x);
450      int Vo = This->Vo + 16*(dVy*y + dVx*x);
451    
452      int i, j;
453    
454      DECLARE_ALIGNED_MATRIX(Offsets, 2,16, uint16_t, CACHE_LINE);
455      for(j=16; j>0; --j)
456      {
457        int32_t U = Uo, V = Vo;
458        Uo += dUy; Vo += dVy;
459        if ( W2>(uint32_t)U && W2>(uint32_t)(U+15*dUx) &&
460             H2>(uint32_t)V && H2>(uint32_t)(V+15*dVx) )
461        {
462          for(i=0; i<16; ++i)
463          {
464            uint32_t u = ( U >> 16 ) << rho;
465            uint32_t v = ( V >> 16 ) << rho;
466            U += dUx;  V += dVx;
467            Offsets[   i] = u;
468            Offsets[16+i] = v;
469          }
470              // batch 8 input pixels when linearity says it's ok
471          uint32_t UV1, UV2;
472          UV1 = (Offsets[0] | (Offsets[16]<<16)) & 0xfff0fff0U;
473          UV2 = (Offsets[7] | (Offsets[23]<<16)) & 0xfff0fff0U;
474          if (UV1+7*16==UV2)
475            GMC_Core_Lin_8(dst,    Offsets,    src + (Offsets[0]>>4) + (Offsets[16]>>4)*srcstride, srcstride, Rounder);
476          else
477            GMC_Core_Non_Lin_8(dst,   Offsets,   src, srcstride, Rounder);
478          UV1 = (Offsets[ 8] | (Offsets[24]<<16)) & 0xfff0fff0U;
479          UV2 = (Offsets[15] | (Offsets[31]<<16)) & 0xfff0fff0U;
480          if (UV1+7*16==UV2)
481            GMC_Core_Lin_8(dst+8,  Offsets+8,  src + (Offsets[8]>>4) + (Offsets[24]>>4)*srcstride, srcstride, Rounder);
482          else
483            GMC_Core_Non_Lin_8(dst+8, Offsets+8, src, srcstride, Rounder);
484        }
485        else
486        {
487          for(i=0; i<16; ++i)
488          {
489            int u = ( U >> 16 ) << rho;
490            int v = ( V >> 16 ) << rho;
491            U += dUx; V += dVx;
492    
493            Offsets[   i] = (u<0) ? 0 : (u>=W) ? W : u;
494            Offsets[16+i] = (v<0) ? 0 : (v>=H) ? H : v;
495          }
496            // due to boundary clipping, we cannot infer the 8-pixels batchability
497            // simply by using the linearity. Oh well, not a big deal...
498          GMC_Core_Non_Lin_8(dst,   Offsets,   src, srcstride, Rounder);
499          GMC_Core_Non_Lin_8(dst+8, Offsets+8, src, srcstride, Rounder);
500        }
501        dst += dststride;
502      }
503    }
504    
505    static
506    void Predict_8x8_mmx(const NEW_GMC_DATA * const This,
507                         uint8_t *uDst, const uint8_t *uSrc,
508                         uint8_t *vDst, const uint8_t *vSrc,
509                         int dststride, int srcstride, int x, int y, int rounding)
510    {
511      const int W   = This->sW >> 1;
512      const int H   = This->sH >> 1;
513      const int rho = 3-This->accuracy;
514      const int32_t Rounder = ( 128 - (rounding<<(2*rho)) ) << 16;
515      const uint32_t W2 = W<<(16-rho);
516      const uint32_t H2 = H<<(16-rho);
517    
518      const int dUx = This->dU[0];
519      const int dVx = This->dV[0];
520      const int dUy = This->dU[1];
521      const int dVy = This->dV[1];
522    
523      int Uo = This->Uco + 8*(dUy*y + dUx*x);
524      int Vo = This->Vco + 8*(dVy*y + dVx*x);
525    
526      DECLARE_ALIGNED_MATRIX(Offsets, 2,16, uint16_t, CACHE_LINE);
527      int i, j;
528      for(j=8; j>0; --j)
529      {
530        int32_t U = Uo, V = Vo;
531        Uo += dUy; Vo += dVy;
532        if ( W2>(uint32_t)U && W2>(uint32_t)(U+15*dUx) &&
533             H2>(uint32_t)V && H2>(uint32_t)(V+15*dVx) )
534        {
535          for(i=0; i<8; ++i)
536          {
537            int32_t u = ( U >> 16 ) << rho;
538            int32_t v = ( V >> 16 ) << rho;
539            U += dUx; V += dVx;
540            Offsets[   i] = u;
541            Offsets[16+i] = v;
542          }
543            // batch 8 input pixels when linearity says it's ok
544          const uint32_t UV1 = (Offsets[ 0] | (Offsets[16]<<16)) & 0xfff0fff0U;
545          const uint32_t UV2 = (Offsets[ 7] | (Offsets[23]<<16)) & 0xfff0fff0U;
546          if (UV1+7*16==UV2)
547          {
548            const uint32_t Off = (Offsets[0]>>4) + (Offsets[16]>>4)*srcstride;
549            GMC_Core_Lin_8(uDst, Offsets, uSrc+Off, srcstride, Rounder);
550            GMC_Core_Lin_8(vDst, Offsets, vSrc+Off, srcstride, Rounder);
551          }
552          else {
553            GMC_Core_Non_Lin_8(uDst, Offsets, uSrc, srcstride, Rounder);
554            GMC_Core_Non_Lin_8(vDst, Offsets, vSrc, srcstride, Rounder);
555          }
556        }
557        else
558        {
559          for(i=0; i<8; ++i)
560          {
561            int u = ( U >> 16 ) << rho;
562            int v = ( V >> 16 ) << rho;
563            U += dUx; V += dVx;
564            Offsets[   i] = (u<0) ? 0 : (u>=W) ? W : u;
565            Offsets[16+i] = (v<0) ? 0 : (v>=H) ? H : v;
566          }
567          GMC_Core_Non_Lin_8(uDst, Offsets, uSrc, srcstride, Rounder);
568          GMC_Core_Non_Lin_8(vDst, Offsets, vSrc, srcstride, Rounder);
569        }
570        uDst += dststride;
571        vDst += dststride;
572      }
573    }
574    
575    #endif /* ARCH_IS_IA32 */
576    
577    /* *************************************************************
578     * will initialize internal pointers
579     */
580    
581    void init_GMC(const unsigned int cpu_flags)
582    {
583          Predict_16x16_func = Predict_16x16_C;
584          Predict_8x8_func   = Predict_8x8_C;
585    
586    #if 0 // #if defined(ARCH_IS_IA32)
587          if ((cpu_flags & XVID_CPU_MMX)   || (cpu_flags & XVID_CPU_MMXEXT)   ||
588              (cpu_flags & XVID_CPU_3DNOW) || (cpu_flags & XVID_CPU_3DNOWEXT) ||
589              (cpu_flags & XVID_CPU_SSE)   || (cpu_flags & XVID_CPU_SSE2))
590            {
591               Predict_16x16_func = Predict_16x16_mmx;
592               Predict_8x8_func   = Predict_8x8_mmx;
593               if (cpu_flags & XVID_CPU_SSE2)
594                 GMC_Core_Lin_8 = xvid_GMC_Core_Lin_8_sse2;
595               else
596                 GMC_Core_Lin_8 = xvid_GMC_Core_Lin_8_mmx;
597            }
598    #endif
599    }
600    
601  /* *************************************************************  /* *************************************************************
602   * Warning! It's Accuracy being passed, not 'resolution'!   * Warning! It's Accuracy being passed, not 'resolution'!
603   */   */
# Line 413  Line 685 
685          gmc->Uco = (gmc->Uco + gmc->dU[0] + gmc->dU[1])>>2;          gmc->Uco = (gmc->Uco + gmc->dU[0] + gmc->dU[1])>>2;
686          gmc->Vco = (gmc->Vco + gmc->dV[0] + gmc->dV[1])>>2;          gmc->Vco = (gmc->Vco + gmc->dV[0] + gmc->dV[1])>>2;
687    
688          gmc->predict_16x16      = Predict_16x16_C;          gmc->predict_16x16      = Predict_16x16_func;
689          gmc->predict_8x8        = Predict_8x8_C;          gmc->predict_8x8        = Predict_8x8_func;
690          gmc->get_average_mv = get_average_mv_C;          gmc->get_average_mv = get_average_mv_C;
691          }          }
692  }  }

Legend:
Removed from v.1708  
changed lines
  Added in v.1709

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