Home
last modified time | relevance | path

Searched refs:GetUPlane (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/media/base/
Dvideoframe.cc50 const uint8* src_u = GetUPlane(); in Write()
93 GetUPlane(), GetUPitch(), in CopyToPlanes()
102 memcpy(dst_u, GetUPlane(), uv_size); in CopyToPlanes()
114 CopyToPlanes(dst->GetYPlane(), dst->GetUPlane(), dst->GetVPlane(), in CopyToFrame()
123 if (!GetYPlane() || !GetUPlane() || !GetVPlane()) { in StretchToPlanes()
135 const uint8* src_u = GetUPlane(); in StretchToPlanes()
199 StretchToPlanes(dst->GetYPlane(), dst->GetUPlane(), dst->GetVPlane(), in StretchToFrame()
222 GetUPlane(), GetUPitch(), in SetToBlack()
231 memset(GetUPlane(), 128, uv_size); in SetToBlack()
Dnullvideoframe.h52 virtual const uint8 *GetUPlane() const { return NULL; } in GetUPlane() function
55 virtual uint8 *GetUPlane() { return NULL; } in GetUPlane() function
Dvideoframe.h71 virtual const uint8 *GetUPlane() const = 0;
74 virtual uint8 *GetUPlane() = 0;
Dvideoframe_unittest.h282 frame->GetUPlane()[stride_u * (y / 2) + x / 2] = in ConvertYuv422()
334 frame->GetUPlane()[stride_u * (y / 2) + x / 2] = in ConvertRgb()
436 IsPlaneEqual("u", frame.GetUPlane(), frame.GetUPitch(), u, upitch, in IsEqual()
452 frame2.GetUPlane(), frame2.GetUPitch(), in IsEqual()
470 frame2.GetUPlane() + vcrop * frame2.GetUPitch() / 2 in IsEqualWithCrop()
482 *frame.GetUPlane() == 128 && in IsBlack()
531 frame1.GetUPlane(), frame1.GetUPitch(), in ConstructI422()
550 frame1.GetUPlane(), frame1.GetUPitch(), in ConstructYuy2()
567 frame1.GetUPlane(), frame1.GetUPitch(), in ConstructYuy2Unaligned()
828 frame2.GetUPlane(), frame2.GetUPitch(), \ in TEST_BYR()
[all …]
Dtestutils.cc316 const uint8* u0 = frame0->GetUPlane(); in VideoFrameEqual()
319 const uint8* u1 = frame1->GetUPlane(); in VideoFrameEqual()
Dfakevideorenderer.h134 const uint8* u_plane = frame->GetUPlane(); in CheckFrameColorYuv()
Dvideoadapter_unittest.cc378 EXPECT_NE(128, *adapted_frame->GetUPlane()); in TEST_F()
390 EXPECT_EQ(128, *adapted_frame->GetUPlane()); in TEST_F()
423 EXPECT_EQ(128, *adapted_frame->GetUPlane()); in TEST_F()
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtctexturevideoframe.h56 virtual const uint8* GetUPlane() const;
59 virtual uint8* GetUPlane();
Dwebrtctexturevideoframe.cc68 const uint8* WebRtcTextureVideoFrame::GetUPlane() const { in GetUPlane() function in cricket::WebRtcTextureVideoFrame
83 uint8* WebRtcTextureVideoFrame::GetUPlane() { in GetUPlane() function in cricket::WebRtcTextureVideoFrame
Dwebrtcvideoframe.h82 virtual const uint8* GetUPlane() const;
85 virtual uint8* GetUPlane();
Dwebrtcvideoframe.cc176 const uint8* WebRtcVideoFrame::GetUPlane() const { in GetUPlane() function in cricket::WebRtcVideoFrame
198 uint8* WebRtcVideoFrame::GetUPlane() { in GetUPlane() function in cricket::WebRtcVideoFrame
263 if (libyuv::ConvertFromI420(GetYPlane(), GetYPitch(), GetUPlane(), in ConvertToRgbBuffer()
342 uint8* u = GetUPlane(); in Reset()
Dwebrtcvideoengine2.cc557 virtual const uint8* GetUPlane() const OVERRIDE { in GetUPlane() function in cricket::WebRtcVideoRenderFrame
568 virtual uint8* GetUPlane() OVERRIDE { in GetUPlane() function in cricket::WebRtcVideoRenderFrame
638 GetUPlane(), in ConvertToRgbBuffer()
1367 frame.GetUPlane(), in ConvertToI420VideoFrame()
Dwebrtcvideoengine.cc3216 frame_i420.u_plane = const_cast<unsigned char*>(frame_out->GetUPlane()); in SendFrame()
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
DRTCI420Frame.mm62 return _videoFrame->GetUPlane();
/external/chromium_org/content/renderer/media/webrtc/
Dmedia_stream_remote_video_source.cc97 frame->GetUPlane(), frame->GetUPitch(), uv_rows, video_frame.get()); in RenderFrame()
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/
Dpeerconnection_jni.cc1163 const_cast<uint8*>(frame->GetUPlane()), frame->GetChromaSize()); in CricketToJavaI420Frame()