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

  /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));

Completed in 80 milliseconds