yuv2rgb_altivec.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:23k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*
  2.   marc.hoffman@analog.com    March 8, 2004
  3.   Altivec Acceleration for Color Space Conversion revision 0.2
  4.   convert I420 YV12 to RGB in various formats,
  5.     it rejects images that are not in 420 formats
  6.     it rejects images that don't have widths of multiples of 16
  7.     it rejects images that don't have heights of multiples of 2
  8.   reject defers to C simulation codes.
  9.   lots of optimizations to be done here
  10.   1. need to fix saturation code, I just couldn't get it to fly with packs and adds.
  11.      so we currently use max min to clip
  12.   2. the inefficient use of chroma loading needs a bit of brushing up
  13.   3. analysis of pipeline stalls needs to be done, use shark to identify pipeline stalls
  14.   MODIFIED to calculate coeffs from currently selected color space.
  15.   MODIFIED core to be a macro which you spec the output format.
  16.   ADDED UYVY conversion which is never called due to some thing in SWSCALE.
  17.   CORRECTED algorithim selection to be strict on input formats.
  18.   ADDED runtime detection of altivec.
  19.   ADDED altivec_yuv2packedX vertical scl + RGB converter
  20.   March 27,2004
  21.   PERFORMANCE ANALYSIS
  22.   The C version use 25% of the processor or ~250Mips for D1 video rawvideo used as test
  23.   The ALTIVEC version uses 10% of the processor or ~100Mips for D1 video same sequence
  24.   720*480*30  ~10MPS
  25.   so we have roughly 10clocks per pixel this is too high something has to be wrong.
  26.   OPTIMIZED clip codes to utilize vec_max and vec_packs removing the need for vec_min.
  27.   OPTIMIZED DST OUTPUT cache/dma controls. we are pretty much
  28.   guaranteed to have the input video frame it was just decompressed so
  29.   it probably resides in L1 caches.  However we are creating the
  30.   output video stream this needs to use the DSTST instruction to
  31.   optimize for the cache.  We couple this with the fact that we are
  32.   not going to be visiting the input buffer again so we mark it Least
  33.   Recently Used.  This shaves 25% of the processor cycles off.
  34.   Now MEMCPY is the largest mips consumer in the system, probably due
  35.   to the inefficient X11 stuff.
  36.   GL libraries seem to be very slow on this machine 1.33Ghz PB running
  37.   Jaguar, this is not the case for my 1Ghz PB.  I thought it might be
  38.   a versioning issues, however i have libGL.1.2.dylib for both
  39.   machines. ((We need to figure this out now))
  40.   GL2 libraries work now with patch for RGB32
  41.   NOTE quartz vo driver ARGB32_to_RGB24 consumes 30% of the processor
  42.   Integrated luma prescaling adjustment for saturation/contrast/brightness adjustment. 
  43. */
  44. #include <stdio.h>
  45. #include <stdlib.h>
  46. #include <string.h>
  47. #include <inttypes.h>
  48. #include <assert.h>
  49. #include "config.h"
  50. #include "rgb2rgb.h"
  51. #include "swscale.h"
  52. #include "swscale_internal.h"
  53. #include "mangle.h"
  54. #include "img_format.h" //FIXME try to reduce dependency of such stuff
  55. #undef PROFILE_THE_BEAST
  56. #undef INC_SCALING
  57. typedef unsigned char ubyte;
  58. typedef signed char   sbyte;
  59. /* RGB interleaver, 16 planar pels 8-bit samples per channel in
  60.    homogeneous vector registers x0,x1,x2 are interleaved with the
  61.    following technique:
  62.       o0 = vec_mergeh (x0,x1);
  63.       o1 = vec_perm (o0, x2, perm_rgb_0);
  64.       o2 = vec_perm (o0, x2, perm_rgb_1);
  65.       o3 = vec_mergel (x0,x1);
  66.       o4 = vec_perm (o3,o2,perm_rgb_2);
  67.       o5 = vec_perm (o3,o2,perm_rgb_3);
  68.   perm_rgb_0:   o0(RG).h v1(B) --> o1*
  69.               0   1  2   3   4
  70.              rgbr|gbrg|brgb|rgbr
  71.              0010 0100 1001 0010
  72.              0102 3145 2673 894A
  73.   perm_rgb_1:   o0(RG).h v1(B) --> o2
  74.               0   1  2   3   4
  75.              gbrg|brgb|bbbb|bbbb
  76.              0100 1001 1111 1111
  77.              B5CD 6EF7 89AB CDEF
  78.   perm_rgb_2:   o3(RG).l o2(rgbB.l) --> o4*
  79.               0   1  2   3   4
  80.              gbrg|brgb|rgbr|gbrg
  81.              1111 1111 0010 0100
  82.              89AB CDEF 0182 3945
  83.   perm_rgb_2:   o3(RG).l o2(rgbB.l) ---> o5*
  84.               0   1  2   3   4
  85.              brgb|rgbr|gbrg|brgb
  86.              1001 0010 0100 1001
  87.              a67b 89cA BdCD eEFf
  88. */
  89. static
  90. const vector unsigned char
  91.   perm_rgb_0 = (vector unsigned char)(0x00,0x01,0x10,0x02,0x03,0x11,0x04,0x05,
  92.       0x12,0x06,0x07,0x13,0x08,0x09,0x14,0x0a),
  93.   perm_rgb_1 = (vector unsigned char)(0x0b,0x15,0x0c,0x0d,0x16,0x0e,0x0f,0x17,
  94.       0x18,0x19,0x1a,0x1b,0x1c,0x1d,0x1e,0x1f),
  95.   perm_rgb_2 = (vector unsigned char)(0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17,
  96.       0x00,0x01,0x18,0x02,0x03,0x19,0x04,0x05),
  97.   perm_rgb_3 = (vector unsigned char)(0x1a,0x06,0x07,0x1b,0x08,0x09,0x1c,0x0a,
  98.       0x0b,0x1d,0x0c,0x0d,0x1e,0x0e,0x0f,0x1f);
  99. #define vec_merge3(x2,x1,x0,y0,y1,y2)    
  100. do {  
  101.   typeof(x0) o0,o2,o3;  
  102.       o0 = vec_mergeh (x0,x1);  
  103.       y0 = vec_perm (o0, x2, perm_rgb_0);
  104.       o2 = vec_perm (o0, x2, perm_rgb_1);
  105.       o3 = vec_mergel (x0,x1);  
  106.       y1 = vec_perm (o3,o2,perm_rgb_2);  
  107.       y2 = vec_perm (o3,o2,perm_rgb_3);  
  108. } while(0)
  109. #define vec_mstrgb24(x0,x1,x2,ptr)        
  110. do {  
  111.   typeof(x0) _0,_1,_2;  
  112.   vec_merge3 (x0,x1,x2,_0,_1,_2);  
  113.   vec_st (_0, 0, ptr++);  
  114.   vec_st (_1, 0, ptr++);  
  115.   vec_st (_2, 0, ptr++);  
  116. }  while (0);
  117. #define vec_mstbgr24(x0,x1,x2,ptr)       
  118. do {  
  119.   typeof(x0) _0,_1,_2;  
  120.   vec_merge3 (x2,x1,x0,_0,_1,_2);  
  121.   vec_st (_0, 0, ptr++);  
  122.   vec_st (_1, 0, ptr++);  
  123.   vec_st (_2, 0, ptr++);  
  124. }  while (0);
  125. /* pack the pixels in rgb0 format
  126.    msb R
  127.    lsb 0
  128. */
  129. #define vec_mstrgb32(T,x0,x1,x2,x3,ptr)        
  130. do {        
  131.   T _0,_1,_2,_3;        
  132.   _0 = vec_mergeh (x0,x1);        
  133.   _1 = vec_mergeh (x2,x3);                
  134.   _2 = (T)vec_mergeh ((vector unsigned short)_0,(vector unsigned short)_1);            
  135.   _3 = (T)vec_mergel ((vector unsigned short)_0,(vector unsigned short)_1);            
  136.   vec_st (_2, 0*16, (T *)ptr);                
  137.   vec_st (_3, 1*16, (T *)ptr);                
  138.   _0 = vec_mergel (x0,x1);        
  139.   _1 = vec_mergel (x2,x3);                
  140.   _2 = (T)vec_mergeh ((vector unsigned short)_0,(vector unsigned short)_1);         
  141.   _3 = (T)vec_mergel ((vector unsigned short)_0,(vector unsigned short)_1);         
  142.   vec_st (_2, 2*16, (T *)ptr);                
  143.   vec_st (_3, 3*16, (T *)ptr);                
  144.   ptr += 4;        
  145. }  while (0);
  146. /*
  147.   | 1     0       1.4021   | | Y |
  148.   | 1    -0.3441 -0.7142   |x| Cb|
  149.   | 1     1.7718  0    | | Cr|
  150.   Y:      [-128 127]
  151.   Cb/Cr : [-128 127]
  152.   typical yuv conversion work on Y: 0-255 this version has been optimized for jpeg decode.
  153. */
  154. #define vec_unh(x) 
  155.   (vector signed short) 
  156.     vec_perm(x,(typeof(x))(0),
  157.              (vector unsigned char)(0x10,0x00,0x10,0x01,0x10,0x02,0x10,0x03,
  158.                                     0x10,0x04,0x10,0x05,0x10,0x06,0x10,0x07))
  159. #define vec_unl(x) 
  160.   (vector signed short) 
  161.     vec_perm(x,(typeof(x))(0),
  162.              (vector unsigned char)(0x10,0x08,0x10,0x09,0x10,0x0A,0x10,0x0B,
  163.                                     0x10,0x0C,0x10,0x0D,0x10,0x0E,0x10,0x0F))
  164. #define vec_clip(x) 
  165.   vec_max (vec_min (x, (typeof(x))(255)), (typeof(x))(0))
  166. #define vec_packclp_a(x,y) 
  167.   (vector unsigned char)vec_pack (vec_clip (x), vec_clip (y))
  168. #define vec_packclp(x,y) 
  169.   (vector unsigned char)vec_packs 
  170.       ((vector unsigned short)vec_max (x,(vector signed short) (0)), 
  171.        (vector unsigned short)vec_max (y,(vector signed short) (0)))
  172. //#define out_pixels(a,b,c,ptr) vec_mstrgb32(typeof(a),((typeof (a))(0)),a,a,a,ptr)
  173. static inline void cvtyuvtoRGB (SwsContext *c,
  174.    vector signed short Y, vector signed short U, vector signed short V,
  175.    vector signed short *R, vector signed short *G, vector signed short *B)
  176. {
  177.   vector signed   short vx,ux,uvx;
  178.   Y = vec_mradds (Y, c->CY, c->OY);
  179.   U = vec_sub (U,(vector signed short)(128));
  180.   V = vec_sub (V,(vector signed short)(128));
  181.   //   ux  = (CBU*(u<<c->CSHIFT)+0x4000)>>15;
  182.   ux = vec_sl (U, c->CSHIFT);
  183.   *B = vec_mradds (ux, c->CBU, Y);
  184.   // vx  = (CRV*(v<<c->CSHIFT)+0x4000)>>15;
  185.   vx = vec_sl (V, c->CSHIFT);
  186.   *R = vec_mradds (vx, c->CRV, Y);
  187.   // uvx = ((CGU*u) + (CGV*v))>>15;
  188.   uvx = vec_mradds (U, c->CGU, Y);
  189.   *G = vec_mradds (V, c->CGV, uvx);
  190. }
  191. /*
  192.   ------------------------------------------------------------------------------
  193.   CS converters
  194.   ------------------------------------------------------------------------------
  195. */
  196. #define DEFCSP420_CVT(name,out_pixels)                                     
  197. static int altivec_##name (SwsContext *c,                                  
  198. unsigned char **in, int *instrides,    
  199. int srcSliceY, int srcSliceH,    
  200. unsigned char **oplanes, int *outstrides)  
  201. {    
  202.   int w = c->srcW;    
  203.   int h = srcSliceH;    
  204.   int i,j;    
  205.   int instrides_scl[3];    
  206.   vector unsigned char y0,y1;    
  207.    
  208.   vector signed char  u,v;    
  209.    
  210.   vector signed short Y0,Y1,Y2,Y3;    
  211.   vector signed short U,V;    
  212.   vector signed short vx,ux,uvx;    
  213.   vector signed short vx0,ux0,uvx0;    
  214.   vector signed short vx1,ux1,uvx1;    
  215.   vector signed short R0,G0,B0;    
  216.   vector signed short R1,G1,B1;    
  217.   vector unsigned char R,G,B;    
  218.    
  219.   vector unsigned char *uivP, *vivP;        
  220.   vector unsigned char align_perm;    
  221.    
  222.   vector signed short     
  223.     lCY  = c->CY,    
  224.     lOY  = c->OY,    
  225.     lCRV = c->CRV,    
  226.     lCBU = c->CBU,    
  227.     lCGU = c->CGU,    
  228.     lCGV = c->CGV;    
  229.    
  230.   vector unsigned short lCSHIFT = c->CSHIFT;    
  231.    
  232.   ubyte *y1i   = in[0];    
  233.   ubyte *y2i   = in[0]+w;    
  234.   ubyte *ui    = in[1];    
  235.   ubyte *vi    = in[2];    
  236.    
  237.   vector unsigned char *oute    
  238.     = (vector unsigned char *)    
  239.         (oplanes[0]+srcSliceY*outstrides[0]);    
  240.   vector unsigned char *outo    
  241.     = (vector unsigned char *)    
  242.         (oplanes[0]+srcSliceY*outstrides[0]+outstrides[0]);    
  243.    
  244.    
  245.   instrides_scl[0] = instrides[0];    
  246.   instrides_scl[1] = instrides[1]-w/2;  /* the loop moves ui by w/2 */    
  247.   instrides_scl[2] = instrides[2]-w/2;  /* the loop moves vi by w/2 */    
  248.    
  249.    
  250.   for (i=0;i<h/2;i++) {    
  251.     vec_dstst (outo, (0x02000002|(((w*3+32)/32)<<16)), 0);                 
  252.     vec_dstst (oute, (0x02000002|(((w*3+32)/32)<<16)), 1);                 
  253.    
  254.     for (j=0;j<w/16;j++) {    
  255.    
  256.       y0 = vec_ldl (0,y1i);    
  257.       y1 = vec_ldl (0,y2i);    
  258.       uivP = (vector unsigned char *)ui;    
  259.       vivP = (vector unsigned char *)vi;    
  260.    
  261.       align_perm = vec_lvsl (0, ui);    
  262.       u = (vector signed char)vec_perm (uivP[0], uivP[1], align_perm);    
  263.    
  264.       align_perm = vec_lvsl (0, vi);    
  265.       v = (vector signed char)vec_perm (vivP[0], vivP[1], align_perm);    
  266.    
  267.       u  = (vector signed char)vec_sub (u, (vector signed char)(128));    
  268.       v  = (vector signed char)vec_sub (v, (vector signed char)(128));    
  269.       U  = vec_unpackh (u);    
  270.       V  = vec_unpackh (v);    
  271.    
  272.    
  273. Y0 = vec_unh (y0);    
  274. Y1 = vec_unl (y0);    
  275. Y2 = vec_unh (y1);    
  276. Y3 = vec_unl (y1);    
  277.    
  278.         Y0 = vec_mradds (Y0, lCY, lOY);    
  279.         Y1 = vec_mradds (Y1, lCY, lOY);    
  280.         Y2 = vec_mradds (Y2, lCY, lOY);    
  281.         Y3 = vec_mradds (Y3, lCY, lOY);    
  282.    
  283. /*   ux  = (CBU*(u<<CSHIFT)+0x4000)>>15 */    
  284. ux = vec_sl (U, lCSHIFT);    
  285. ux = vec_mradds (ux, lCBU, (vector signed short)(0));    
  286. ux0  = vec_mergeh (ux,ux);    
  287. ux1  = vec_mergel (ux,ux);    
  288.    
  289. /* vx  = (CRV*(v<<CSHIFT)+0x4000)>>15; */    
  290. vx = vec_sl (V, lCSHIFT);    
  291. vx = vec_mradds (vx, lCRV, (vector signed short)(0));    
  292. vx0  = vec_mergeh (vx,vx);    
  293. vx1  = vec_mergel (vx,vx);    
  294.    
  295. /* uvx = ((CGU*u) + (CGV*v))>>15 */    
  296. uvx = vec_mradds (U, lCGU, (vector signed short)(0));    
  297. uvx = vec_mradds (V, lCGV, uvx);    
  298. uvx0 = vec_mergeh (uvx,uvx);    
  299. uvx1 = vec_mergel (uvx,uvx);    
  300.    
  301. R0 = vec_add (Y0,vx0);    
  302. G0 = vec_add (Y0,uvx0);    
  303. B0 = vec_add (Y0,ux0);    
  304. R1 = vec_add (Y1,vx1);    
  305. G1 = vec_add (Y1,uvx1);    
  306. B1 = vec_add (Y1,ux1);    
  307.    
  308. R  = vec_packclp (R0,R1);    
  309. G  = vec_packclp (G0,G1);    
  310. B  = vec_packclp (B0,B1);    
  311.    
  312. out_pixels(R,G,B,oute);    
  313.    
  314. R0 = vec_add (Y2,vx0);    
  315. G0 = vec_add (Y2,uvx0);    
  316. B0 = vec_add (Y2,ux0);    
  317. R1 = vec_add (Y3,vx1);    
  318. G1 = vec_add (Y3,uvx1);    
  319. B1 = vec_add (Y3,ux1);    
  320. R  = vec_packclp (R0,R1);    
  321. G  = vec_packclp (G0,G1);    
  322. B  = vec_packclp (B0,B1);    
  323.    
  324.    
  325. out_pixels(R,G,B,outo);    
  326.    
  327.       y1i  += 16;    
  328.       y2i  += 16;    
  329.       ui   += 8;    
  330.       vi   += 8;    
  331.    
  332.     }    
  333.    
  334.     outo += (outstrides[0])>>4;            
  335.     oute += (outstrides[0])>>4;            
  336.    
  337.     ui    += instrides_scl[1];    
  338.     vi    += instrides_scl[2];    
  339.     y1i   += instrides_scl[0];    
  340.     y2i   += instrides_scl[0];    
  341.   }    
  342.   return srcSliceH;    
  343. }
  344. #define out_abgr(a,b,c,ptr)  vec_mstrgb32(typeof(a),((typeof (a))(0)),c,b,a,ptr)
  345. #define out_bgra(a,b,c,ptr)  vec_mstrgb32(typeof(a),c,b,a,((typeof (a))(0)),ptr)
  346. #define out_rgba(a,b,c,ptr)  vec_mstrgb32(typeof(a),a,b,c,((typeof (a))(0)),ptr)
  347. #define out_argb(a,b,c,ptr)  vec_mstrgb32(typeof(a),((typeof (a))(0)),a,b,c,ptr)
  348. #define out_rgb24(a,b,c,ptr) vec_mstrgb24(a,b,c,ptr)
  349. #define out_bgr24(a,b,c,ptr) vec_mstrgb24(c,b,a,ptr)
  350. DEFCSP420_CVT (yuv2_abgr32, out_abgr)
  351. DEFCSP420_CVT (yuv2_bgra32, out_argb)
  352. DEFCSP420_CVT (yuv2_rgba32, out_rgba)
  353. DEFCSP420_CVT (yuv2_argb32, out_argb)
  354. DEFCSP420_CVT (yuv2_rgb24,  out_rgb24)
  355. DEFCSP420_CVT (yuv2_bgr24,  out_bgr24)
  356. // uyvy|uyvy|uyvy|uyvy
  357. // 0123 4567 89ab cdef
  358. static
  359. const vector unsigned char
  360.   demux_u = (vector unsigned char)(0x10,0x00,0x10,0x00,
  361.    0x10,0x04,0x10,0x04,
  362.    0x10,0x08,0x10,0x08,
  363.    0x10,0x0c,0x10,0x0c),
  364.   demux_v = (vector unsigned char)(0x10,0x02,0x10,0x02,
  365.    0x10,0x06,0x10,0x06,
  366.    0x10,0x0A,0x10,0x0A,
  367.    0x10,0x0E,0x10,0x0E),
  368.   demux_y = (vector unsigned char)(0x10,0x01,0x10,0x03,
  369.    0x10,0x05,0x10,0x07,
  370.    0x10,0x09,0x10,0x0B,
  371.    0x10,0x0D,0x10,0x0F);
  372. /*
  373.   this is so I can play live CCIR raw video
  374. */
  375. static int altivec_uyvy_rgb32 (SwsContext *c,
  376.        unsigned char **in, int *instrides,
  377.        int srcSliceY, int srcSliceH,
  378.        unsigned char **oplanes, int *outstrides)
  379. {
  380.   int w = c->srcW;
  381.   int h = srcSliceH;
  382.   int i,j;
  383.   vector unsigned char uyvy;
  384.   vector signed   short Y,U,V;
  385.   vector signed   short vx,ux,uvx;
  386.   vector signed   short R0,G0,B0,R1,G1,B1;
  387.   vector unsigned char  R,G,B;
  388.   vector unsigned char *out;
  389.   ubyte *img;
  390.   img = in[0];
  391.   out = (vector unsigned char *)(oplanes[0]+srcSliceY*outstrides[0]);
  392.   for (i=0;i<h;i++) {
  393.     for (j=0;j<w/16;j++) {
  394.       uyvy = vec_ld (0, img);
  395.       U = (vector signed short)
  396. vec_perm (uyvy, (vector unsigned char)(0), demux_u);
  397.       V = (vector signed short)
  398. vec_perm (uyvy, (vector unsigned char)(0), demux_v);
  399.       Y = (vector signed short)
  400. vec_perm (uyvy, (vector unsigned char)(0), demux_y);
  401.       cvtyuvtoRGB (c, Y,U,V,&R0,&G0,&B0);
  402.       uyvy = vec_ld (16, img);
  403.       U = (vector signed short)
  404. vec_perm (uyvy, (vector unsigned char)(0), demux_u);
  405.       V = (vector signed short)
  406. vec_perm (uyvy, (vector unsigned char)(0), demux_v);
  407.       Y = (vector signed short)
  408. vec_perm (uyvy, (vector unsigned char)(0), demux_y);
  409.       cvtyuvtoRGB (c, Y,U,V,&R1,&G1,&B1);
  410.       R  = vec_packclp (R0,R1);
  411.       G  = vec_packclp (G0,G1);
  412.       B  = vec_packclp (B0,B1);
  413.       //      vec_mstbgr24 (R,G,B, out);
  414.       out_rgba (R,G,B,out);
  415.       img += 32;
  416.     }
  417.   }
  418.   return srcSliceH;
  419. }
  420. /* Ok currently the acceleration routine only supports
  421.    inputs of widths a multiple of 16
  422.    and heights a multiple 2
  423.    So we just fall back to the C codes for this.
  424. */
  425. SwsFunc yuv2rgb_init_altivec (SwsContext *c)
  426. {
  427.   if (!(c->flags & SWS_CPU_CAPS_ALTIVEC))    
  428.     return NULL;
  429.   /*
  430.     and this seems not to matter too much I tried a bunch of 
  431.     videos with abnormal widths and mplayer crashes else where.
  432.     mplayer -vo x11 -rawvideo on:w=350:h=240 raw-350x240.eyuv 
  433.     boom with X11 bad match.
  434.     
  435.   */
  436.   if ((c->srcW & 0xf) != 0)    return NULL;
  437.   switch (c->srcFormat) {
  438.   case IMGFMT_YVU9:
  439.   case IMGFMT_IF09:
  440.   case IMGFMT_YV12:
  441.   case IMGFMT_I420:
  442.   case IMGFMT_IYUV:
  443.   case IMGFMT_CLPL:
  444.   case IMGFMT_Y800:
  445.   case IMGFMT_Y8:
  446.   case IMGFMT_NV12:
  447.   case IMGFMT_NV21:
  448.     if ((c->srcH & 0x1) != 0)
  449.       return NULL;
  450.     switch(c->dstFormat){
  451.     case IMGFMT_RGB24:
  452.       MSG_WARN("ALTIVEC: Color Space RGB24n");
  453.       return altivec_yuv2_rgb24;
  454.     case IMGFMT_BGR24:
  455.       MSG_WARN("ALTIVEC: Color Space BGR24n");
  456.       return altivec_yuv2_bgr24;
  457.     case IMGFMT_RGB32:
  458.       MSG_WARN("ALTIVEC: Color Space ARGB32n");
  459.       return altivec_yuv2_argb32;
  460.     case IMGFMT_BGR32:
  461.       MSG_WARN("ALTIVEC: Color Space BGRA32n");
  462.       //      return profile_altivec_bgra32;
  463.       return altivec_yuv2_bgra32;
  464.     default: return NULL;
  465.     }
  466.     break;
  467.   case IMGFMT_UYVY:
  468.     switch(c->dstFormat){
  469.     case IMGFMT_RGB32:
  470.       MSG_WARN("ALTIVEC: Color Space UYVY -> RGB32n");
  471.       return altivec_uyvy_rgb32;
  472.     default: return NULL;
  473.     }
  474.     break;
  475.   }
  476.   return NULL;
  477. }
  478. void yuv2rgb_altivec_init_tables (SwsContext *c, const int inv_table[4])
  479. {
  480.   vector signed short CY, CRV, CBU, CGU, CGV, OY, Y0;
  481.   int64_t crv __attribute__ ((aligned(16))) = inv_table[0];
  482.   int64_t cbu __attribute__ ((aligned(16))) = inv_table[1];
  483.   int64_t cgu __attribute__ ((aligned(16))) = inv_table[2];
  484.   int64_t cgv __attribute__ ((aligned(16))) = inv_table[3];
  485.   int64_t cy = (1<<16)-1;
  486.   int64_t oy = 0;
  487.   short tmp __attribute__ ((aligned(16)));
  488.   if ((c->flags & SWS_CPU_CAPS_ALTIVEC) == 0)
  489.     return;
  490.   cy = (cy *c->contrast             )>>17;
  491.   crv= (crv*c->contrast * c->saturation)>>32;
  492.   cbu= (cbu*c->contrast * c->saturation)>>32;
  493.   cgu= (cgu*c->contrast * c->saturation)>>32;
  494.   cgv= (cgv*c->contrast * c->saturation)>>32;
  495.   oy -= 256*c->brightness;
  496.   tmp = cy;
  497.   CY = vec_lde (0, &tmp);
  498.   CY  = vec_splat (CY, 0);
  499.   tmp = oy;
  500.   OY = vec_lde (0, &tmp);
  501.   OY  = vec_splat (OY, 0);
  502.   tmp = crv>>3;
  503.   CRV = vec_lde (0, &tmp);
  504.   CRV  = vec_splat (CRV, 0);
  505.   tmp = cbu>>3;
  506.   CBU = vec_lde (0, &tmp);
  507.   CBU  = vec_splat (CBU, 0);
  508.   tmp = -(cgu>>1);
  509.   CGU = vec_lde (0, &tmp);
  510.   CGU  = vec_splat (CGU, 0);
  511.   tmp = -(cgv>>1);
  512.   CGV = vec_lde (0, &tmp);
  513.   CGV  = vec_splat (CGV, 0);
  514.   c->CSHIFT = (vector unsigned short)(2);
  515.   c->CY = CY;
  516.   c->OY = OY;
  517.   c->CRV = CRV;
  518.   c->CBU = CBU;
  519.   c->CGU = CGU;
  520.   c->CGV = CGV;
  521. #if 0
  522.   printf ("cy:  %hvxn", CY);
  523.   printf ("oy:  %hvxn", OY);
  524.   printf ("crv: %hvxn", CRV);
  525.   printf ("cbu: %hvxn", CBU);
  526.   printf ("cgv: %hvxn", CGV);
  527.   printf ("cgu: %hvxn", CGU);
  528. #endif
  529.  return;
  530. }
  531. void
  532. altivec_yuv2packedX (SwsContext *c,
  533.        int16_t *lumFilter, int16_t **lumSrc, int lumFilterSize,
  534.        int16_t *chrFilter, int16_t **chrSrc, int chrFilterSize,
  535.        uint8_t *dest, int dstW, int dstY)
  536. {
  537.   int i,j;
  538.   short tmp __attribute__((aligned (16)));
  539.   short *p;
  540.   short *f;
  541.   vector signed short X,X0,X1,Y0,U0,V0,Y1,U1,V1,U,V;
  542.   vector signed short R0,G0,B0,R1,G1,B1;
  543.   vector unsigned char R,G,B,pels[3];
  544.   vector unsigned char *out,*nout;
  545.   vector signed short   RND = (vector signed short)(1<<3);
  546.   vector unsigned short SCL = (vector unsigned short)(4);
  547.   unsigned long scratch[16] __attribute__ ((aligned (16)));
  548.   vector signed short *vYCoeffsBank, *vCCoeffsBank;
  549.   vector signed short *YCoeffs, *CCoeffs;
  550.   vYCoeffsBank = malloc (sizeof (vector signed short)*lumFilterSize*dstW);
  551.   vCCoeffsBank = malloc (sizeof (vector signed short)*chrFilterSize*dstW);
  552.   for (i=0;i<lumFilterSize*dstW;i++) {
  553.     tmp = c->vLumFilter[i];
  554.     p = &vYCoeffsBank[i];
  555.     for (j=0;j<8;j++)
  556.       p[j] = tmp;
  557.   }
  558.   for (i=0;i<chrFilterSize*dstW;i++) {
  559.     tmp = c->vChrFilter[i];
  560.     p = &vCCoeffsBank[i];
  561.     for (j=0;j<8;j++)
  562.       p[j] = tmp;
  563.   }
  564.   YCoeffs = vYCoeffsBank+dstY*lumFilterSize;
  565.   CCoeffs = vCCoeffsBank+dstY*chrFilterSize;
  566.   out = (vector unsigned char *)dest;
  567.   for(i=0; i<dstW; i+=16){
  568.     Y0 = RND;
  569.     Y1 = RND;
  570.     /* extract 16 coeffs from lumSrc */
  571.     for(j=0; j<lumFilterSize; j++) {
  572.       X0 = vec_ld (0,  &lumSrc[j][i]);
  573.       X1 = vec_ld (16, &lumSrc[j][i]);
  574.       Y0 = vec_mradds (X0, YCoeffs[j], Y0);
  575.       Y1 = vec_mradds (X1, YCoeffs[j], Y1);
  576.     }
  577.     U = RND;
  578.     V = RND;
  579.     /* extract 8 coeffs from U,V */
  580.     for(j=0; j<chrFilterSize; j++) {
  581.       X  = vec_ld (0, &chrSrc[j][i/2]);
  582.       U  = vec_mradds (X, CCoeffs[j], U);
  583.       X  = vec_ld (0, &chrSrc[j][i/2+2048]);
  584.       V  = vec_mradds (X, CCoeffs[j], V);
  585.     }
  586.     /* scale and clip signals */
  587.     Y0 = vec_sra (Y0, SCL);
  588.     Y1 = vec_sra (Y1, SCL);
  589.     U  = vec_sra (U,  SCL);
  590.     V  = vec_sra (V,  SCL);
  591.     Y0 = vec_clip (Y0);
  592.     Y1 = vec_clip (Y1);
  593.     U  = vec_clip (U);
  594.     V  = vec_clip (V);
  595.     /* now we have
  596.       Y0= y0 y1 y2 y3 y4 y5 y6 y7     Y1= y8 y9 y10 y11 y12 y13 y14 y15
  597.       U= u0 u1 u2 u3 u4 u5 u6 u7      V= v0 v1 v2 v3 v4 v5 v6 v7
  598.       Y0= y0 y1 y2 y3 y4 y5 y6 y7    Y1= y8 y9 y10 y11 y12 y13 y14 y15
  599.       U0= u0 u0 u1 u1 u2 u2 u3 u3    U1= u4 u4 u5 u5 u6 u6 u7 u7
  600.       V0= v0 v0 v1 v1 v2 v2 v3 v3    V1= v4 v4 v5 v5 v6 v6 v7 v7
  601.     */
  602.     U0 = vec_mergeh (U,U);
  603.     V0 = vec_mergeh (V,V);
  604.     U1 = vec_mergel (U,U);
  605.     V1 = vec_mergel (V,V);
  606.     cvtyuvtoRGB (c, Y0,U0,V0,&R0,&G0,&B0);
  607.     cvtyuvtoRGB (c, Y1,U1,V1,&R1,&G1,&B1);
  608.     R  = vec_packclp (R0,R1);
  609.     G  = vec_packclp (G0,G1);
  610.     B  = vec_packclp (B0,B1);
  611.     out_rgba (R,G,B,out);
  612.   }
  613.   if (i < dstW) {
  614.     i -= 16;
  615.     Y0 = RND;
  616.     Y1 = RND;
  617.     /* extract 16 coeffs from lumSrc */
  618.     for(j=0; j<lumFilterSize; j++) {
  619.       X0 = vec_ld (0,  &lumSrc[j][i]);
  620.       X1 = vec_ld (16, &lumSrc[j][i]);
  621.       Y0 = vec_mradds (X0, YCoeffs[j], Y0);
  622.       Y1 = vec_mradds (X1, YCoeffs[j], Y1);
  623.     }
  624.     U = RND;
  625.     V = RND;
  626.     /* extract 8 coeffs from U,V */
  627.     for(j=0; j<chrFilterSize; j++) {
  628.       X  = vec_ld (0, &chrSrc[j][i/2]);
  629.       U  = vec_mradds (X, CCoeffs[j], U);
  630.       X  = vec_ld (0, &chrSrc[j][i/2+2048]);
  631.       V  = vec_mradds (X, CCoeffs[j], V);
  632.     }
  633.     /* scale and clip signals */
  634.     Y0 = vec_sra (Y0, SCL);
  635.     Y1 = vec_sra (Y1, SCL);
  636.     U  = vec_sra (U,  SCL);
  637.     V  = vec_sra (V,  SCL);
  638.     Y0 = vec_clip (Y0);
  639.     Y1 = vec_clip (Y1);
  640.     U  = vec_clip (U);
  641.     V  = vec_clip (V);
  642.     /* now we have
  643.        Y0= y0 y1 y2 y3 y4 y5 y6 y7     Y1= y8 y9 y10 y11 y12 y13 y14 y15
  644.        U= u0 u1 u2 u3 u4 u5 u6 u7      V= v0 v1 v2 v3 v4 v5 v6 v7
  645.        Y0= y0 y1 y2 y3 y4 y5 y6 y7    Y1= y8 y9 y10 y11 y12 y13 y14 y15
  646.        U0= u0 u0 u1 u1 u2 u2 u3 u3    U1= u4 u4 u5 u5 u6 u6 u7 u7
  647.        V0= v0 v0 v1 v1 v2 v2 v3 v3    V1= v4 v4 v5 v5 v6 v6 v7 v7
  648.     */
  649.     U0 = vec_mergeh (U,U);
  650.     V0 = vec_mergeh (V,V);
  651.     U1 = vec_mergel (U,U);
  652.     V1 = vec_mergel (V,V);
  653.     cvtyuvtoRGB (c, Y0,U0,V0,&R0,&G0,&B0);
  654.     cvtyuvtoRGB (c, Y1,U1,V1,&R1,&G1,&B1);
  655.     R  = vec_packclp (R0,R1);
  656.     G  = vec_packclp (G0,G1);
  657.     B  = vec_packclp (B0,B1);
  658.     nout = (vector unsigned char *)scratch;
  659.     out_rgba (R,G,B,nout);
  660.     memcpy (&((uint32_t*)dest)[i], scratch, (dstW-i)/4);
  661.   }
  662.   if (vYCoeffsBank) free (vYCoeffsBank);
  663.   if (vCCoeffsBank) free (vCCoeffsBank);
  664. }