Lines Matching refs:height
30 int height) { in TransposePlane() argument
31 int i = height; in TransposePlane()
103 int height) { in RotatePlane90() argument
107 src += src_stride * (height - 1); in RotatePlane90()
109 TransposePlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane90()
118 int height) { in RotatePlane270() argument
124 TransposePlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane270()
133 int height) { in RotatePlane180() argument
136 const uint8_t* src_bot = src + src_stride * (height - 1); in RotatePlane180()
137 uint8_t* dst_bot = dst + dst_stride * (height - 1); in RotatePlane180()
138 int half_height = (height + 1) >> 1; in RotatePlane180()
229 int height) { in TransposeUV() argument
230 int i = height; in TransposeUV()
306 int height) { in RotateUV90() argument
307 src += src_stride * (height - 1); in RotateUV90()
311 height); in RotateUV90()
322 int height) { in RotateUV270() argument
329 height); in RotateUV270()
341 int height) { in RotateUV180() argument
366 dst_a += dst_stride_a * (height - 1); in RotateUV180()
367 dst_b += dst_stride_b * (height - 1); in RotateUV180()
369 for (i = 0; i < height; ++i) { in RotateUV180()
383 int height, in RotatePlane() argument
385 if (!src || width <= 0 || height == 0 || !dst) { in RotatePlane()
390 if (height < 0) { in RotatePlane()
391 height = -height; in RotatePlane()
392 src = src + (height - 1) * src_stride; in RotatePlane()
399 CopyPlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane()
402 RotatePlane90(src, src_stride, dst, dst_stride, width, height); in RotatePlane()
405 RotatePlane270(src, src_stride, dst, dst_stride, width, height); in RotatePlane()
408 RotatePlane180(src, src_stride, dst, dst_stride, width, height); in RotatePlane()
430 int height, in I420Rotate() argument
433 int halfheight = (height + 1) >> 1; in I420Rotate()
434 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I420Rotate()
440 if (height < 0) { in I420Rotate()
441 height = -height; in I420Rotate()
442 halfheight = (height + 1) >> 1; in I420Rotate()
443 src_y = src_y + (height - 1) * src_stride_y; in I420Rotate()
456 dst_v, dst_stride_v, width, height); in I420Rotate()
458 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
465 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
472 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
498 int height, in I444Rotate() argument
500 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I444Rotate()
506 if (height < 0) { in I444Rotate()
507 height = -height; in I444Rotate()
508 src_y = src_y + (height - 1) * src_stride_y; in I444Rotate()
509 src_u = src_u + (height - 1) * src_stride_u; in I444Rotate()
510 src_v = src_v + (height - 1) * src_stride_v; in I444Rotate()
519 CopyPlane(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
520 CopyPlane(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Rotate()
521 CopyPlane(src_v, src_stride_v, dst_v, dst_stride_v, width, height); in I444Rotate()
524 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
525 RotatePlane90(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Rotate()
526 RotatePlane90(src_v, src_stride_v, dst_v, dst_stride_v, width, height); in I444Rotate()
529 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
530 RotatePlane270(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Rotate()
531 RotatePlane270(src_v, src_stride_v, dst_v, dst_stride_v, width, height); in I444Rotate()
534 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I444Rotate()
535 RotatePlane180(src_u, src_stride_u, dst_u, dst_stride_u, width, height); in I444Rotate()
536 RotatePlane180(src_v, src_stride_v, dst_v, dst_stride_v, width, height); in I444Rotate()
556 int height, in NV12ToI420Rotate() argument
559 int halfheight = (height + 1) >> 1; in NV12ToI420Rotate()
560 if (!src_y || !src_uv || width <= 0 || height == 0 || !dst_y || !dst_u || in NV12ToI420Rotate()
566 if (height < 0) { in NV12ToI420Rotate()
567 height = -height; in NV12ToI420Rotate()
568 halfheight = (height + 1) >> 1; in NV12ToI420Rotate()
569 src_y = src_y + (height - 1) * src_stride_y; in NV12ToI420Rotate()
580 width, height); in NV12ToI420Rotate()
582 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in NV12ToI420Rotate()
587 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in NV12ToI420Rotate()
592 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in NV12ToI420Rotate()