Home
last modified time | relevance | path

Searched refs:frame_i420 (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/video_capture/test/
Dvideo_capture_unittest.cc488 webrtc::I420VideoFrame frame_i420; in TEST_F() local
489 frame_i420.CopyFrame(test_frame_); in TEST_F()
492 capture_input_interface_->IncomingI420VideoFrame(&frame_i420, 0)); in TEST_F()
493 EXPECT_TRUE(capture_callback_.CompareLastFrame(frame_i420)); in TEST_F()
546 frame_i420.CopyFrame(aligned_test_frame); in TEST_F()
549 capture_input_interface_->IncomingI420VideoFrame(&frame_i420, 0)); in TEST_F()
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtcvideoengine.cc3212 webrtc::ViEVideoFrameI420 frame_i420; in SendFrame() local
3215 frame_i420.y_plane = const_cast<unsigned char*>(frame_out->GetYPlane()); in SendFrame()
3216 frame_i420.u_plane = const_cast<unsigned char*>(frame_out->GetUPlane()); in SendFrame()
3217 frame_i420.v_plane = const_cast<unsigned char*>(frame_out->GetVPlane()); in SendFrame()
3218 frame_i420.y_pitch = frame_out->GetYPitch(); in SendFrame()
3219 frame_i420.u_pitch = frame_out->GetUPitch(); in SendFrame()
3220 frame_i420.v_pitch = frame_out->GetVPitch(); in SendFrame()
3221 frame_i420.width = static_cast<uint16>(frame_out->GetWidth()); in SendFrame()
3222 frame_i420.height = static_cast<uint16>(frame_out->GetHeight()); in SendFrame()
3246 frame_i420, timestamp_ntp_ms) == 0; in SendFrame()