rotate_common.cc 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright 2011 The LibYuv Project Authors. All rights reserved.
  3. *
  4. * Use of this source code is governed by a BSD-style license
  5. * that can be found in the LICENSE file in the root of the source
  6. * tree. An additional intellectual property rights grant can be found
  7. * in the file PATENTS. All contributing project authors may
  8. * be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #include "libyuv/row.h"
  11. #include "libyuv/rotate_row.h"
  12. #ifdef __cplusplus
  13. namespace libyuv {
  14. extern "C" {
  15. #endif
  16. void TransposeWx8_C(const uint8* src, int src_stride,
  17. uint8* dst, int dst_stride, int width) {
  18. int i;
  19. for (i = 0; i < width; ++i) {
  20. dst[0] = src[0 * src_stride];
  21. dst[1] = src[1 * src_stride];
  22. dst[2] = src[2 * src_stride];
  23. dst[3] = src[3 * src_stride];
  24. dst[4] = src[4 * src_stride];
  25. dst[5] = src[5 * src_stride];
  26. dst[6] = src[6 * src_stride];
  27. dst[7] = src[7 * src_stride];
  28. ++src;
  29. dst += dst_stride;
  30. }
  31. }
  32. void TransposeUVWx8_C(const uint8* src, int src_stride,
  33. uint8* dst_a, int dst_stride_a,
  34. uint8* dst_b, int dst_stride_b, int width) {
  35. int i;
  36. for (i = 0; i < width; ++i) {
  37. dst_a[0] = src[0 * src_stride + 0];
  38. dst_b[0] = src[0 * src_stride + 1];
  39. dst_a[1] = src[1 * src_stride + 0];
  40. dst_b[1] = src[1 * src_stride + 1];
  41. dst_a[2] = src[2 * src_stride + 0];
  42. dst_b[2] = src[2 * src_stride + 1];
  43. dst_a[3] = src[3 * src_stride + 0];
  44. dst_b[3] = src[3 * src_stride + 1];
  45. dst_a[4] = src[4 * src_stride + 0];
  46. dst_b[4] = src[4 * src_stride + 1];
  47. dst_a[5] = src[5 * src_stride + 0];
  48. dst_b[5] = src[5 * src_stride + 1];
  49. dst_a[6] = src[6 * src_stride + 0];
  50. dst_b[6] = src[6 * src_stride + 1];
  51. dst_a[7] = src[7 * src_stride + 0];
  52. dst_b[7] = src[7 * src_stride + 1];
  53. src += 2;
  54. dst_a += dst_stride_a;
  55. dst_b += dst_stride_b;
  56. }
  57. }
  58. void TransposeWxH_C(const uint8* src, int src_stride,
  59. uint8* dst, int dst_stride,
  60. int width, int height) {
  61. int i;
  62. for (i = 0; i < width; ++i) {
  63. int j;
  64. for (j = 0; j < height; ++j) {
  65. dst[i * dst_stride + j] = src[j * src_stride + i];
  66. }
  67. }
  68. }
  69. void TransposeUVWxH_C(const uint8* src, int src_stride,
  70. uint8* dst_a, int dst_stride_a,
  71. uint8* dst_b, int dst_stride_b,
  72. int width, int height) {
  73. int i;
  74. for (i = 0; i < width * 2; i += 2) {
  75. int j;
  76. for (j = 0; j < height; ++j) {
  77. dst_a[j + ((i >> 1) * dst_stride_a)] = src[i + (j * src_stride)];
  78. dst_b[j + ((i >> 1) * dst_stride_b)] = src[i + (j * src_stride) + 1];
  79. }
  80. }
  81. }
  82. #ifdef __cplusplus
  83. } // extern "C"
  84. } // namespace libyuv
  85. #endif