SDL_yuv_mmx.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:20k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_yuv_mmx.c,v 1.4 2002/04/22 21:38:03 wmay Exp $";
  21. #endif
  22. #if defined(i386) && defined(__GNUC__) && defined(USE_ASMBLIT)
  23. #include "SDL_types.h"
  24. #ifdef __ELF__
  25. #define ASM_VAR(X) _##X
  26. #else
  27. #define ASM_VAR(X) X
  28. #endif
  29. static unsigned int  ASM_VAR(MMX_0080w)[]    = {0x00800080, 0x00800080};
  30. static unsigned int  ASM_VAR(MMX_00FFw)[]    = {0x00ff00ff, 0x00ff00ff}; 
  31. static unsigned int  ASM_VAR(MMX_FF00w)[]    = {0xff00ff00, 0xff00ff00}; 
  32. static unsigned short ASM_VAR(MMX_Ycoeff)[]  = {0x004a, 0x004a, 0x004a, 0x004a}; 
  33. static unsigned short ASM_VAR(MMX_UbluRGB)[] = {0x0072, 0x0072, 0x0072, 0x0072};    
  34. static unsigned short ASM_VAR(MMX_VredRGB)[] = {0x0059, 0x0059, 0x0059, 0x0059};  
  35. static unsigned short ASM_VAR(MMX_UgrnRGB)[] = {0xffea, 0xffea, 0xffea, 0xffea}; 
  36. static unsigned short ASM_VAR(MMX_VgrnRGB)[] = {0xffd2, 0xffd2, 0xffd2, 0xffd2};  
  37. static unsigned short ASM_VAR(MMX_Ublu5x5)[] = {0x0081, 0x0081, 0x0081, 0x0081};
  38. static unsigned short ASM_VAR(MMX_Vred5x5)[] = {0x0066, 0x0066, 0x0066, 0x0066};
  39. static unsigned short ASM_VAR(MMX_Ugrn555)[] = {0xffe7, 0xffe7, 0xffe7, 0xffe7};
  40. static unsigned short ASM_VAR(MMX_Vgrn555)[] = {0xffcc, 0xffcc, 0xffcc, 0xffcc};
  41. static unsigned short ASM_VAR(MMX_Ugrn565)[] = {0xffe8, 0xffe8, 0xffe8, 0xffe8};
  42. static unsigned short ASM_VAR(MMX_Vgrn565)[] = {0xffcd, 0xffcd, 0xffcd, 0xffcd};
  43. static unsigned short ASM_VAR(MMX_red555)[]  = {0x7c00, 0x7c00, 0x7c00, 0x7c00};
  44. static unsigned short ASM_VAR(MMX_red565)[]  = {0xf800, 0xf800, 0xf800, 0xf800};
  45. static unsigned short ASM_VAR(MMX_grn555)[]  = {0x03e0, 0x03e0, 0x03e0, 0x03e0};
  46. static unsigned short ASM_VAR(MMX_grn565)[]  = {0x07e0, 0x07e0, 0x07e0, 0x07e0};
  47. static unsigned short ASM_VAR(MMX_blu5x5)[]  = {0x001f, 0x001f, 0x001f, 0x001f};
  48. /**
  49.    This MMX assembler is my first assembler/MMX program ever.
  50.    Thus it maybe buggy.
  51.    Send patches to:
  52.    mvogt@rhrk.uni-kl.de
  53.    After it worked fine I have "obfuscated" the code a bit to have
  54.    more parallism in the MMX units. This means I moved
  55.    initilisation around and delayed other instruction.
  56.    Performance measurement did not show that this brought any advantage
  57.    but in theory it _should_ be faster this way.
  58.    The overall performanve gain to the C based dither was 30%-40%.
  59.    The MMX routine calculates 256bit=8RGB values in each cycle
  60.    (4 for row1 & 4 for row2)
  61.    The red/green/blue.. coefficents are taken from the mpeg_play 
  62.    player. They look nice, but I dont know if you can have
  63.    better values, to avoid integer rounding errors.
  64.    
  65.    IMPORTANT:
  66.    ==========
  67.    It is a requirement that the cr/cb/lum are 8 byte aligned and
  68.    the out are 16byte aligned or you will/may get segfaults
  69. */
  70. void ColorRGBDitherYV12MMX1X( int *colortab, Uint32 *rgb_2_pix,
  71.                               unsigned char *lum, unsigned char *cr,
  72.                               unsigned char *cb, unsigned char *out,
  73.                               int rows, int cols, int mod )
  74. {
  75.     Uint32 *row1;
  76.     Uint32 *row2;
  77.     unsigned char* y = lum +cols*rows;    // Pointer to the end
  78.     int x=0;
  79.     row1 = (Uint32 *)out;                 // 32 bit target
  80.     row2 = (Uint32 *)out+cols+mod;        // start of second row 
  81.     mod = (mod+cols+mod)*4;               // increment for row1 in byte
  82.     __asm__ __volatile__ (
  83. /* We don't really care about PIC - the code should be rewritten to use
  84.    relative addressing for the static tables, so right now we take the
  85.    COW hit on the pages this code resides. Big deal.
  86.    This spill is just to reduce register pressure in the PIC case. */
  87.  "pushl %%ebxn"
  88.  "movl %0, %%ebxn"
  89.          ".align 8n"
  90.  "1:n"
  91.  // create Cr (result in mm1)
  92.  "movd (%%ebx), %%mm1n"   //         0  0  0  0  v3 v2 v1 v0
  93.  "pxor %%mm7,%%mm7n"      //         00 00 00 00 00 00 00 00
  94.  "movd (%2), %%mm2n"           //    0  0  0  0 l3 l2 l1 l0
  95.  "punpcklbw %%mm7,%%mm1n" //         0  v3 0  v2 00 v1 00 v0
  96.  "punpckldq %%mm1,%%mm1n" //         00 v1 00 v0 00 v1 00 v0
  97.  "psubw _MMX_0080w,%%mm1n"  // mm1-128:r1 r1 r0 r0 r1 r1 r0 r0 
  98.  // create Cr_g (result in mm0)
  99.  "movq %%mm1,%%mm0n"           // r1 r1 r0 r0 r1 r1 r0 r0
  100.  "pmullw _MMX_VgrnRGB,%%mm0n"// red*-46dec=0.7136*64
  101.  "pmullw _MMX_VredRGB,%%mm1n"// red*89dec=1.4013*64
  102.  "psraw  $6, %%mm0n"           // red=red/64
  103.  "psraw  $6, %%mm1n"           // red=red/64
  104.  
  105.  // create L1 L2 (result in mm2,mm4)
  106.  // L2=lum+cols
  107.  "movq (%2,%4),%%mm3n"         //    0  0  0  0 L3 L2 L1 L0
  108.  "punpckldq %%mm3,%%mm2n"      //   L3 L2 L1 L0 l3 l2 l1 l0
  109.  "movq %%mm2,%%mm4n"           //   L3 L2 L1 L0 l3 l2 l1 l0
  110.  "pand _MMX_FF00w,%%mm2n"      //   L3 0  L1  0 l3  0 l1  0
  111.  "pand _MMX_00FFw,%%mm4n"      //   0  L2  0 L0  0 l2  0 l0
  112.  "psrlw $8,%%mm2n"             //   0  L3  0 L1  0 l3  0 l1
  113.  // create R (result in mm6)
  114.  "movq %%mm2,%%mm5n"           //   0 L3  0 L1  0 l3  0 l1
  115.  "movq %%mm4,%%mm6n"           //   0 L2  0 L0  0 l2  0 l0
  116.  "paddsw  %%mm1, %%mm5n"       // lum1+red:x R3 x R1 x r3 x r1
  117.  "paddsw  %%mm1, %%mm6n"       // lum1+red:x R2 x R0 x r2 x r0
  118.  "packuswb %%mm5,%%mm5n"       //  R3 R1 r3 r1 R3 R1 r3 r1
  119.  "packuswb %%mm6,%%mm6n"       //  R2 R0 r2 r0 R2 R0 r2 r0
  120.  "pxor %%mm7,%%mm7n"      //         00 00 00 00 00 00 00 00
  121.  "punpcklbw %%mm5,%%mm6n"      //  R3 R2 R1 R0 r3 r2 r1 r0
  122.  // create Cb (result in mm1)
  123.  "movd (%1), %%mm1n"      //         0  0  0  0  u3 u2 u1 u0
  124.  "punpcklbw %%mm7,%%mm1n" //         0  u3 0  u2 00 u1 00 u0
  125.  "punpckldq %%mm1,%%mm1n" //         00 u1 00 u0 00 u1 00 u0
  126.  "psubw _MMX_0080w,%%mm1n"  // mm1-128:u1 u1 u0 u0 u1 u1 u0 u0 
  127.  // create Cb_g (result in mm5)
  128.  "movq %%mm1,%%mm5n"            // u1 u1 u0 u0 u1 u1 u0 u0
  129.  "pmullw _MMX_UgrnRGB,%%mm5n"    // blue*-109dec=1.7129*64
  130.  "pmullw _MMX_UbluRGB,%%mm1n"    // blue*114dec=1.78125*64
  131.  "psraw  $6, %%mm5n"            // blue=red/64
  132.  "psraw  $6, %%mm1n"            // blue=blue/64
  133.  // create G (result in mm7)
  134.  "movq %%mm2,%%mm3n"      //   0  L3  0 L1  0 l3  0 l1
  135.  "movq %%mm4,%%mm7n"      //   0  L2  0 L0  0 l2  0 l1
  136.  "paddsw  %%mm5, %%mm3n"  // lum1+Cb_g:x G3t x G1t x g3t x g1t
  137.  "paddsw  %%mm5, %%mm7n"  // lum1+Cb_g:x G2t x G0t x g2t x g0t
  138.  "paddsw  %%mm0, %%mm3n"  // lum1+Cr_g:x G3  x G1  x g3  x g1
  139.  "paddsw  %%mm0, %%mm7n"  // lum1+blue:x G2  x G0  x g2  x g0
  140.  "packuswb %%mm3,%%mm3n"  // G3 G1 g3 g1 G3 G1 g3 g1
  141.  "packuswb %%mm7,%%mm7n"  // G2 G0 g2 g0 G2 G0 g2 g0
  142.  "punpcklbw %%mm3,%%mm7n" // G3 G2 G1 G0 g3 g2 g1 g0
  143.  
  144.  // create B (result in mm5)
  145.  "movq %%mm2,%%mm3n"         //   0  L3  0 L1  0 l3  0 l1
  146.  "movq %%mm4,%%mm5n"         //   0  L2  0 L0  0 l2  0 l1
  147.  "paddsw  %%mm1, %%mm3n"     // lum1+blue:x B3 x B1 x b3 x b1
  148.  "paddsw  %%mm1, %%mm5n"     // lum1+blue:x B2 x B0 x b2 x b0
  149.  "packuswb %%mm3,%%mm3n"     // B3 B1 b3 b1 B3 B1 b3 b1
  150.  "packuswb %%mm5,%%mm5n"     // B2 B0 b2 b0 B2 B0 b2 b0
  151.  "punpcklbw %%mm3,%%mm5n"    // B3 B2 B1 B0 b3 b2 b1 b0
  152.  // fill destination row1 (needed are mm6=Rr,mm7=Gg,mm5=Bb)
  153.  "pxor %%mm2,%%mm2n"           //  0  0  0  0  0  0  0  0
  154.  "pxor %%mm4,%%mm4n"           //  0  0  0  0  0  0  0  0
  155.  "movq %%mm6,%%mm1n"           // R3 R2 R1 R0 r3 r2 r1 r0
  156.  "movq %%mm5,%%mm3n"           // B3 B2 B1 B0 b3 b2 b1 b0
  157.  // process lower lum
  158.  "punpcklbw %%mm4,%%mm1n"      //  0 r3  0 r2  0 r1  0 r0
  159.  "punpcklbw %%mm4,%%mm3n"      //  0 b3  0 b2  0 b1  0 b0
  160.  "movq %%mm1,%%mm2n"           //  0 r3  0 r2  0 r1  0 r0
  161.  "movq %%mm3,%%mm0n"           //  0 b3  0 b2  0 b1  0 b0
  162.  "punpcklwd %%mm1,%%mm3n"      //  0 r1  0 b1  0 r0  0 b0
  163.  "punpckhwd %%mm2,%%mm0n"      //  0 r3  0 b3  0 r2  0 b2
  164.  "pxor %%mm2,%%mm2n"           //  0  0  0  0  0  0  0  0
  165.  "movq %%mm7,%%mm1n"           // G3 G2 G1 G0 g3 g2 g1 g0
  166.  "punpcklbw %%mm1,%%mm2n"      // g3  0 g2  0 g1  0 g0  0
  167.  "punpcklwd %%mm4,%%mm2n"      //  0  0 g1  0  0  0 g0  0 
  168.  "por  %%mm3, %%mm2n"          //  0 r1 g1 b1  0 r0 g0 b0
  169.  "movq   %%mm2,(%3)n"          // wrote out ! row1
  170.  "pxor %%mm2,%%mm2n"           //  0  0  0  0  0  0  0  0
  171.  "punpcklbw %%mm1,%%mm4n"      // g3  0 g2  0 g1  0 g0  0
  172.  "punpckhwd %%mm2,%%mm4n"      //  0  0 g3  0  0  0 g2  0 
  173.  "por  %%mm0, %%mm4n"          //  0 r3 g3 b3  0 r2 g2 b2
  174.  "movq   %%mm4,8(%3)n"         // wrote out ! row1
  175.  
  176.  // fill destination row2 (needed are mm6=Rr,mm7=Gg,mm5=Bb)
  177.  // this can be done "destructive"
  178.  "pxor %%mm2,%%mm2n"           //  0  0  0  0  0  0  0  0
  179.  "punpckhbw %%mm2,%%mm6n"      //  0 R3  0 R2  0 R1  0 R0
  180.  "punpckhbw %%mm1,%%mm5n"      // G3 B3 G2 B2 G1 B1 G0 B0
  181.  "movq %%mm5,%%mm1n"           // G3 B3 G2 B2 G1 B1 G0 B0
  182.  "punpcklwd %%mm6,%%mm1n"      //  0 R1 G1 B1  0 R0 G0 B0
  183.  "movq   %%mm1,(%5)n"          // wrote out ! row2
  184.  "punpckhwd %%mm6,%%mm5n"      //  0 R3 G3 B3  0 R2 G2 B2
  185.  "movq   %%mm5,8(%5)n"         // wrote out ! row2
  186.  
  187.  "addl  $4,%2n"            // lum+4
  188.  "leal  16(%3),%3n"        // row1+16
  189.  "leal  16(%5),%5n"        // row2+16
  190.  "addl  $2, %%ebxn"        // cr+2
  191.  "addl  $2, %1n"           // cb+2
  192.  "addl  $4,%6n"            // x+4
  193.  "cmpl  %4,%6n"
  194.  "jl    1bn"
  195.  "addl           %4,     %2n" // lum += cols 
  196.  "addl           %8,     %3n" // row1+= mod
  197.  "addl           %8,     %5n" // row2+= mod
  198.  "movl           $0,     %6n" // x=0
  199.  "cmpl           %7,     %2n"
  200.  "jl             1bn"
  201.  "emmsn"
  202.  "popl %%ebxn"
  203.  :
  204.  : "m" (cr), "r"(cb),"r"(lum),
  205.  "r"(row1),"r"(cols),"r"(row2),"m"(x),"m"(y),"m"(mod)
  206.  : "%ebx"
  207.  );
  208. }
  209. void Color565DitherYV12MMX1X( int *colortab, Uint32 *rgb_2_pix,
  210.                              unsigned char *lum, unsigned char *cr,
  211.                              unsigned char *cb, unsigned char *out,
  212.                              int rows, int cols, int mod )
  213. {
  214.     Uint16 *row1;
  215.     Uint16 *row2;
  216.     unsigned char* y = lum +cols*rows;    /* Pointer to the end */
  217.     int x=0;
  218.     row1 = (Uint16 *)out;                 /* 16 bit target */
  219.     row2 = (Uint16 *)out+cols+mod;        /* start of second row  */
  220.     mod = (mod+cols+mod)*2;               /* increment for row1 in byte */
  221.       __asm__ __volatile__(
  222.          "pushl %%ebxn"
  223.  "movl %0, %%ebxn"
  224.          ".align 8n"
  225.          "1:n"
  226.          "movd           (%1),                   %%mm0n" // 4 Cb         0  0  0  0 u3 u2 u1 u0
  227.          "pxor           %%mm7,                  %%mm7n"
  228.          "movd           (%%ebx),                %%mm1n" // 4 Cr                0  0  0  0 v3 v2 v1 v0
  229.          "punpcklbw      %%mm7,                  %%mm0n" // 4 W cb   0 u3  0 u2  0 u1  0 u0
  230.          "punpcklbw      %%mm7,                  %%mm1n" // 4 W cr   0 v3  0 v2  0 v1  0 v0
  231.          "psubw          _MMX_0080w,             %%mm0n"
  232.          "psubw          _MMX_0080w,             %%mm1n"
  233.          "movq           %%mm0,                  %%mm2n" // Cb                   0 u3  0 u2  0 u1  0 u0
  234.          "movq           %%mm1,                  %%mm3n" // Cr
  235.          "pmullw         _MMX_Ugrn565,           %%mm2n" // Cb2green 0 R3  0 R2  0 R1  0 R0
  236.          "movq           (%2),                   %%mm6n" // L1      l7 L6 L5 L4 L3 L2 L1 L0
  237.          "pmullw         _MMX_Ublu5x5,           %%mm0n" // Cb2blue
  238.          "pand           _MMX_00FFw,             %%mm6n" // L1      00 L6 00 L4 00 L2 00 L0
  239.          "pmullw         _MMX_Vgrn565,           %%mm3n" // Cr2green
  240.          "movq           (%2),                   %%mm7n" // L2
  241.          "pmullw         _MMX_Vred5x5,           %%mm1n" // Cr2red
  242.          "psrlw          $8,                     %%mm7n"        // L2           00 L7 00 L5 00 L3 00 L1
  243.          "pmullw         _MMX_Ycoeff,            %%mm6n" // lum1
  244.          "paddw          %%mm3,                  %%mm2n" // Cb2green + Cr2green == green
  245.          "pmullw         _MMX_Ycoeff,            %%mm7n" // lum2
  246.          "movq           %%mm6,                  %%mm4n" // lum1
  247.          "paddw          %%mm0,                  %%mm6n" // lum1 +blue 00 B6 00 B4 00 B2 00 B0
  248.          "movq           %%mm4,                  %%mm5n" // lum1
  249.          "paddw          %%mm1,                  %%mm4n" // lum1 +red  00 R6 00 R4 00 R2 00 R0
  250.          "paddw          %%mm2,                  %%mm5n" // lum1 +green 00 G6 00 G4 00 G2 00 G0
  251.          "psraw          $6,                     %%mm4n" // R1 0 .. 64
  252.          "movq           %%mm7,                  %%mm3n" // lum2                       00 L7 00 L5 00 L3 00 L1
  253.          "psraw          $6,                     %%mm5n" // G1  - .. +
  254.          "paddw          %%mm0,                  %%mm7n" // Lum2 +blue 00 B7 00 B5 00 B3 00 B1
  255.          "psraw          $6,                     %%mm6n" // B1         0 .. 64
  256.          "packuswb       %%mm4,                  %%mm4n" // R1 R1
  257.          "packuswb       %%mm5,                  %%mm5n" // G1 G1
  258.          "packuswb       %%mm6,                  %%mm6n" // B1 B1
  259.          "punpcklbw      %%mm4,                  %%mm4n"
  260.          "punpcklbw      %%mm5,                  %%mm5n"
  261.          "pand           _MMX_red565,            %%mm4n"
  262.          "psllw          $3,                     %%mm5n" // GREEN       1
  263.          "punpcklbw      %%mm6,                  %%mm6n"
  264.          "pand           _MMX_grn565,            %%mm5n"
  265.          "pand           _MMX_red565,            %%mm6n"
  266.          "por            %%mm5,                  %%mm4n" //
  267.          "psrlw          $11,                    %%mm6n" // BLUE        1
  268.          "movq           %%mm3,                  %%mm5n" // lum2
  269.          "paddw          %%mm1,                  %%mm3n" // lum2 +red      00 R7 00 R5 00 R3 00 R1
  270.          "paddw          %%mm2,                  %%mm5n" // lum2 +green 00 G7 00 G5 00 G3 00 G1
  271.          "psraw          $6,                     %%mm3n" // R2
  272.          "por            %%mm6,                  %%mm4n" // MM4
  273.          "psraw          $6,                     %%mm5n" // G2
  274.          "movq           (%2, %4),               %%mm6n" // L3 load lum2
  275.          "psraw          $6,                     %%mm7n"
  276.          "packuswb       %%mm3,                  %%mm3n"
  277.          "packuswb       %%mm5,                  %%mm5n"
  278.          "packuswb       %%mm7,                  %%mm7n"
  279.          "pand           _MMX_00FFw,             %%mm6n" // L3
  280.          "punpcklbw      %%mm3,                  %%mm3n"
  281.          "punpcklbw      %%mm5,                  %%mm5n"
  282.          "pmullw         _MMX_Ycoeff,            %%mm6n" // lum3
  283.          "punpcklbw      %%mm7,                  %%mm7n"
  284.          "psllw          $3,                     %%mm5n" // GREEN 2
  285.          "pand           _MMX_red565,            %%mm7n"
  286.          "pand           _MMX_red565,            %%mm3n"
  287.          "psrlw          $11,                    %%mm7n" // BLUE  2
  288.          "pand           _MMX_grn565,            %%mm5n"
  289.          "por            %%mm7,                  %%mm3n"
  290.          "movq           (%2,%4),                %%mm7n" // L4 load lum2
  291.          "por            %%mm5,                  %%mm3n" //
  292.          "psrlw          $8,                     %%mm7n" // L4
  293.          "movq           %%mm4,                  %%mm5n"
  294.          "punpcklwd      %%mm3,                  %%mm4n"
  295.          "pmullw         _MMX_Ycoeff,            %%mm7n" // lum4
  296.          "punpckhwd      %%mm3,                  %%mm5n"
  297.          "movq           %%mm4,                  (%3)n"  // write row1
  298.          "movq           %%mm5,                  8(%3)n" // write row1
  299.          "movq           %%mm6,                  %%mm4n" // Lum3
  300.          "paddw          %%mm0,                  %%mm6n" // Lum3 +blue
  301.          "movq           %%mm4,                  %%mm5n" // Lum3
  302.          "paddw          %%mm1,                  %%mm4n" // Lum3 +red
  303.          "paddw          %%mm2,                  %%mm5n" // Lum3 +green
  304.          "psraw          $6,                     %%mm4n"
  305.          "movq           %%mm7,                  %%mm3n" // Lum4
  306.          "psraw          $6,                     %%mm5n"
  307.          "paddw          %%mm0,                  %%mm7n" // Lum4 +blue
  308.          "psraw          $6,                     %%mm6n" // Lum3 +blue
  309.          "movq           %%mm3,                  %%mm0n" // Lum4
  310.          "packuswb       %%mm4,                  %%mm4n"
  311.          "paddw          %%mm1,                  %%mm3n" // Lum4 +red
  312.          "packuswb       %%mm5,                  %%mm5n"
  313.          "paddw          %%mm2,                  %%mm0n" // Lum4 +green
  314.          "packuswb       %%mm6,                  %%mm6n"
  315.          "punpcklbw      %%mm4,                  %%mm4n"
  316.          "punpcklbw      %%mm5,                  %%mm5n"
  317.          "punpcklbw      %%mm6,                  %%mm6n"
  318.          "psllw          $3,                     %%mm5n" // GREEN 3
  319.          "pand           _MMX_red565,            %%mm4n"
  320.          "psraw          $6,                     %%mm3n" // psr 6
  321.          "psraw          $6,                     %%mm0n"
  322.          "pand           _MMX_red565,            %%mm6n" // BLUE
  323.          "pand           _MMX_grn565,            %%mm5n"
  324.          "psrlw          $11,                    %%mm6n" // BLUE  3
  325.          "por            %%mm5,                  %%mm4n"
  326.          "psraw          $6,                     %%mm7n"
  327.          "por            %%mm6,                  %%mm4n"
  328.          "packuswb       %%mm3,                  %%mm3n"
  329.          "packuswb       %%mm0,                  %%mm0n"
  330.          "packuswb       %%mm7,                  %%mm7n"
  331.          "punpcklbw      %%mm3,                  %%mm3n"
  332.          "punpcklbw      %%mm0,                  %%mm0n"
  333.          "punpcklbw      %%mm7,                  %%mm7n"
  334.          "pand           _MMX_red565,            %%mm3n"
  335.          "pand           _MMX_red565,            %%mm7n" // BLUE
  336.          "psllw          $3,                     %%mm0n" // GREEN 4
  337.          "psrlw          $11,                    %%mm7n"
  338.          "pand           _MMX_grn565,            %%mm0n"
  339.          "por            %%mm7,                  %%mm3n"
  340.          "por            %%mm0,                  %%mm3n"
  341.          "movq           %%mm4,                  %%mm5n"
  342.          "punpcklwd      %%mm3,                  %%mm4n"
  343.          "punpckhwd      %%mm3,                  %%mm5n"
  344.          "movq           %%mm4,                  (%5)n"
  345.  "movq           %%mm5,                  8(%5)n"
  346.          "addl           $8,                     %6n"
  347.          "addl           $8,                     %2n"
  348.          "addl           $4,                     %%ebxn"
  349.          "addl           $4,                     %1n"
  350.          "cmpl           %4,                     %6n"
  351.          "leal           16(%3),                 %3n"
  352.  "leal           16(%5),%5n" // row2+16
  353.          "jl             1bn"
  354.  "addl           %4,     %2n" // lum += cols 
  355.  "addl           %8,     %3n" // row1+= mod
  356.  "addl           %8,     %5n" // row2+= mod
  357.  "movl           $0,     %6n" // x=0
  358.  "cmpl           %7,     %2n"
  359.  "jl             1bn"
  360.          "emmsn"
  361.  "popl %%ebxn"
  362.          :
  363.          :"m" (cr), "r"(cb),"r"(lum),
  364.  "r"(row1),"r"(cols),"r"(row2),"m"(x),"m"(y),"m"(mod)
  365.  : "%ebx"
  366.          );
  367. }
  368. #endif /* GCC i386 inline assembly */