Home
last modified time | relevance | path

Searched refs:m_pInput (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/video_capture/windows/
Dsink_filter_ds.cc379 m_pInput(NULL), in CaptureSinkFilter()
384 m_pInput = new CaptureInputPin(moduleId,NAME ("VideoCaptureInputPin"), in CaptureSinkFilter()
388 if (m_pInput == NULL || FAILED (* phr)) in CaptureSinkFilter()
399 delete m_pInput; in ~CaptureSinkFilter()
414 pPin = m_pInput; in GetPin()
432 if (m_pInput && m_pInput->IsConnected()) in Pause()
434 m_pInput->Active(); in Pause()
436 if (m_pInput && !m_pInput->IsConnected()) in Pause()
459 if (m_pInput) in Stop()
460 m_pInput->Inactive(); in Stop()
[all …]
Dsink_filter_ds.h94 CaptureInputPin * m_pInput; variable
/external/pdfium/core/fxcodec/codec/
Dfx_codec_flate.cpp118 const uint8_t* m_pInput; member in __anonc88c85550111::CLZWDecoder
166 m_pInput = src_buf; in Decode()
181 code = (m_pInput[byte_pos++] & ((1 << (8 - bit_pos)) - 1)) << bit_left; in Decode()
184 code |= m_pInput[byte_pos] >> (8 - bit_left); in Decode()
187 code |= m_pInput[byte_pos++] << bit_left; in Decode()
189 code |= m_pInput[byte_pos] >> (8 - bit_left); in Decode()