Home | History | Annotate | Download | only in src
      1 /* ----------------------------------------------------------------
      2  *
      3  *
      4  * File Name:  armVCM4P10_DequantTables.c
      5  * OpenMAX DL: v1.0.2
      6  * Revision:   9641
      7  * Date:       Thursday, February 7, 2008
      8  *
      9  * (c) Copyright 2007-2008 ARM Limited. All Rights Reserved.
     10  *
     11  *
     12  *
     13  * H.264 inverse quantize tables
     14  *
     15  */
     16 
     17 #include "omxtypes.h"
     18 #include "armOMX.h"
     19 #include "omxVC.h"
     20 #include "armVC.h"
     21 
     22 
     23 const OMX_U8 armVCM4P10_PosToVCol4x4[16] =
     24 {
     25     0, 2, 0, 2,
     26     2, 1, 2, 1,
     27     0, 2, 0, 2,
     28     2, 1, 2, 1
     29 };
     30 
     31 const OMX_U8 armVCM4P10_PosToVCol2x2[4] =
     32 {
     33     0, 2,
     34     2, 1
     35 };
     36 
     37 const OMX_U8 armVCM4P10_VMatrix[6][3] =
     38 {
     39     { 10, 16, 13 },
     40     { 11, 18, 14 },
     41     { 13, 20, 16 },
     42     { 14, 23, 18 },
     43     { 16, 25, 20 },
     44     { 18, 29, 23 }
     45 };
     46