Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * All Video Processing kernels
  3.  * Copyright © <2010>, Intel Corporation.
  4.  *
  5.  * This program is licensed under the terms and conditions of the
  6.  * Eclipse Public License (EPL), version 1.0.  The full text of the EPL is at
  7.  * http://www.opensource.org/licenses/eclipse-1.0.php.
  8.  *
  9.  */
  10.  
  11.     shl (1) rMSGSRC.0<1>:ud     wORIX<0;1,0>:w            1:w  NODDCLR             // H. block origin need to be doubled
  12.     mov (1) rMSGSRC.1<1>:ud     wORIY<0;1,0>:w                 NODDCLR_NODDCHK    // Block origin
  13.     mov (1) rMSGSRC.2<1>:ud     nDPW_BLOCK_SIZE_DI:ud          NODDCHK             // Block width and height (32x8)
  14.    
  15.        
  16.         add (4) pCF_Y_OFFSET<1>:uw   ubDEST_CF_OFFSET<4;4,1>:ub   nDEST_YUV_REG*nGRFWIB:w    // Initial Y,U,V offset in YUV422 block
  17.  
  18.         // Pack 2nd field Y
  19.     $for(0; <nY_NUM_OF_ROWS; 1) {
  20.                 mov     (16) r[pCF_Y_OFFSET, %1*nGRFWIB]<2>       ubRESP(nDI_PREV_FRAME_LUMA_OFFSET,%1*16)
  21.     }
  22.         // Pack 1st field Y
  23.     $for(0; <nY_NUM_OF_ROWS; 1) {
  24.                 mov     (16) r[pCF_Y_OFFSET, %1+4*nGRFWIB]<2>       ubRESP(nDI_CURR_FRAME_LUMA_OFFSET,%1*16)
  25.     }
  26.         // Pack 2nd field U
  27.     $for(0; <nUV_NUM_OF_ROWS; 1) {
  28.         mov (8) r[pCF_U_OFFSET,   %1*nGRFWIB]<4>  ubRESP(nDI_PREV_FRAME_CHROMA_OFFSET,%1*16+1)<16;8,2>  //U pixels
  29.     }
  30.          // Pack 1st field U
  31.     $for(0; <nUV_NUM_OF_ROWS; 1) {
  32.         mov (8) r[pCF_U_OFFSET,   %1+4*nGRFWIB]<4>  ubRESP(nDI_CURR_FRAME_CHROMA_OFFSET,%1*16+1)<16;8,2>  //U pixels
  33.     }
  34.         // Pack 2nd field V
  35.     $for(0; <nUV_NUM_OF_ROWS; 1) {
  36.         mov (8) r[pCF_V_OFFSET,   %1*nGRFWIB]<4>  ubRESP(nDI_PREV_FRAME_CHROMA_OFFSET,%1*16)<16;8,2>  //Vpixels
  37.     }
  38.         // Packs1st field V
  39.     $for(0; <nUV_NUM_OF_ROWS; 1) {
  40.         mov (8) r[pCF_V_OFFSET,   %1+4*nGRFWIB]<4>  ubRESP(nDI_CURR_FRAME_CHROMA_OFFSET,%1*16)<16;8,2>  //Vpixels
  41.     }
  42.  
  43.     //save the previous frame
  44.     mov (8) mMSGHDR<1>:ud       rMSGSRC<8;8,1>:ud
  45.     $for(0; <4; 1) {
  46.             mov (8) mudMSGPAYLOAD(%1)<1>  udDEST_YUV(%1)REGION(8,1)
  47.     }
  48.     send (8)    dNULLREG    mMSGHDR   udDUMMY_NULL    nDATAPORT_WRITE    nDPMW_MSGDSC+nDPW_MSG_SIZE_DI+nBI_DESTINATION_1_YUV:ud
  49.  
  50.     //save the current frame
  51.     mov (8) mMSGHDR<1>:ud       rMSGSRC<8;8,1>:ud
  52.     $for(0; <4; 1) {
  53.             mov (8) mudMSGPAYLOAD(%1)<1>  udDEST_YUV(%1+4)REGION(8,1)
  54.     }
  55.     send (8)    dNULLREG    mMSGHDR   udDUMMY_NULL    nDATAPORT_WRITE    nDPMW_MSGDSC+nDPW_MSG_SIZE_DI+nBI_DESTINATION_2_YUV:ud
  56.        
  57.