Lines Matching refs:width
98 public void SetImageSize(int width, int height) in SetImageSize() argument
100 var result = VideoCapturer.SetImageSize(width, height); in SetImageSize()
106 if(result.Item1 != width || result.Item2 != height) in SetImageSize()
110 cropToSize = Tuple.Create(width, height); in SetImageSize()
177 …private static byte[] CompressRawToJpeg(byte[] input, int width, int height, int scale, int qualit… in CompressRawToJpeg() argument
189 if(crop != null && width > crop.Item1) in CompressRawToJpeg()
191 widthToSkip = (width - crop.Item1); in CompressRawToJpeg()
205 cinfo.Image_width = (width - widthToSkip) / scale; in CompressRawToJpeg()
222 int inputOffset = heightToSkipTop * width; in CompressRawToJpeg()
242 inputOffset += 3 * (scale - 1) * width; in CompressRawToJpeg()
261 public DecompressionResult(byte[] data, int width, int height) in DecompressionResult()
264 Width = width; in DecompressionResult()