Home
last modified time | relevance | path

Searched refs:m_pSampleBuffer (Results 1 – 2 of 2) sorted by relevance

/third_party/openh264/codec/processing/src/downsample/
Ddownsample.cpp48 WelsMemset(m_pSampleBuffer,0,sizeof(m_pSampleBuffer)); in CDownsampling()
57 m_pSampleBuffer[i][0] = (uint8_t*)WelsMalloc (MAX_SAMPLE_WIDTH * MAX_SAMPLE_HEIGHT); in AllocateSampleBuffer()
58 if (!m_pSampleBuffer[i][0]) in AllocateSampleBuffer()
60 m_pSampleBuffer[i][1] = (uint8_t*)WelsMalloc (MAX_SAMPLE_WIDTH * MAX_SAMPLE_HEIGHT / 4); in AllocateSampleBuffer()
61 if (!m_pSampleBuffer[i][1]) in AllocateSampleBuffer()
63 m_pSampleBuffer[i][2] = (uint8_t*)WelsMalloc (MAX_SAMPLE_WIDTH * MAX_SAMPLE_HEIGHT / 4); in AllocateSampleBuffer()
64 if (!m_pSampleBuffer[i][2]) in AllocateSampleBuffer()
75 WelsFree (m_pSampleBuffer[i][0]); in FreeSampleBuffer()
76 m_pSampleBuffer[i][0] = NULL; in FreeSampleBuffer()
77 WelsFree (m_pSampleBuffer[i][1]); in FreeSampleBuffer()
[all …]
Ddownsample.h195 uint8_t *m_pSampleBuffer[2][3]; variable