178e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar/*
278e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar * Copyright (C) 2007-2008 ARM Limited
378e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar *
478e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar * Licensed under the Apache License, Version 2.0 (the "License");
578e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar * you may not use this file except in compliance with the License.
678e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar * You may obtain a copy of the License at
778e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar *
878e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar *      http://www.apache.org/licenses/LICENSE-2.0
978e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar *
1078e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar * Unless required by applicable law or agreed to in writing, software
1178e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar * distributed under the License is distributed on an "AS IS" BASIS,
1278e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1378e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar * See the License for the specific language governing permissions and
1478e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar * limitations under the License.
1578e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar *
1678e52bfac041d71ce53b5b13c2abf78af742b09dLajos Molnar */
170c1bc742181ded4930842b46e9507372f0b1b963James Dong/**
180c1bc742181ded4930842b46e9507372f0b1b963James Dong *
190c1bc742181ded4930842b46e9507372f0b1b963James Dong * File Name:  omxVCM4P2_QuantIntra_I.c
200c1bc742181ded4930842b46e9507372f0b1b963James Dong * OpenMAX DL: v1.0.2
210c1bc742181ded4930842b46e9507372f0b1b963James Dong * Revision:   9641
220c1bc742181ded4930842b46e9507372f0b1b963James Dong * Date:       Thursday, February 7, 2008
230c1bc742181ded4930842b46e9507372f0b1b963James Dong *
240c1bc742181ded4930842b46e9507372f0b1b963James Dong *
250c1bc742181ded4930842b46e9507372f0b1b963James Dong *
260c1bc742181ded4930842b46e9507372f0b1b963James Dong *
270c1bc742181ded4930842b46e9507372f0b1b963James Dong * Description:
280c1bc742181ded4930842b46e9507372f0b1b963James Dong * Contains modules for intra Quantization
290c1bc742181ded4930842b46e9507372f0b1b963James Dong *
300c1bc742181ded4930842b46e9507372f0b1b963James Dong */
310c1bc742181ded4930842b46e9507372f0b1b963James Dong
320c1bc742181ded4930842b46e9507372f0b1b963James Dong#include "omxtypes.h"
330c1bc742181ded4930842b46e9507372f0b1b963James Dong#include "armOMX.h"
340c1bc742181ded4930842b46e9507372f0b1b963James Dong#include "omxVC.h"
350c1bc742181ded4930842b46e9507372f0b1b963James Dong
360c1bc742181ded4930842b46e9507372f0b1b963James Dong#include "armCOMM.h"
370c1bc742181ded4930842b46e9507372f0b1b963James Dong/**
380c1bc742181ded4930842b46e9507372f0b1b963James Dong * Function:  omxVCM4P2_QuantIntra_I   (6.2.4.4.2)
390c1bc742181ded4930842b46e9507372f0b1b963James Dong *
400c1bc742181ded4930842b46e9507372f0b1b963James Dong * Description:
410c1bc742181ded4930842b46e9507372f0b1b963James Dong * Performs quantization on intra block coefficients. This function supports
420c1bc742181ded4930842b46e9507372f0b1b963James Dong * bits_per_pixel == 8.
430c1bc742181ded4930842b46e9507372f0b1b963James Dong *
440c1bc742181ded4930842b46e9507372f0b1b963James Dong * Input Arguments:
450c1bc742181ded4930842b46e9507372f0b1b963James Dong *
460c1bc742181ded4930842b46e9507372f0b1b963James Dong *   pSrcDst - pointer to the input intra block coefficients; must be aligned
470c1bc742181ded4930842b46e9507372f0b1b963James Dong *            on a 16-byte boundary.
480c1bc742181ded4930842b46e9507372f0b1b963James Dong *   QP - quantization parameter (quantizer_scale).
490c1bc742181ded4930842b46e9507372f0b1b963James Dong *   blockIndex - block index indicating the component type and position,
500c1bc742181ded4930842b46e9507372f0b1b963James Dong *            valid in the range 0 to 5, as defined in [ISO14496-2], subclause
510c1bc742181ded4930842b46e9507372f0b1b963James Dong *            6.1.3.8.
520c1bc742181ded4930842b46e9507372f0b1b963James Dong *   shortVideoHeader - binary flag indicating presence of
530c1bc742181ded4930842b46e9507372f0b1b963James Dong *            short_video_header; shortVideoHeader==1 selects linear intra DC
540c1bc742181ded4930842b46e9507372f0b1b963James Dong *            mode, and shortVideoHeader==0 selects non linear intra DC mode.
550c1bc742181ded4930842b46e9507372f0b1b963James Dong *
560c1bc742181ded4930842b46e9507372f0b1b963James Dong * Output Arguments:
570c1bc742181ded4930842b46e9507372f0b1b963James Dong *
580c1bc742181ded4930842b46e9507372f0b1b963James Dong *   pSrcDst - pointer to the output (quantized) interblock coefficients.
590c1bc742181ded4930842b46e9507372f0b1b963James Dong *            When shortVideoHeader==1, AC coefficients are saturated on the
600c1bc742181ded4930842b46e9507372f0b1b963James Dong *            interval [-127, 127], and DC coefficients are saturated on the
610c1bc742181ded4930842b46e9507372f0b1b963James Dong *            interval [1, 254].  When shortVideoHeader==0, AC coefficients
620c1bc742181ded4930842b46e9507372f0b1b963James Dong *            are saturated on the interval [-2047, 2047].
630c1bc742181ded4930842b46e9507372f0b1b963James Dong *
640c1bc742181ded4930842b46e9507372f0b1b963James Dong * Return Value:
650c1bc742181ded4930842b46e9507372f0b1b963James Dong *
660c1bc742181ded4930842b46e9507372f0b1b963James Dong *    OMX_Sts_NoErr - no error
670c1bc742181ded4930842b46e9507372f0b1b963James Dong *    OMX_Sts_BadArgErr - bad arguments:
680c1bc742181ded4930842b46e9507372f0b1b963James Dong *    -    pSrcDst is NULL.
690c1bc742181ded4930842b46e9507372f0b1b963James Dong *    -    blockIndex < 0 or blockIndex >= 10
700c1bc742181ded4930842b46e9507372f0b1b963James Dong *    -    QP <= 0 or QP >= 32.
710c1bc742181ded4930842b46e9507372f0b1b963James Dong *
720c1bc742181ded4930842b46e9507372f0b1b963James Dong */
730c1bc742181ded4930842b46e9507372f0b1b963James Dong
740c1bc742181ded4930842b46e9507372f0b1b963James DongOMXResult omxVCM4P2_QuantIntra_I(
750c1bc742181ded4930842b46e9507372f0b1b963James Dong     OMX_S16 * pSrcDst,
760c1bc742181ded4930842b46e9507372f0b1b963James Dong     OMX_U8 QP,
770c1bc742181ded4930842b46e9507372f0b1b963James Dong     OMX_INT blockIndex,
780c1bc742181ded4930842b46e9507372f0b1b963James Dong	 OMX_INT shortVideoHeader
790c1bc742181ded4930842b46e9507372f0b1b963James Dong )
800c1bc742181ded4930842b46e9507372f0b1b963James Dong{
810c1bc742181ded4930842b46e9507372f0b1b963James Dong
820c1bc742181ded4930842b46e9507372f0b1b963James Dong    /* Definitions and Initializations*/
830c1bc742181ded4930842b46e9507372f0b1b963James Dong    /* Initialized to remove compilation error */
840c1bc742181ded4930842b46e9507372f0b1b963James Dong    OMX_INT dcScaler = 0, coeffCount,fSign;
850c1bc742181ded4930842b46e9507372f0b1b963James Dong    OMX_INT maxClpAC, minClpAC;
860c1bc742181ded4930842b46e9507372f0b1b963James Dong
870c1bc742181ded4930842b46e9507372f0b1b963James Dong    /* Argument error checks */
880c1bc742181ded4930842b46e9507372f0b1b963James Dong    armRetArgErrIf(pSrcDst == NULL, OMX_Sts_BadArgErr);
890c1bc742181ded4930842b46e9507372f0b1b963James Dong    armRetArgErrIf(((blockIndex < 0) || (blockIndex >= 10)), OMX_Sts_BadArgErr);
900c1bc742181ded4930842b46e9507372f0b1b963James Dong    armRetArgErrIf(((QP <= 0) || (QP >= 32)), OMX_Sts_BadArgErr);
910c1bc742181ded4930842b46e9507372f0b1b963James Dong   /* One argument check is delayed until we have ascertained that  */
920c1bc742181ded4930842b46e9507372f0b1b963James Dong   /* pQMatrix is not NULL.                                         */
930c1bc742181ded4930842b46e9507372f0b1b963James Dong
940c1bc742181ded4930842b46e9507372f0b1b963James Dong
950c1bc742181ded4930842b46e9507372f0b1b963James Dong    /* Set the Clip Range based on SVH on/off */
960c1bc742181ded4930842b46e9507372f0b1b963James Dong    if(shortVideoHeader == 1)
970c1bc742181ded4930842b46e9507372f0b1b963James Dong    {
980c1bc742181ded4930842b46e9507372f0b1b963James Dong        maxClpAC = 127;
990c1bc742181ded4930842b46e9507372f0b1b963James Dong        minClpAC = -127;
1000c1bc742181ded4930842b46e9507372f0b1b963James Dong        dcScaler = 8;
1010c1bc742181ded4930842b46e9507372f0b1b963James Dong        /* Dequant the DC value, this applies to both the methods */
1020c1bc742181ded4930842b46e9507372f0b1b963James Dong        pSrcDst[0] = armIntDivAwayFromZero (pSrcDst[0], dcScaler);
1030c1bc742181ded4930842b46e9507372f0b1b963James Dong
1040c1bc742181ded4930842b46e9507372f0b1b963James Dong        /* Clip between 1 and 254 */
1050c1bc742181ded4930842b46e9507372f0b1b963James Dong        pSrcDst[0] = (OMX_S16) armClip (1, 254, pSrcDst[0]);
1060c1bc742181ded4930842b46e9507372f0b1b963James Dong    }
1070c1bc742181ded4930842b46e9507372f0b1b963James Dong    else
1080c1bc742181ded4930842b46e9507372f0b1b963James Dong    {
1090c1bc742181ded4930842b46e9507372f0b1b963James Dong        maxClpAC = 2047;
1100c1bc742181ded4930842b46e9507372f0b1b963James Dong        minClpAC = -2047;
1110c1bc742181ded4930842b46e9507372f0b1b963James Dong        /* Calculate the DC scaler value */
1120c1bc742181ded4930842b46e9507372f0b1b963James Dong        if ((blockIndex  < 4) || (blockIndex  > 5))
1130c1bc742181ded4930842b46e9507372f0b1b963James Dong        {
1140c1bc742181ded4930842b46e9507372f0b1b963James Dong            if (QP >= 1 && QP <= 4)
1150c1bc742181ded4930842b46e9507372f0b1b963James Dong            {
1160c1bc742181ded4930842b46e9507372f0b1b963James Dong                dcScaler = 8;
1170c1bc742181ded4930842b46e9507372f0b1b963James Dong            }
1180c1bc742181ded4930842b46e9507372f0b1b963James Dong            else if (QP >= 5 && QP <= 8)
1190c1bc742181ded4930842b46e9507372f0b1b963James Dong            {
1200c1bc742181ded4930842b46e9507372f0b1b963James Dong                dcScaler = 2 * QP;
1210c1bc742181ded4930842b46e9507372f0b1b963James Dong            }
1220c1bc742181ded4930842b46e9507372f0b1b963James Dong            else if (QP >= 9 && QP <= 24)
1230c1bc742181ded4930842b46e9507372f0b1b963James Dong            {
1240c1bc742181ded4930842b46e9507372f0b1b963James Dong                dcScaler = QP + 8;
1250c1bc742181ded4930842b46e9507372f0b1b963James Dong            }
1260c1bc742181ded4930842b46e9507372f0b1b963James Dong            else
1270c1bc742181ded4930842b46e9507372f0b1b963James Dong            {
1280c1bc742181ded4930842b46e9507372f0b1b963James Dong                dcScaler = (2 * QP) - 16;
1290c1bc742181ded4930842b46e9507372f0b1b963James Dong            }
1300c1bc742181ded4930842b46e9507372f0b1b963James Dong        }
1310c1bc742181ded4930842b46e9507372f0b1b963James Dong        else if (blockIndex < 6)
1320c1bc742181ded4930842b46e9507372f0b1b963James Dong        {
1330c1bc742181ded4930842b46e9507372f0b1b963James Dong            if (QP >= 1 && QP <= 4)
1340c1bc742181ded4930842b46e9507372f0b1b963James Dong            {
1350c1bc742181ded4930842b46e9507372f0b1b963James Dong                dcScaler = 8;
1360c1bc742181ded4930842b46e9507372f0b1b963James Dong            }
1370c1bc742181ded4930842b46e9507372f0b1b963James Dong            else if (QP >= 5 && QP <= 24)
1380c1bc742181ded4930842b46e9507372f0b1b963James Dong            {
1390c1bc742181ded4930842b46e9507372f0b1b963James Dong                dcScaler = (QP + 13)/2;
1400c1bc742181ded4930842b46e9507372f0b1b963James Dong            }
1410c1bc742181ded4930842b46e9507372f0b1b963James Dong            else
1420c1bc742181ded4930842b46e9507372f0b1b963James Dong            {
1430c1bc742181ded4930842b46e9507372f0b1b963James Dong                dcScaler = QP - 6;
1440c1bc742181ded4930842b46e9507372f0b1b963James Dong            }
1450c1bc742181ded4930842b46e9507372f0b1b963James Dong        }
1460c1bc742181ded4930842b46e9507372f0b1b963James Dong
1470c1bc742181ded4930842b46e9507372f0b1b963James Dong        /* Dequant the DC value, this applies to both the methods */
1480c1bc742181ded4930842b46e9507372f0b1b963James Dong        pSrcDst[0] = armIntDivAwayFromZero (pSrcDst[0], dcScaler);
1490c1bc742181ded4930842b46e9507372f0b1b963James Dong    }
1500c1bc742181ded4930842b46e9507372f0b1b963James Dong
1510c1bc742181ded4930842b46e9507372f0b1b963James Dong    /* Second Inverse quantisation method */
1520c1bc742181ded4930842b46e9507372f0b1b963James Dong    for (coeffCount = 1; coeffCount < 64; coeffCount++)
1530c1bc742181ded4930842b46e9507372f0b1b963James Dong    {
1540c1bc742181ded4930842b46e9507372f0b1b963James Dong        fSign =  armSignCheck (pSrcDst[coeffCount]);
1550c1bc742181ded4930842b46e9507372f0b1b963James Dong        pSrcDst[coeffCount] = armAbs(pSrcDst[coeffCount])/(2 * QP);
1560c1bc742181ded4930842b46e9507372f0b1b963James Dong        pSrcDst[coeffCount] *= fSign;
1570c1bc742181ded4930842b46e9507372f0b1b963James Dong
1580c1bc742181ded4930842b46e9507372f0b1b963James Dong        /* Clip */
1590c1bc742181ded4930842b46e9507372f0b1b963James Dong        pSrcDst[coeffCount] =
1600c1bc742181ded4930842b46e9507372f0b1b963James Dong        (OMX_S16) armClip (minClpAC, maxClpAC, pSrcDst[coeffCount]);
1610c1bc742181ded4930842b46e9507372f0b1b963James Dong    }
1620c1bc742181ded4930842b46e9507372f0b1b963James Dong    return OMX_Sts_NoErr;
1630c1bc742181ded4930842b46e9507372f0b1b963James Dong
1640c1bc742181ded4930842b46e9507372f0b1b963James Dong}
1650c1bc742181ded4930842b46e9507372f0b1b963James Dong
1660c1bc742181ded4930842b46e9507372f0b1b963James Dong/* End of file */
1670c1bc742181ded4930842b46e9507372f0b1b963James Dong
1680c1bc742181ded4930842b46e9507372f0b1b963James Dong
169