Remove unused event in video_capture_input.cc.

Review URL: https://codereview.webrtc.org/1331833003

Cr-Commit-Position: refs/heads/master@{#9921}
This commit is contained in:
mflodman
2015-09-10 22:50:43 -07:00
committed by Commit bot
parent d12140a68e
commit df1a171def
2 changed files with 0 additions and 3 deletions

View File

@ -44,7 +44,6 @@ VideoCaptureInput::VideoCaptureInput(ProcessThread* module_process_thread,
this,
"CaptureThread")),
capture_event_(*EventWrapper::Create()),
deliver_event_(*EventWrapper::Create()),
stop_(0),
last_captured_timestamp_(0),
delta_ntp_internal_ms_(
@ -69,7 +68,6 @@ VideoCaptureInput::~VideoCaptureInput() {
// Stop the camera input.
capture_thread_->Stop();
delete &capture_event_;
delete &deliver_event_;
}
void VideoCaptureInput::IncomingCapturedFrame(const VideoFrame& video_frame) {

View File

@ -82,7 +82,6 @@ class VideoCaptureInput : public webrtc::VideoCaptureInput {
rtc::scoped_ptr<ThreadWrapper> capture_thread_;
// TODO(pbos): scoped_ptr
EventWrapper& capture_event_;
EventWrapper& deliver_event_;
volatile int stop_;