Ignore:
Timestamp:
14 Jul 2015, 03:24:13 (9 years ago)
Author:
seregin
Message:

port rev 4257

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCu.cpp

    r1259 r1260  
    9292
    9393/**
    94  \param    uiMaxDepth    total number of allowable depth
    95  \param    uiMaxWidth    largest CU width
    96  \param    uiMaxHeight   largest CU height
     94 \param    uiMaxDepth      total number of allowable depth
     95 \param    uiMaxWidth      largest CU width
     96 \param    uiMaxHeight     largest CU height
     97 \param    chromaFormatIDC chroma format
    9798 */
    9899Void TDecCu::create( UInt uiMaxDepth, UInt uiMaxWidth, UInt uiMaxHeight, ChromaFormat chromaFormatIDC )
     
    146147// ====================================================================================================================
    147148
    148 /** \param    pcCU        pointer of CU data
    149  \param    ruiIsLast   last data?
     149/**
     150 Parse a CTU.
     151 \param    pCtu                      [in/out] pointer to CTU data structure
     152 \param    isLastCtuOfSliceSegment   [out]    true, if last CTU of the slice segment
    150153 */
    151154Void TDecCu::decodeCtu( TComDataCU* pCtu, Bool& isLastCtuOfSliceSegment )
     
    169172}
    170173
    171 /** \param    pcCU        pointer of CU data
     174/**
     175 Decoding process for a CTU.
     176 \param    pCtu                      [in/out] pointer to CTU data structure
    172177 */
    173178Void TDecCu::decompressCtu( TComDataCU* pCtu )
     
    180185// ====================================================================================================================
    181186
    182 /**decode end-of-slice flag
    183  * \param pcCU
    184  * \param uiAbsPartIdx
    185  * \param uiDepth
    186  * \returns Bool
    187  */
     187//! decode end-of-slice flag
    188188Bool TDecCu::xDecodeSliceEnd( TComDataCU* pcCU, UInt uiAbsPartIdx )
    189189{
     
    202202}
    203203
    204 /** decode CU block recursively
    205  * \param pcCU
    206  * \param uiAbsPartIdx
    207  * \param uiDepth
    208  * \returns Void
    209  */
    210 
     204//! decode CU block recursively
    211205Void TDecCu::xDecodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool &isLastCtuOfSliceSegment)
    212206{
     
    744738
    745739
    746 /** Function for deriving recontructed PU/CU chroma samples with QTree structure
    747  * \param pcCU pointer of current CU
    748  * \param uiTrDepth current tranform split depth
    749  * \param uiAbsPartIdx  part index
     740/** Function for deriving reconstructed PU/CU chroma samples with QTree structure
    750741 * \param pcRecoYuv pointer to reconstructed sample arrays
    751742 * \param pcPredYuv pointer to prediction sample arrays
    752743 * \param pcResiYuv pointer to residue sample arrays
     744 * \param chType    texture channel type (luma/chroma)
     745 * \param rTu       reference to transform data
    753746 *
    754  \ This function dervies recontructed PU/CU chroma samples with QTree recursive structure
     747 \ This function derives reconstructed PU/CU chroma samples with QTree recursive structure
    755748 */
    756749
     
    824817 * \param uiWidth CU width
    825818 * \param uiHeight CU height
    826  * \param ttText texture component type
     819 * \param compID colour component ID
    827820 * \returns Void
    828821 */
     
    866859
    867860/** Function for filling the PCM buffer of a CU using its reconstructed sample array
    868  * \param pcCU pointer to current CU
    869  * \param uiDepth CU Depth
    870  * \returns Void
     861 * \param pCU   pointer to current CU
     862 * \param depth CU Depth
    871863 */
    872864Void TDecCu::xFillPCMBuffer(TComDataCU* pCU, UInt depth)
Note: See TracChangeset for help on using the changeset viewer.