Lines Matching defs:width
207 int VirtualScreen::GetJpgQualityValue(int32_t width, int32_t height) const
209 long long pixCount = static_cast<long long>(width) * static_cast<long long>(height);
292 void VirtualScreen::RgbToJpg(unsigned char* data, const int32_t width, const int32_t height)
294 if (width < 1 || height < 1) {
295 FLOG("VirtualScreenImpl::RgbToJpg the width or height is invalid value");
302 jpeg.image_width = width;
307 jpeg_set_quality(&jpeg, GetJpgQualityValue(width, height), TRUE);
310 int rowStride = width * jpgPix;
355 void VirtualScreen::SetCurrentResolution(int32_t width, int32_t height)
357 currentWidth = width;