HomeSort by relevance Sort by last modified time
    Searched defs:captured_frame (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/remoting/host/chromeos/
aura_desktop_capturer_unittest.cc 67 webrtc::DesktopFrame* captured_frame = NULL; local
70 SaveArg<0>(&captured_frame));
75 ASSERT_TRUE(captured_frame != NULL);
76 uint8_t* captured_data = captured_frame->data();
82 delete captured_frame;
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoframe_unittest.cc 41 cricket::CapturedFrame captured_frame; local
42 captured_frame.fourcc = cricket::FOURCC_I420;
43 captured_frame.pixel_width = 1;
44 captured_frame.pixel_height = 1;
45 captured_frame.elapsed_time = 1234;
46 captured_frame.time_stamp = 5678;
47 captured_frame.rotation = 0;
48 captured_frame.width = frame_width;
49 captured_frame.height = frame_height;
50 captured_frame.data_size = (frame_width * frame_height)
    [all...]
  /external/chromium_org/content/renderer/media/
video_source_handler_unittest.cc 77 scoped_refptr<media::VideoFrame> captured_frame = local
79 captured_frame->set_timestamp(ts);
82 handler_->DeliverFrameForTesting(&reader, captured_frame);
84 // Compare |frame| to |captured_frame|.
90 EXPECT_EQ(captured_frame->data(media::VideoFrame::kYPlane),
  /external/chromium_org/remoting/host/
cast_video_capturer_adapter.cc 44 cricket::CapturedFrame captured_frame; local
45 captured_frame.width = owned_frame->size().width();
46 captured_frame.height = owned_frame->size().height();
48 captured_frame.elapsed_time = (current_time - start_time_).InMicroseconds() *
50 captured_frame.time_stamp =
52 captured_frame.data = owned_frame->data();
56 captured_frame.data_size =
57 (captured_frame.width * webrtc::DesktopFrame::kBytesPerPixel * 8 + 7) /
58 8 * captured_frame.height;
59 captured_frame.fourcc = cricket::FOURCC_ARGB
    [all...]
  /external/chromium_org/content/renderer/media/webrtc/
webrtc_video_capturer_adapter.cc 100 cricket::CapturedFrame captured_frame; local
101 captured_frame.width = frame->natural_size().width();
102 captured_frame.height = frame->natural_size().height();
104 captured_frame.elapsed_time =
107 captured_frame.time_stamp = frame->timestamp().InMicroseconds() *
109 captured_frame.pixel_height = 1;
110 captured_frame.pixel_width = 1;
120 captured_frame.data = buffer_;
121 captured_frame.data_size = buffer_size_;
122 captured_frame.fourcc = cricket::FOURCC_I420
    [all...]

Completed in 79 milliseconds