Home
last modified time | relevance | path

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

/external/webrtc/talk/media/base/
Dvideoframe.cc48 const uint8_t* src_y = GetYPlane(); in Write()
103 if (!GetYPlane() || !GetUPlane() || !GetVPlane()) { in CopyToPlanes()
109 return libyuv::I420Copy(GetYPlane(), GetYPitch(), 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()
170 const uint8_t* src_y = GetYPlane(); in StretchToPlanes()
210 StretchToPlanes(dst->GetYPlane(), dst->GetUPlane(), dst->GetVPlane(), in StretchToFrame()
232 return libyuv::I420Rect(GetYPlane(), GetYPitch(), in SetToBlack()
Dvideoframe_unittest.h305 frame->GetYPlane()[stride_y * y + x] = quad1[y1_pos]; in ConvertYuv422()
307 frame->GetYPlane()[stride_y * y + x + 1] = quad1[y2_pos]; in ConvertYuv422()
358 frame->GetYPlane()[stride_y * y + x] = yuv[0][0]; in ConvertRgb()
360 frame->GetYPlane()[stride_y * y + x + 1] = yuv[1][0]; in ConvertRgb()
363 frame->GetYPlane()[stride_y * (y + 1) + x] = yuv[2][0]; in ConvertRgb()
365 frame->GetYPlane()[stride_y * (y + 1) + x + 1] = yuv[3][0]; in ConvertRgb()
427 return !frame.GetYPlane(); in IsNull()
483 IsPlaneEqual("y", frame.GetYPlane(), frame.GetYPitch(), y, ypitch, in IsEqual()
501 frame2.GetYPlane(), frame2.GetYPitch(), in IsEqual()
517 frame2.GetYPlane() + vcrop * frame2.GetYPitch() in IsEqualWithCrop()
[all …]
Dvideoframe.h74 virtual const uint8_t* GetYPlane() const = 0;
77 virtual uint8_t* GetYPlane() = 0;
Dtestutils.cc326 const uint8_t* y0 = frame0->GetYPlane(); in VideoFrameEqual()
329 const uint8_t* y1 = frame1->GetYPlane(); in VideoFrameEqual()
Dfakevideorenderer.h122 const uint8_t* y_plane = frame->GetYPlane(); in CheckFrameColorYuv()
/external/webrtc/talk/media/webrtc/
Dwebrtcvideoframe.cc99 const uint8_t* WebRtcVideoFrame::GetYPlane() const { in GetYPlane() function in cricket::WebRtcVideoFrame
111 uint8_t* WebRtcVideoFrame::GetYPlane() { in GetYPlane() function in cricket::WebRtcVideoFrame
232 GetYPlane(), GetYPitch(), in Reset()
301 GetYPlane(), GetYPitch(), GetUPlane(), GetUPitch(), GetVPlane(), in GetCopyWithRotationApplied()
302 GetVPitch(), rotated_frame_->GetYPlane(), rotated_frame_->GetYPitch(), in GetCopyWithRotationApplied()
Dwebrtcvideoframe.h91 const uint8_t* GetYPlane() const override;
94 uint8_t* GetYPlane() override;
/external/webrtc/webrtc/api/objc/
DRTCVideoFrame.mm43 return const_frame->GetYPlane();
/external/webrtc/talk/app/webrtc/objc/
DRTCI420Frame.mm59 return const_frame->GetYPlane();
/external/webrtc/talk/app/webrtc/java/jni/
Dpeerconnection_jni.cc798 jni()->NewDirectByteBuffer(const_cast<uint8_t*>(frame->GetYPlane()), in CricketToJavaI420Frame()