Home
last modified time | relevance | path

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

/external/webrtc/talk/media/base/
Dvideoframe.cc49 const uint8_t* src_u = GetUPlane(); in Write()
103 if (!GetYPlane() || !GetUPlane() || !GetVPlane()) { in CopyToPlanes()
110 GetUPlane(), GetUPitch(), in CopyToPlanes()
124 CopyToPlanes(dst->GetYPlane(), dst->GetUPlane(), dst->GetVPlane(), in CopyToFrame()
138 if (libyuv::ConvertFromI420(GetYPlane(), GetYPitch(), GetUPlane(), in ConvertToRgbBuffer()
159 if (!GetYPlane() || !GetUPlane() || !GetVPlane()) { in StretchToPlanes()
171 const uint8_t* src_u = GetUPlane(); in StretchToPlanes()
210 StretchToPlanes(dst->GetYPlane(), dst->GetUPlane(), dst->GetVPlane(), in StretchToFrame()
233 GetUPlane(), GetUPitch(), in SetToBlack()
Dvideoframe_unittest.h314 frame->GetUPlane()[stride_u * (y / 2) + x / 2] = in ConvertYuv422()
368 frame->GetUPlane()[stride_u * (y / 2) + x / 2] = in ConvertRgb()
486 IsPlaneEqual("u", frame.GetUPlane(), frame.GetUPitch(), u, upitch, in IsEqual()
502 frame2.GetUPlane(), frame2.GetUPitch(), in IsEqual()
520 frame2.GetUPlane() + vcrop * frame2.GetUPitch() / 2 in IsEqualWithCrop()
532 *frame.GetUPlane() == 128 && in IsBlack()
581 frame1.GetUPlane(), frame1.GetUPitch(), in ConstructI422()
600 frame1.GetUPlane(), frame1.GetUPitch(), in ConstructYuy2()
617 frame1.GetUPlane(), frame1.GetUPitch(), in ConstructYuy2Unaligned()
836 frame2.GetYPlane(), frame2.GetYPitch(), frame2.GetUPlane(), \
[all …]
Dvideoframe.h75 virtual const uint8_t* GetUPlane() const = 0;
78 virtual uint8_t* GetUPlane() = 0;
Dtestutils.cc327 const uint8_t* u0 = frame0->GetUPlane(); in VideoFrameEqual()
330 const uint8_t* u1 = frame1->GetUPlane(); in VideoFrameEqual()
Dfakevideorenderer.h137 const uint8_t* u_plane = frame->GetUPlane(); in CheckFrameColorYuv()
/external/webrtc/talk/media/webrtc/
Dwebrtcvideoframe.cc103 const uint8_t* WebRtcVideoFrame::GetUPlane() const { in GetUPlane() function in cricket::WebRtcVideoFrame
116 uint8_t* WebRtcVideoFrame::GetUPlane() { in GetUPlane() function in cricket::WebRtcVideoFrame
233 GetUPlane(), GetUPitch(), in Reset()
301 GetYPlane(), GetYPitch(), GetUPlane(), GetUPitch(), GetVPlane(), in GetCopyWithRotationApplied()
303 rotated_frame_->GetUPlane(), rotated_frame_->GetUPitch(), in GetCopyWithRotationApplied()
Dwebrtcvideoframe.h92 const uint8_t* GetUPlane() const override;
95 uint8_t* GetUPlane() override;
/external/webrtc/webrtc/api/objc/
DRTCVideoFrame.mm48 return const_frame->GetUPlane();
/external/webrtc/talk/app/webrtc/objc/
DRTCI420Frame.mm64 return const_frame->GetUPlane();
/external/webrtc/talk/app/webrtc/java/jni/
Dpeerconnection_jni.cc801 const_cast<uint8_t*>(frame->GetUPlane()), frame->GetChromaSize()); in CricketToJavaI420Frame()