Home | History | Annotate | Download | only in enc

Lines Matching defs:y_ptr

55 static int SmoothenBlock(const uint8_t* a_ptr, int a_stride, uint8_t* y_ptr,
60 uint8_t* luma_ptr = y_ptr;
74 luma_ptr = y_ptr;
116 uint8_t* y_ptr = pic->y;
121 if (a_ptr == NULL || y_ptr == NULL || u_ptr == NULL || v_ptr == NULL) {
127 if (SmoothenBlock(a_ptr + x, a_stride, y_ptr + x, y_stride,
130 values[0] = y_ptr[x];
135 Flatten(y_ptr + x, values[0], y_stride, SIZE);
143 SmoothenBlock(a_ptr + x, a_stride, y_ptr + x, y_stride,
147 y_ptr += SIZE * y_stride;
154 SmoothenBlock(a_ptr + x, a_stride, y_ptr + x, y_stride,
158 SmoothenBlock(a_ptr + x, a_stride, y_ptr + x, y_stride,
211 uint8_t* y_ptr = pic->y;
221 y_ptr[x] = BLEND(Y0, y_ptr[x], alpha);
248 y_ptr += pic->y_stride;