コード例 #1
0
 public void TwoD(Gst.Video.VideoScaler vscale, Gst.Video.VideoFormat format, int src_stride, int dest_stride, uint x, uint y, uint width, uint height)
 {
     TwoD(vscale, format, IntPtr.Zero, src_stride, IntPtr.Zero, dest_stride, x, y, width, height);
 }
コード例 #2
0
 public void TwoD(Gst.Video.VideoScaler vscale, Gst.Video.VideoFormat format, IntPtr src, int src_stride, IntPtr dest, int dest_stride, uint x, uint y, uint width, uint height)
 {
     gst_video_scaler_2d(Handle, vscale == null ? IntPtr.Zero : vscale.Handle, (int)format, src, src_stride, dest, dest_stride, x, y, width, height);
 }