Changeset 1260 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 14 Jul 2015, 03:24:13 (10 years ago)
- Location:
- branches/SHM-dev/source/Lib/TLibDecoder
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1259 r1260 2408 2408 // ==================================================================================================================== 2409 2409 2410 /** parse explicit wp tables 2411 * \param TComSlice* pcSlice 2412 * \returns Void 2413 */ 2410 //! parse explicit wp tables 2414 2411 Void TDecCavlc::xParsePredWeightTable( TComSlice* pcSlice, const TComSPS *sps ) 2415 2412 { -
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) -
branches/SHM-dev/source/Lib/TLibDecoder/TDecEntropy.cpp
r1259 r1260 610 610 611 611 612 /** decode coefficients 613 * \param pcCU 614 * \param uiAbsPartIdx 615 * \param uiDepth 616 * \param uiWidth 617 * \param uiHeight 618 * \returns Void 619 */ 612 //! decode coefficients 620 613 Void TDecEntropy::decodeCoeff( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, Bool& bCodeDQP, Bool& isChromaQpAdjCoded ) 621 614 { -
branches/SHM-dev/source/Lib/TLibDecoder/TDecSbac.cpp
r1259 r1260 292 292 293 293 /** Parsing of coeff_abs_level_remaing 294 * \param ruiSymbol reference to coeff_abs_level_remaing 295 * \param ruiParam reference to parameter 296 * \returns Void 294 * \param rSymbol reference to coeff_abs_level_remaing 295 * \param rParam reference to parameter 296 * \param useLimitedPrefixLength 297 * \param channelType 297 298 */ 298 299 #if RExt__DECODER_DEBUG_BIT_STATISTICS … … 1138 1139 * \param width Block width 1139 1140 * \param height Block height 1140 * \param eTType plane type / luminance or chrominance1141 * \param component chroma compinent ID 1141 1142 * \param uiScanIdx scan type (zig-zag, hor, ver) 1142 1143 *
Note: See TracChangeset for help on using the changeset viewer.