• Home
  • Raw
  • Download

Lines Matching refs:height

30                     int height) {  in TransposePlane()  argument
31 int i = height; in TransposePlane()
108 int height) { in RotatePlane90() argument
112 src += src_stride * (height - 1); in RotatePlane90()
114 TransposePlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane90()
123 int height) { in RotatePlane270() argument
129 TransposePlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane270()
138 int height) { in RotatePlane180() argument
141 const uint8* src_bot = src + src_stride * (height - 1); in RotatePlane180()
142 uint8* dst_bot = dst + dst_stride * (height - 1); in RotatePlane180()
143 int half_height = (height + 1) >> 1; in RotatePlane180()
234 int height) { in TransposeUV() argument
235 int i = height; in TransposeUV()
309 int height) { in RotateUV90() argument
310 src += src_stride * (height - 1); in RotateUV90()
314 height); in RotateUV90()
325 int height) { in RotateUV270() argument
332 height); in RotateUV270()
344 int height) { in RotateUV180() argument
365 dst_a += dst_stride_a * (height - 1); in RotateUV180()
366 dst_b += dst_stride_b * (height - 1); in RotateUV180()
368 for (i = 0; i < height; ++i) { in RotateUV180()
382 int height, in RotatePlane() argument
384 if (!src || width <= 0 || height == 0 || !dst) { in RotatePlane()
389 if (height < 0) { in RotatePlane()
390 height = -height; in RotatePlane()
391 src = src + (height - 1) * src_stride; in RotatePlane()
398 CopyPlane(src, src_stride, dst, dst_stride, width, height); in RotatePlane()
401 RotatePlane90(src, src_stride, dst, dst_stride, width, height); in RotatePlane()
404 RotatePlane270(src, src_stride, dst, dst_stride, width, height); in RotatePlane()
407 RotatePlane180(src, src_stride, dst, dst_stride, width, height); in RotatePlane()
429 int height, in I420Rotate() argument
432 int halfheight = (height + 1) >> 1; in I420Rotate()
433 if (!src_y || !src_u || !src_v || width <= 0 || height == 0 || !dst_y || in I420Rotate()
439 if (height < 0) { in I420Rotate()
440 height = -height; in I420Rotate()
441 halfheight = (height + 1) >> 1; in I420Rotate()
442 src_y = src_y + (height - 1) * src_stride_y; in I420Rotate()
455 dst_v, dst_stride_v, width, height); in I420Rotate()
457 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
464 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
471 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in I420Rotate()
495 int height, in NV12ToI420Rotate() argument
498 int halfheight = (height + 1) >> 1; in NV12ToI420Rotate()
499 if (!src_y || !src_uv || width <= 0 || height == 0 || !dst_y || !dst_u || in NV12ToI420Rotate()
505 if (height < 0) { in NV12ToI420Rotate()
506 height = -height; in NV12ToI420Rotate()
507 halfheight = (height + 1) >> 1; in NV12ToI420Rotate()
508 src_y = src_y + (height - 1) * src_stride_y; in NV12ToI420Rotate()
519 width, height); in NV12ToI420Rotate()
521 RotatePlane90(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in NV12ToI420Rotate()
526 RotatePlane270(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in NV12ToI420Rotate()
531 RotatePlane180(src_y, src_stride_y, dst_y, dst_stride_y, width, height); in NV12ToI420Rotate()