Home
last modified time | relevance | path

Searched refs:pRefPixMap (Results 1 – 10 of 10) sorted by relevance

/third_party/openh264/codec/processing/src/scrolldetection/
DScrollDetection.cpp40 EResult CScrollDetection::Process (int32_t iType, SPixMap* pSrcPixMap, SPixMap* pRefPixMap) { in Process() argument
41 if (pRefPixMap->pPixel[0] == NULL || pSrcPixMap->pPixel[0] == NULL || in Process()
42 pRefPixMap->sRect.iRectWidth != pSrcPixMap->sRect.iRectWidth in Process()
43 || pRefPixMap->sRect.iRectHeight != pSrcPixMap->sRect.iRectHeight) { in Process()
48 ScrollDetectionWithoutMask (pSrcPixMap, pRefPixMap); in Process()
50 ScrollDetectionWithMask (pSrcPixMap, pRefPixMap); in Process()
71 void CScrollDetection::ScrollDetectionWithMask (SPixMap* pSrcPixMap, SPixMap* pRefPixMap) { in ScrollDetectionWithMask() argument
87 …ScrollDetectionCore (pSrcPixMap, pRefPixMap, iWidth, iHeight, iStartX, iStartY, m_sScrollDetection… in ScrollDetectionWithMask()
91 void CScrollDetection::ScrollDetectionWithoutMask (SPixMap* pSrcPixMap, SPixMap* pRefPixMap) { in ScrollDetectionWithoutMask() argument
108 …ScrollDetectionCore (pSrcPixMap, pRefPixMap, iWidth, iHeight, iStartX, iStartY, m_sScrollDetection… in ScrollDetectionWithoutMask()
DScrollDetection.h57 EResult Process (int32_t iType, SPixMap* pSrcPixMap, SPixMap* pRefPixMap);
62 void ScrollDetectionWithMask (SPixMap* pSrcPixMap, SPixMap* pRefPixMap);
63 void ScrollDetectionWithoutMask (SPixMap* pSrcPixMap, SPixMap* pRefPixMap);
DScrollDetectionFuncs.cpp110 void ScrollDetectionCore (SPixMap* pSrcPixMap, SPixMap* pRefPixMap, int32_t iWidth, int32_t iHeight, in ScrollDetectionCore() argument
116 int32_t iPicHeight = pRefPixMap->sRect.iRectHeight; in ScrollDetectionCore()
122 pYRef = (uint8_t*)pRefPixMap->pPixel[0]; in ScrollDetectionCore()
124 iYStride = pRefPixMap->iStride[0]; in ScrollDetectionCore()
DScrollDetectionFuncs.h58 void ScrollDetectionCore (SPixMap* pSrcPixMap, SPixMap* pRefPixMap, int32_t iWidth, int32_t iHeight,
/third_party/openh264/codec/processing/src/complexityanalysis/
DComplexityAnalysis.cpp51 EResult CComplexityAnalysis::Process (int32_t iType, SPixMap* pSrcPixMap, SPixMap* pRefPixMap) { in Process() argument
56 AnalyzeFrameComplexityViaSad (pSrcPixMap, pRefPixMap); in Process()
59 AnalyzeGomComplexityViaSad (pSrcPixMap, pRefPixMap); in Process()
62 AnalyzeGomComplexityViaVar (pSrcPixMap, pRefPixMap); in Process()
97 void CComplexityAnalysis::AnalyzeFrameComplexityViaSad (SPixMap* pSrcPixMap, SPixMap* pRefPixMap) { in AnalyzeFrameComplexityViaSad() argument
104 …_sComplexityAnalysisParam.iFrameComplexity = GetFrameSadExcludeBackground (pSrcPixMap, pRefPixMap); in AnalyzeFrameComplexityViaSad()
108 int32_t CComplexityAnalysis::GetFrameSadExcludeBackground (SPixMap* pSrcPixMap, SPixMap* pRefPixMap in GetFrameSadExcludeBackground() argument
171 void CComplexityAnalysis::AnalyzeGomComplexityViaSad (SPixMap* pSrcPixMap, SPixMap* pRefPixMap) { in AnalyzeGomComplexityViaSad() argument
220 void CComplexityAnalysis::AnalyzeGomComplexityViaVar (SPixMap* pSrcPixMap, SPixMap* pRefPixMap) { in AnalyzeGomComplexityViaVar() argument
/third_party/openh264/codec/processing/src/backgrounddetection/
DBackgroundDetection.cpp63 EResult CBackgroundDetection::Process (int32_t iType, SPixMap* pSrcPixMap, SPixMap* pRefPixMap) { in Process() argument
66 if (pSrcPixMap == NULL || pRefPixMap == NULL) in Process()
72 m_BgdParam.pRef[0] = (uint8_t*)pRefPixMap->pPixel[0]; in Process()
73 m_BgdParam.pRef[1] = (uint8_t*)pRefPixMap->pPixel[1]; in Process()
74 m_BgdParam.pRef[2] = (uint8_t*)pRefPixMap->pPixel[2]; in Process()
/third_party/openh264/codec/processing/src/scenechangedetection/
DSceneChangeDetection.h215 EResult Process (int32_t iType, SPixMap* pSrcPixMap, SPixMap* pRefPixMap) { in Process() argument
222 m_sLocalParam.pRefY = (uint8_t*)pRefPixMap->pPixel[0]; in Process()
224 m_sLocalParam.iRefStride = pRefPixMap->iStride[0]; in Process()
/third_party/openh264/codec/processing/src/adaptivequantization/
DAdaptiveQuantization.cpp57 EResult CAdaptiveQuantization::Process (int32_t iType, SPixMap* pSrcPixMap, SPixMap* pRefPixMap) { in Process() argument
83 pRefFrameY = (uint8_t*)pRefPixMap->pPixel[0]; in Process()
86 iRefStride = pRefPixMap->iStride[0]; in Process()
/third_party/openh264/codec/processing/src/vaacalc/
Dvaacalculation.cpp114 EResult CVAACalculation::Process (int32_t iType, SPixMap* pSrcPixMap, SPixMap* pRefPixMap) { in Process() argument
116 uint8_t* pRefData = (uint8_t*)pRefPixMap->pPixel[0]; in Process()
Dvaacalculation.h156 EResult Process (int32_t iType, SPixMap* pCurPixMap, SPixMap* pRefPixMap);