Home | History | Annotate | Download | only in webrtc

Lines Matching refs:Capturer

46 #define WEBRTC_CHECK_CAPTURER(capturer) \
47 if (capturers_.find(capturer) == capturers_.end()) return -1;
49 #define WEBRTC_ASSERT_CAPTURER(capturer) \
50 ASSERT(capturers_.find(capturer) != capturers_.end());
58 // renderer for a channel or it is adding a renderer for a capturer.
345 class Capturer : public webrtc::ViEExternalCapture {
347 Capturer() : channel_id_(-1), denoising_(false),
421 for (std::map<int, Capturer*>::const_iterator iter = capturers_.begin();
423 Capturer* capturer = iter->second;
424 if (capturer->channel_id() == channel_id) {
425 return capturer->incoming_frame_num();
842 Capturer* cap = new Capturer();
1294 std::map<int, Capturer*> capturers_;