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

  /external/webrtc/talk/media/base/
videocapturer.cc 307 std::string VideoCapturer::ToString(const CapturedFrame* captured_frame) const {
308 std::string fourcc_name = GetFourccName(captured_frame->fourcc) + " ";
319 ss << fourcc_name << captured_frame->width << "x" << captured_frame->height;
344 const CapturedFrame* captured_frame) {
365 ComputeScale(captured_frame->width, captured_frame->height,
368 if (FOURCC_ARGB == captured_frame->fourcc &&
369 (scaled_width != captured_frame->width ||
370 scaled_height != captured_frame->height))
    [all...]
videocapturer.h 292 const CapturedFrame* captured_frame);
337 void UpdateStats(const CapturedFrame* captured_frame);
videoadapter_unittest.cc 95 const CapturedFrame* captured_frame) {
97 const int in_width = captured_frame->width;
98 const int in_height = abs(captured_frame->height);
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvideoframe_unittest.cc 65 cricket::CapturedFrame captured_frame; local
66 captured_frame.fourcc = cricket::FOURCC_I420;
67 captured_frame.pixel_width = 1;
68 captured_frame.pixel_height = 1;
69 captured_frame.time_stamp = 5678;
70 captured_frame.rotation = frame_rotation;
71 captured_frame.width = frame_width;
72 captured_frame.height = frame_height;
73 captured_frame.data_size = (frame_width * frame_height) +
76 new uint8_t[captured_frame.data_size])
    [all...]
webrtcvideoframefactory_unittest.cc 86 const cricket::CapturedFrame& captured_frame = get_captured_frame(); local
89 int new_width = captured_frame.width / 2;
90 int new_height = captured_frame.height / 2;
91 frame.reset(factory.CreateAliasedFrame(&captured_frame, new_width,
97 &captured_frame, new_width, new_height, new_width / 2, new_height / 2));
105 &captured_frame, new_width, new_height, new_width / 2, new_height / 2));
  /external/webrtc/talk/app/webrtc/
androidvideocapturer.cc 82 const cricket::CapturedFrame* captured_frame,
85 // Check that captured_frame is actually our frame.
86 RTC_CHECK(captured_frame == &captured_frame_);
91 captured_frame->time_stamp, captured_frame->rotation));

Completed in 250 milliseconds