/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
D | videoframe.cc | 49 const uint8* src_y = GetYPlane(); in Write() 92 return libyuv::I420Copy(GetYPlane(), GetYPitch(), in CopyToPlanes() 101 memcpy(dst_y, GetYPlane(), GetWidth() * GetHeight()); in CopyToPlanes() 114 CopyToPlanes(dst->GetYPlane(), dst->GetUPlane(), dst->GetVPlane(), in CopyToFrame() 123 if (!GetYPlane() || !GetUPlane() || !GetVPlane()) { in StretchToPlanes() 134 const uint8* src_y = GetYPlane(); in StretchToPlanes() 199 StretchToPlanes(dst->GetYPlane(), dst->GetUPlane(), dst->GetVPlane(), in StretchToFrame() 221 return libyuv::I420Rect(GetYPlane(), GetYPitch(), in SetToBlack() 230 memset(GetYPlane(), 16, GetWidth() * GetHeight()); in SetToBlack()
|
D | nullvideoframe.h | 51 virtual const uint8 *GetYPlane() const { return NULL; } in GetYPlane() function 54 virtual uint8 *GetYPlane() { return NULL; } in GetYPlane() function
|
D | videoframe_unittest.h | 273 frame->GetYPlane()[stride_y * y + x] = quad1[y1_pos]; in ConvertYuv422() 275 frame->GetYPlane()[stride_y * y + x + 1] = quad1[y2_pos]; in ConvertYuv422() 324 frame->GetYPlane()[stride_y * y + x] = yuv[0][0]; in ConvertRgb() 326 frame->GetYPlane()[stride_y * y + x + 1] = yuv[1][0]; in ConvertRgb() 329 frame->GetYPlane()[stride_y * (y + 1) + x] = yuv[2][0]; in ConvertRgb() 331 frame->GetYPlane()[stride_y * (y + 1) + x + 1] = yuv[3][0]; in ConvertRgb() 383 return !frame.GetYPlane(); in IsNull() 433 IsPlaneEqual("y", frame.GetYPlane(), frame.GetYPitch(), y, ypitch, in IsEqual() 451 frame2.GetYPlane(), frame2.GetYPitch(), in IsEqual() 467 frame2.GetYPlane() + vcrop * frame2.GetYPitch() in IsEqualWithCrop() [all …]
|
D | videoframe.h | 70 virtual const uint8 *GetYPlane() const = 0; 73 virtual uint8 *GetYPlane() = 0;
|
D | testutils.cc | 315 const uint8* y0 = frame0->GetYPlane(); in VideoFrameEqual() 318 const uint8* y1 = frame1->GetYPlane(); in VideoFrameEqual()
|
D | fakevideorenderer.h | 119 const uint8* y_plane = frame->GetYPlane(); in CheckFrameColorYuv()
|
D | videoadapter_unittest.cc | 377 EXPECT_NE(16, *adapted_frame->GetYPlane()); in TEST_F() 389 EXPECT_EQ(16, *adapted_frame->GetYPlane()); in TEST_F() 422 EXPECT_EQ(16, *adapted_frame->GetYPlane()); in TEST_F()
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
D | webrtctexturevideoframe.h | 55 virtual const uint8* GetYPlane() const; 58 virtual uint8* GetYPlane();
|
D | webrtctexturevideoframe.cc | 63 const uint8* WebRtcTextureVideoFrame::GetYPlane() const { in GetYPlane() function in cricket::WebRtcTextureVideoFrame 78 uint8* WebRtcTextureVideoFrame::GetYPlane() { in GetYPlane() function in cricket::WebRtcTextureVideoFrame
|
D | webrtcvideoframe.h | 81 virtual const uint8* GetYPlane() const; 84 virtual uint8* GetYPlane();
|
D | webrtcvideoframe.cc | 171 const uint8* WebRtcVideoFrame::GetYPlane() const { in GetYPlane() function in cricket::WebRtcVideoFrame 193 uint8* WebRtcVideoFrame::GetYPlane() { in GetYPlane() function in cricket::WebRtcVideoFrame 263 if (libyuv::ConvertFromI420(GetYPlane(), GetYPitch(), GetUPlane(), in ConvertToRgbBuffer() 340 uint8* y = GetYPlane(); in Reset()
|
D | webrtcvideoengine2.cc | 554 virtual const uint8* GetYPlane() const OVERRIDE { in GetYPlane() function in cricket::WebRtcVideoRenderFrame 564 virtual uint8* GetYPlane() OVERRIDE { in GetYPlane() function in cricket::WebRtcVideoRenderFrame 636 if (libyuv::ConvertFromI420(GetYPlane(), in ConvertToRgbBuffer() 1365 frame.GetYPlane(), in ConvertToI420VideoFrame()
|
D | webrtcvideoengine.cc | 3215 frame_i420.y_plane = const_cast<unsigned char*>(frame_out->GetYPlane()); in SendFrame()
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/ |
D | RTCI420Frame.mm | 58 return _videoFrame->GetYPlane();
|
/external/chromium_org/content/renderer/media/webrtc/ |
D | media_stream_remote_video_source.cc | 95 frame->GetYPlane(), frame->GetYPitch(), y_rows, video_frame.get()); in RenderFrame()
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/ |
D | peerconnection_jni.cc | 1160 const_cast<uint8*>(frame->GetYPlane()), in CricketToJavaI420Frame()
|