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

/external/chromium_org/third_party/webrtc/modules/video_capture/windows/
H A Dsink_filter_ds.cc393 m_pInput(NULL),
398 m_pInput = new CaptureInputPin(moduleId,NAME ("VideoCaptureInputPin"),
402 if (m_pInput == NULL || FAILED (* phr))
413 delete m_pInput;
428 pPin = m_pInput;
446 if (m_pInput && m_pInput->IsConnected())
448 m_pInput->Active();
450 if (m_pInput && !m_pInput
[all...]
H A Dsink_filter_ds.h94 CaptureInputPin * m_pInput; member in class:webrtc::videocapturemodule::CaptureSinkFilter
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_flate.cpp85 const FX_BYTE* m_pInput; member in class:CLZWDecoder
133 m_pInput = src_buf;
148 code = (m_pInput[byte_pos++] & ((1 << (8 - bit_pos)) - 1)) << bit_left;
151 code |= m_pInput[byte_pos] >> (8 - bit_left);
154 code |= m_pInput[byte_pos++] << bit_left;
156 code |= m_pInput[byte_pos] >> (8 - bit_left);

Completed in 171 milliseconds