Home | History | Annotate | Download | only in test

Lines Matching defs:stride

105  * @stride: stride of the input yuv frame
113 int32_t stride;
142 int height, int stride, char *fname)
162 pd[(i*stride>>2)+j] & 0xff, // b
163 (pd[(i*stride>>2)+j] >> 8) & 0xff, // g
164 (pd[(i*stride>>2)+j] >> 16) & 0xff, // r
165 (pd[(i*stride>>2)+j] >> 24) & 0xff); // a
250 * input_yuv_stride - y plane stride in input yuv file
251 * y_plane_stride - y plane stride in buffer memory
332 int32_t stride = 0;
399 "<stride> <offset> <format> \n");
408 input_yuv_stride = input_nv21[index].stride;
419 printf("filename=%s, full path=%s, width=%d, height=%d, stride=%d \n",
420 filename, filename_in, width, height, stride);
447 stride = width * 4;
448 stride = ALIGN(stride, 32);
449 rgb_size = stride * height;
458 printf("%s %d rgb buffer properties : w=%d, h=%d, stride=%d, size=%d \n",
459 __LINE__, width, height, stride, rgb_size);
500 dst_buffer.rgb_buffer.stride = stride;
522 width, height, stride, filename_out);