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. // Module name: Expansion.inc
  12. // Number of U/V rows per block definition
  13. #undef  nUV_NUM_OF_ROWS
  14. #ifdef EXPAND_9x5
  15.         #define nUV_NUM_OF_ROWS     6
  16. #else
  17.         #define nUV_NUM_OF_ROWS     8
  18. #endif
  19.  
  20. // Source/destination region definitions
  21. #undef uwDEST_U
  22. #undef uwDEST_V
  23. #if (nSRC_REGION==nREGION_1)
  24.         #define uwDEST_U          uwTOP_U
  25.         #define uwDEST_V          uwTOP_V
  26. #elif (nSRC_REGION==nREGION_2)
  27.         #define uwDEST_U          uwBOT_U
  28.         #define uwDEST_V          uwBOT_V
  29. #endif
  30.  
  31. // End of Expansion.inc
  32.