Changeset 1260 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder/TDecCu.cpp
- Timestamp:
- 14 Jul 2015, 03:24:13 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCu.cpp
r1259 r1260 92 92 93 93 /** 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 97 98 */ 98 99 Void TDecCu::create( UInt uiMaxDepth, UInt uiMaxWidth, UInt uiMaxHeight, ChromaFormat chromaFormatIDC ) … … 146 147 // ==================================================================================================================== 147 148 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 150 153 */ 151 154 Void TDecCu::decodeCtu( TComDataCU* pCtu, Bool& isLastCtuOfSliceSegment ) … … 169 172 } 170 173 171 /** \param pcCU pointer of CU data 174 /** 175 Decoding process for a CTU. 176 \param pCtu [in/out] pointer to CTU data structure 172 177 */ 173 178 Void TDecCu::decompressCtu( TComDataCU* pCtu ) … … 180 185 // ==================================================================================================================== 181 186 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 188 188 Bool TDecCu::xDecodeSliceEnd( TComDataCU* pcCU, UInt uiAbsPartIdx ) 189 189 { … … 202 202 } 203 203 204 /** decode CU block recursively 205 * \param pcCU 206 * \param uiAbsPartIdx 207 * \param uiDepth 208 * \returns Void 209 */ 210 204 //! decode CU block recursively 211 205 Void TDecCu::xDecodeCU( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool &isLastCtuOfSliceSegment) 212 206 { … … 744 738 745 739 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 750 741 * \param pcRecoYuv pointer to reconstructed sample arrays 751 742 * \param pcPredYuv pointer to prediction sample arrays 752 743 * \param pcResiYuv pointer to residue sample arrays 744 * \param chType texture channel type (luma/chroma) 745 * \param rTu reference to transform data 753 746 * 754 \ This function der vies recontructed PU/CU chroma samples with QTree recursive structure747 \ This function derives reconstructed PU/CU chroma samples with QTree recursive structure 755 748 */ 756 749 … … 824 817 * \param uiWidth CU width 825 818 * \param uiHeight CU height 826 * \param ttText texture component type819 * \param compID colour component ID 827 820 * \returns Void 828 821 */ … … 866 859 867 860 /** 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 871 863 */ 872 864 Void TDecCu::xFillPCMBuffer(TComDataCU* pCU, UInt depth)
Note: See TracChangeset for help on using the changeset viewer.