Home
last modified time | relevance | path

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

/external/webrtc/talk/media/base/
Dvideoframe.cc54 const int32_t y_pitch = GetYPitch(); in Write()
86 const size_t y_size = GetHeight() * GetYPitch(); in CopyToBuffer()
93 GetYPitch(), GetUPitch(), GetVPitch()); in CopyToBuffer()
109 return libyuv::I420Copy(GetYPlane(), GetYPitch(), in CopyToPlanes()
125 dst->GetYPitch(), dst->GetUPitch(), dst->GetVPitch()); in CopyToFrame()
138 if (libyuv::ConvertFromI420(GetYPlane(), GetYPitch(), GetUPlane(), in ConvertToRgbBuffer()
189 src_y += iheight_offset * GetYPitch(); in StretchToPlanes()
197 GetYPitch(), GetUPitch(), GetVPitch(), in StretchToPlanes()
211 dst->GetYPitch(), dst->GetUPitch(), dst->GetVPitch(), in StretchToFrame()
232 return libyuv::I420Rect(GetYPlane(), GetYPitch(), in SetToBlack()
Dvideoframe_unittest.h299 int stride_y = frame->GetYPitch(); in ConvertYuv422()
343 int stride_y = frame->GetYPitch(); in ConvertRgb()
433 return !IsNull(frame) && frame.GetYPitch() >= static_cast<int32_t>(width) && in IsSize()
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()
519 frame2.GetYPitch(), in IsEqualWithCrop()
580 EXPECT_EQ(0, libyuv::I420ToI422(frame1.GetYPlane(), frame1.GetYPitch(), in ConstructI422()
599 EXPECT_EQ(0, libyuv::I420ToYUY2(frame1.GetYPlane(), frame1.GetYPitch(), in ConstructYuy2()
616 EXPECT_EQ(0, libyuv::I420ToYUY2(frame1.GetYPlane(), frame1.GetYPitch(), in ConstructYuy2Unaligned()
[all …]
Dtestutils.cc337 y0 += frame0->GetYPitch(); in VideoFrameEqual()
338 y1 += frame1->GetYPitch(); in VideoFrameEqual()
Dvideoframe.h81 virtual int32_t GetYPitch() const = 0;
Dfakevideorenderer.h124 int32_t y_pitch = frame->GetYPitch(); in CheckFrameColorYuv()
/external/webrtc/talk/media/webrtc/
Dwebrtcvideoframe.cc126 int32_t WebRtcVideoFrame::GetYPitch() const { in GetYPitch() 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.h97 int32_t GetYPitch() const override;
/external/webrtc/webrtc/api/objc/
DRTCVideoFrame.mm57 return _videoFrame->GetYPitch();
/external/webrtc/talk/app/webrtc/objc/
DRTCI420Frame.mm73 return _videoFrame->GetYPitch();
/external/webrtc/talk/app/webrtc/java/jni/
Dpeerconnection_jni.cc792 strides_array[0] = frame->GetYPitch(); in CricketToJavaI420Frame()
799 frame->GetYPitch() * frame->GetHeight()); in CricketToJavaI420Frame()