Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/components/base/
DSimpleC2Component.cpp286 int32_t yMult, b, g, r; in convertYUV420Planar16ToRGBA1010102() local
287 yMult = y00 * _y + 512; in convertYUV420Planar16ToRGBA1010102()
288 b = (yMult + u_b) / 1024; in convertYUV420Planar16ToRGBA1010102()
289 g = (yMult + v_g + u_g) / 1024; in convertYUV420Planar16ToRGBA1010102()
290 r = (yMult + v_r) / 1024; in convertYUV420Planar16ToRGBA1010102()
296 yMult = y01 * _y + 512; in convertYUV420Planar16ToRGBA1010102()
297 b = (yMult + u_b) / 1024; in convertYUV420Planar16ToRGBA1010102()
298 g = (yMult + v_g + u_g) / 1024; in convertYUV420Planar16ToRGBA1010102()
299 r = (yMult + v_r) / 1024; in convertYUV420Planar16ToRGBA1010102()
305 yMult = y10 * _y + 512; in convertYUV420Planar16ToRGBA1010102()
[all …]