Home
last modified time | relevance | path

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

/frameworks/av/services/camera/virtualcamera/util/
DJpegUtil.cc129 const int inBufferHeight = gBuffer->getHeight(); in compress() local
131 if (inBufferWidth % k2DCTSIZE || (inBufferHeight % k2DCTSIZE)) { in compress()
135 __func__, inBufferWidth, inBufferHeight, DCTSIZE); in compress()
139 if (inBufferWidth < mWidth || inBufferHeight < mHeight) { in compress()
143 __func__, inBufferWidth, inBufferHeight, mWidth, mHeight); in compress()
148 const int cHeight = inBufferHeight / 2; in compress()
152 std::vector<JSAMPROW> yLines(inBufferHeight); in compress()
180 for (int i = 0; i < inBufferHeight; ++i) { in compress()