Searched refs:captured_frame_ (Results 1 – 6 of 6) sorted by relevance
84 delete[] static_cast<char*>(captured_frame_.data); in ~YuvFramesCapturer()92 captured_frame_.data = new char[frame_data_size_]; in Init()93 captured_frame_.fourcc = FOURCC_IYUV; in Init()94 captured_frame_.pixel_height = 1; in Init()95 captured_frame_.pixel_width = 1; in Init()96 captured_frame_.width = width_; in Init()97 captured_frame_.height = height_; in Init()98 captured_frame_.data_size = frame_data_size_; in Init()154 SignalFrameCaptured(this, &captured_frame_); in ReadFrame()159 memmove(captured_frame_.data, buffer, frame_data_size_); in ReadFrame()
171 delete[] static_cast<char*>(captured_frame_.data); in ~FileVideoCapturer()317 captured_frame_.time_stamp = kNumNanoSecsPerMilliSec * in ReadFrame()319 captured_frame_.elapsed_time = captured_frame_.time_stamp - start_time_ns_; in ReadFrame()320 SignalFrameCaptured(this, &captured_frame_); in ReadFrame()329 rtc::StreamResult result = ReadFrameHeader(&captured_frame_); in ReadFrame()340 result = ReadFrameHeader(&captured_frame_); in ReadFrame()348 if (frame_buffer_size_ < captured_frame_.data_size) { in ReadFrame()349 frame_buffer_size_ = captured_frame_.data_size; in ReadFrame()350 delete[] static_cast<char*>(captured_frame_.data); in ReadFrame()351 captured_frame_.data = new char[frame_buffer_size_]; in ReadFrame()[all …]
134 return &captured_frame_; in frame()142 CapturedFrame captured_frame_; variable
55 CapturedFrame captured_frame_; variable
350 captured_frame_.reset(video_frame.CloneFrame()); in OnIncomingCapturedFrame()352 if (captured_frame_ == NULL || captured_frame_->native_handle() != NULL) in OnIncomingCapturedFrame()353 captured_frame_.reset(new I420VideoFrame()); in OnIncomingCapturedFrame()354 captured_frame_->SwapFrame(&video_frame); in OnIncomingCapturedFrame()357 overuse_detector_->FrameCaptured(captured_frame_->width(), in OnIncomingCapturedFrame()358 captured_frame_->height()); in OnIncomingCapturedFrame()598 if (captured_frame_ == NULL) in SwapCapturedAndDeliverFrameIfAvailable()601 if (captured_frame_->native_handle() != NULL) { in SwapCapturedAndDeliverFrameIfAvailable()602 deliver_frame_.reset(captured_frame_.release()); in SwapCapturedAndDeliverFrameIfAvailable()606 if (captured_frame_->IsZeroSize()) in SwapCapturedAndDeliverFrameIfAvailable()[all …]
171 scoped_ptr<I420VideoFrame> captured_frame_; variable