Home
last modified time | relevance | path

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

/device/generic/goldfish/camera/fake-pipeline2/
DSensor.cpp436 uint32_t rCount, gCount, bCount; in captureRGBA() local
441 bCount = pixel[Scene::B] * scale64x; in captureRGBA()
445 *px++ = bCount < 255*64 ? bCount / 64 : 255; in captureRGBA()
466 uint32_t rCount, gCount, bCount; in captureRGB() local
471 bCount = pixel[Scene::B] * scale64x; in captureRGB()
475 *px++ = bCount < 255*64 ? bCount / 64 : 255; in captureRGB()
510 int32_t rCount, gCount, bCount; in captureNV21() local
517 bCount = pixel[Scene::B] * scale64x; in captureNV21()
518 bCount = bCount < saturationPoint ? bCount : saturationPoint; in captureNV21()
522 rgbToY[2] * bCount) / scaleOutSq; in captureNV21()
[all …]