Home | History | Annotate | Download | only in yuv420sp2rgb

Lines Matching refs:nB

60 	int nR, nG, nB;
73 nB = *(pY + i * width + j);
76 cb(nB, nB, nB, &ctx);
97 // nB = (int)(1.164 * nY + 1.596 * nV);
99 nB = (int)(1192 * nY + 2066 * nU);
105 nB = min(262143, max(0, nB));
109 nB >>= 10; nB &= 0xff;
113 cb(nR, nG, nB, &ctx);