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. #define DI_DISABLE
  12.  
  13. #include "DNDI.inc"
  14.  
  15. #undef  nY_NUM_OF_ROWS
  16. #define nY_NUM_OF_ROWS         8                                 // Number of Y rows per block
  17. #undef  nUV_NUM_OF_ROWS
  18. #define nUV_NUM_OF_ROWS        8                                 // Number of U/V rows per block
  19.  
  20. #undef   nSMPL_RESP_LEN
  21. #define  nSMPL_RESP_LEN        nSMPL_RESP_LEN_DN_PA              // Set the Number of GRFs in DNDI response
  22. #undef   nDPW_BLOCK_SIZE_DN
  23. #define  nDPW_BLOCK_SIZE_DN    nBLOCK_WIDTH_32+nBLOCK_HEIGHT_8   // DN Curr Block Size for Write is 32x8
  24. #undef   nDPW_BLOCK_SIZE_HIST
  25. #define  nDPW_BLOCK_SIZE_HIST  nBLOCK_WIDTH_4+nBLOCK_HEIGHT_2    // HIST Block Size for Write is 4x2
  26.  
  27. ////////////////////////////////////// Run the DN Algorithm ///////////////////////////////////////
  28. #include "DNDI_COMMAND.asm"
  29.  
  30. ////////////////////////////////////// Save the History Data for Next Run /////////////////////////
  31. #include "DNDI_Hist_Save.asm"
  32.  
  33. ////////////////////////////////////// Pack and Save the DN Curr Frame for Next Run ///////////////
  34. add (4)     pCF_Y_OFFSET<1>:uw    ubDEST_CF_OFFSET<4;4,1>:ub    npDN_YUV:w
  35. $for (0; <nY_NUM_OF_ROWS; 1) {
  36.     mov (16)    r[pCF_Y_OFFSET,  %1*32]<2>:ub   ubRESP(nNODI_LUMA_OFFSET,%1*16)<16;16,1>       // copy line of Y
  37. }
  38. $for (0; <nUV_NUM_OF_ROWS; 1) {
  39.     mov (8)     r[pCF_U_OFFSET,  %1*32]<4>:ub   ubRESP(nNODI_CHROMA_OFFSET,%1*16+1)<16;8,2>    // copy line of U
  40.     mov (8)     r[pCF_V_OFFSET,  %1*32]<4>:ub   ubRESP(nNODI_CHROMA_OFFSET,%1*16)<16;8,2>      // copy line of V
  41. }
  42.  
  43. shl (1)     rMSGSRC.0<1>:ud     wORIX<0;1,0>:w     1:w       // X origin * 2 (422 output)
  44. mov (1)     rMSGSRC.1<1>:ud     wORIY<0;1,0>:w               // Y origin
  45. mov (1)     rMSGSRC.2<1>:ud     nDPW_BLOCK_SIZE_DN:ud        // block width and height (32x8)
  46. mov (8)     mMSGHDR_DN<1>:ud    rMSGSRC<8;8,1>:ud            // message header  
  47.  
  48. $for(0; <nY_NUM_OF_ROWS; 2) {
  49.         mov (16) mudMSGHDR_DN(1+%1)<1>  udDN_YUV(%1)REGION(8,1)    // Move DN Curr to MRF
  50. }
  51. send (8)    dNULLREG    mMSGHDR_DN   udDUMMY_NULL    nDATAPORT_WRITE    nDPMW_MSGDSC+nDPMW_MSG_LEN_PA_DN_NODI+nBI_DESTINATION_YUV:ud    
  52.  
  53.  
  54.  
  55.