Lines Matching defs:pixel
730 * s->param->channels; /* bits per pixel */
766 * (is_gray_16(s) ? 3 : s->param->channels); /* bits per pixel */
1086 * line | pixel[0] | pixel[1] | ... | pixel[w-1]
1096 uint16_t pixel;
1111 /* process rgb or gray pixel */
1117 pixel = 0;
1124 pixel += src[ic + c * n + wx * c * m];
1127 dst[ic] = pixel / (scale * scale);
1133 /* next pixel */