Home | History | Annotate | Download | only in webrtc

Lines Matching refs:capture_id

458   int GetCaptureChannelId(int capture_id) const {
459 WEBRTC_ASSERT_CAPTURER(capture_id);
460 return capturers_.find(capture_id)->second->channel_id();
462 bool GetCaptureDenoising(int capture_id) const {
463 WEBRTC_ASSERT_CAPTURER(capture_id);
464 return capturers_.find(capture_id)->second->denoising();
466 int64 GetCaptureLastTimestamp(int capture_id) const {
467 WEBRTC_ASSERT_CAPTURER(capture_id);
468 return capturers_.find(capture_id)->second->last_capture_time();
822 (int& capture_id, webrtc::ViEExternalCapture*& capture)) {
831 capture_id = last_capturer_;
836 WEBRTC_FUNC(ReleaseCaptureDevice, (const int capture_id)) {
837 WEBRTC_CHECK_CAPTURER(capture_id);
838 delete capturers_[capture_id];
839 capturers_.erase(capture_id);
842 WEBRTC_FUNC(ConnectCaptureDevice, (const int capture_id,
845 WEBRTC_CHECK_CAPTURER(capture_id);
846 channels_[channel]->capture_id_ = capture_id;
847 capturers_[capture_id]->set_channel_id(channel);
852 int capture_id = channels_[channel]->capture_id_;
853 WEBRTC_CHECK_CAPTURER(capture_id);
855 capturers_[capture_id]->set_channel_id(-1);
1225 WEBRTC_FUNC(EnableDenoising, (const int capture_id, const bool denoising)) {
1226 WEBRTC_CHECK_CAPTURER(capture_id);
1227 capturers_[capture_id]->set_denoising(denoising);