Home
last modified time | relevance | path

Searched refs:numberValidComponents (Results 1 – 6 of 6) sorted by relevance

/dports/graphics/libbpg/libbpg-0.9.8/jctvc/TLibEncoder/
H A DTEncCavlc.cpp163 …const UInt numberValidComponents = getNumberValidComponents(pcPPS->getSPS()->getChromaFormatIdc()); in codePPS() local
184 …WRITE_SVLC( COMPONENT_Cb<numberValidComponents ? (pcPPS->getQpOffset(COMPONENT_Cb)) : 0, "pps_cb_… in codePPS()
185 …WRITE_SVLC( COMPONENT_Cr<numberValidComponents ? (pcPPS->getQpOffset(COMPONENT_Cr)) : 0, "pps_cr_… in codePPS()
187 …assert(numberValidComponents <= 3); // if more than 3 components (eg 4:4:4:4), then additional off… in codePPS()
720 const UInt numberValidComponents = getNumberValidComponents(format); in codeSliceHeader() local
1007 …if (numberValidComponents > COMPONENT_Cb) { WRITE_SVLC( pcSlice->getSliceChromaQpDelta(COMPONENT_C… in codeSliceHeader()
1008 …if (numberValidComponents > COMPONENT_Cr) { WRITE_SVLC( pcSlice->getSliceChromaQpDelta(COMPONENT_C… in codeSliceHeader()
1009 assert(numberValidComponents <= COMPONENT_Cr+1); in codeSliceHeader()
1329 const UInt numberValidComponents = getNumberValidComponents(format); in xCodePredWeightTable() local
1392 for ( Int j = COMPONENT_Cb ; j < numberValidComponents ; j++ ) in xCodePredWeightTable()
H A DTEncAnalyze.h114 const UInt numberValidComponents = getNumberValidComponents(chFmt); in calculateCombinedValues() local
116 for (UInt comp=0; comp<numberValidComponents; comp++) in calculateCombinedValues()
H A DTEncCu.cpp389 const UInt numberValidComponents = rpcBestCU->getPic()->getNumberValidComponents(); in xCompressCU() local
646 ((rpcBestCU->getCbf( 0, COMPONENT_Cb ) != 0) && (numberValidComponents > COMPONENT_Cb)) || in xCompressCU()
647 …((rpcBestCU->getCbf( 0, COMPONENT_Cr ) != 0) && (numberValidComponents > COMPONENT_Cr)) ) // avoi… in xCompressCU()
812 … || (rpcTempCU->getCbf(uiBlkIdx, COMPONENT_Cb) && (numberValidComponents > COMPONENT_Cb)) in xCompressCU()
813 … || (rpcTempCU->getCbf(uiBlkIdx, COMPONENT_Cr) && (numberValidComponents > COMPONENT_Cr)) ) ) in xCompressCU()
1555 const UInt numberValidComponents = getNumberValidComponents(format); in xFillPCMBuffer() local
1556 for (UInt componentIndex = 0; componentIndex < numberValidComponents; componentIndex++) in xFillPCMBuffer()
H A DTEncSearch.cpp896 for (UInt ch=COMPONENT_Cb; ch<numberValidComponents; ch++) in xEncSubdivCbfQT()
1971 const UInt numberValidComponents = getNumberValidComponents(format); in xRecurIntraChromaCodingQT() local
1999 for (UInt ch=COMPONENT_Cb; ch<numberValidComponents; ch++) in xRecurIntraChromaCodingQT()
2135 for(UInt ch=COMPONENT_Cb; ch<numberValidComponents; ch++) in xRecurIntraChromaCodingQT()
2143 for(UInt ch=COMPONENT_Cb; ch<numberValidComponents; ch++) in xRecurIntraChromaCodingQT()
2181 for (UInt ch=COMPONENT_Cb; ch<numberValidComponents; ch++) in xSetIntraResultChromaQT()
2306 const UInt numberValidComponents = getNumberValidComponents(chFmt); in estIntraPredQT() local
2520 for (UInt component = 0; component < numberValidComponents; component++) in estIntraPredQT()
2596 for (UInt component = 0; component < numberValidComponents; component++) in estIntraPredQT()
2615 for (UInt component = 0; component < numberValidComponents; component++) in estIntraPredQT()
[all …]
/dports/multimedia/vvdec/vvdec-1.1.2/source/Lib/CommonLib/
H A DTypeDef.h946 int numberValidComponents; member
957 numberValidComponents = 3; in reset()
/dports/graphics/libbpg/libbpg-0.9.8/jctvc/TLibCommon/
H A DTComDataCU.cpp1642 const UInt numberValidComponents = getPic()->getNumberValidComponents(); in getQtRootCbf() local
1644 || ((numberValidComponents > COMPONENT_Cb) && getCbf( uiIdx, COMPONENT_Cb, 0 )) in getQtRootCbf()
1645 || ((numberValidComponents > COMPONENT_Cr) && getCbf( uiIdx, COMPONENT_Cr, 0 )); in getQtRootCbf()