HomeSort by relevance Sort by last modified time
    Searched full:captured_frame_ (Results 1 - 8 of 8) sorted by null

  /external/webrtc/talk/media/webrtc/
webrtcvideoframefactory_unittest.cc 44 captured_frame_.fourcc = cricket::FOURCC_I420;
45 captured_frame_.pixel_width = 1;
46 captured_frame_.pixel_height = 1;
47 captured_frame_.time_stamp = 5678;
48 captured_frame_.rotation = frame_rotation;
49 captured_frame_.width = frame_width;
50 captured_frame_.height = frame_height;
51 captured_frame_.data_size =
54 captured_frame_buffer_.reset(new uint8_t[captured_frame_.data_size]);
56 memset(captured_frame_buffer_.get(), 0, captured_frame_.data_size)
113 cricket::CapturedFrame captured_frame_; member in class:WebRtcVideoFrameFactoryTest
    [all...]
  /external/webrtc/talk/app/webrtc/
androidvideocapturer.cc 50 captured_frame_.pixel_height = 1;
51 captured_frame_.pixel_width = 1;
52 captured_frame_.data = nullptr;
53 captured_frame_.data_size = cricket::CapturedFrame::kUnknownDataSize;
54 captured_frame_.fourcc = static_cast<uint32_t>(cricket::FOURCC_ANY);
64 captured_frame_.width = buffer->width();
65 captured_frame_.height = buffer->height();
66 captured_frame_.time_stamp = time_stamp_in_ns;
67 captured_frame_.rotation = static_cast<webrtc::VideoRotation>(rotation);
72 captured_frame_.width = 0
126 cricket::CapturedFrame captured_frame_; member in class:webrtc::AndroidVideoCapturer::FrameFactory
    [all...]
  /external/webrtc/webrtc/video/
video_capture_input.cc 108 captured_frame_.ShallowCopy(incoming_frame);
111 overuse_detector_->FrameCaptured(captured_frame_.width(),
112 captured_frame_.height(),
113 captured_frame_.render_time_ms());
136 if (!captured_frame_.IsZeroSize()) {
137 deliver_frame = captured_frame_;
138 captured_frame_.Reset();
video_capture_input.h 84 VideoFrame captured_frame_ GUARDED_BY(capture_cs_.get());
  /external/webrtc/talk/media/devices/
yuvframescapturer.cc 111 delete[] static_cast<char*>(captured_frame_.data);
119 captured_frame_.data = new char[frame_data_size_];
120 captured_frame_.fourcc = FOURCC_IYUV;
121 captured_frame_.pixel_height = 1;
122 captured_frame_.pixel_width = 1;
123 captured_frame_.width = width_;
124 captured_frame_.height = height_;
125 captured_frame_.data_size = frame_data_size_;
181 SignalFrameCaptured(this, &captured_frame_);
186 memmove(captured_frame_.data, buffer, frame_data_size_)
    [all...]
filevideocapturer.cc 174 delete[] static_cast<char*>(captured_frame_.data);
320 captured_frame_.time_stamp =
322 SignalFrameCaptured(this, &captured_frame_);
331 rtc::StreamResult result = ReadFrameHeader(&captured_frame_);
342 result = ReadFrameHeader(&captured_frame_);
350 if (frame_buffer_size_ < captured_frame_.data_size) {
351 frame_buffer_size_ = captured_frame_.data_size;
352 delete[] static_cast<char*>(captured_frame_.data);
353 captured_frame_.data = new char[frame_buffer_size_];
356 if (rtc::SR_SUCCESS != video_file_.Read(captured_frame_.data
    [all...]
filevideocapturer.h 139 return &captured_frame_;
147 CapturedFrame captured_frame_; member in class:cricket::FileVideoCapturer
148 // The number of bytes allocated buffer for captured_frame_.data.
yuvframescapturer.h 82 CapturedFrame captured_frame_; member in class:cricket::YuvFramesCapturer

Completed in 359 milliseconds