vp9_extend.c 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /*
  2. * Copyright (c) 2010 The WebM 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 "vpx_dsp/vpx_dsp_common.h"
  11. #include "vpx_mem/vpx_mem.h"
  12. #include "vpx_ports/mem.h"
  13. #include "vp9/common/vp9_common.h"
  14. #include "vp9/encoder/vp9_extend.h"
  15. static void copy_and_extend_plane(const uint8_t *src, int src_pitch,
  16. uint8_t *dst, int dst_pitch, int w, int h,
  17. int extend_top, int extend_left,
  18. int extend_bottom, int extend_right) {
  19. int i, linesize;
  20. // copy the left and right most columns out
  21. const uint8_t *src_ptr1 = src;
  22. const uint8_t *src_ptr2 = src + w - 1;
  23. uint8_t *dst_ptr1 = dst - extend_left;
  24. uint8_t *dst_ptr2 = dst + w;
  25. for (i = 0; i < h; i++) {
  26. memset(dst_ptr1, src_ptr1[0], extend_left);
  27. memcpy(dst_ptr1 + extend_left, src_ptr1, w);
  28. memset(dst_ptr2, src_ptr2[0], extend_right);
  29. src_ptr1 += src_pitch;
  30. src_ptr2 += src_pitch;
  31. dst_ptr1 += dst_pitch;
  32. dst_ptr2 += dst_pitch;
  33. }
  34. // Now copy the top and bottom lines into each line of the respective
  35. // borders
  36. src_ptr1 = dst - extend_left;
  37. src_ptr2 = dst + dst_pitch * (h - 1) - extend_left;
  38. dst_ptr1 = dst + dst_pitch * (-extend_top) - extend_left;
  39. dst_ptr2 = dst + dst_pitch * (h)-extend_left;
  40. linesize = extend_left + extend_right + w;
  41. for (i = 0; i < extend_top; i++) {
  42. memcpy(dst_ptr1, src_ptr1, linesize);
  43. dst_ptr1 += dst_pitch;
  44. }
  45. for (i = 0; i < extend_bottom; i++) {
  46. memcpy(dst_ptr2, src_ptr2, linesize);
  47. dst_ptr2 += dst_pitch;
  48. }
  49. }
  50. #if CONFIG_VP9_HIGHBITDEPTH
  51. static void highbd_copy_and_extend_plane(const uint8_t *src8, int src_pitch,
  52. uint8_t *dst8, int dst_pitch, int w,
  53. int h, int extend_top, int extend_left,
  54. int extend_bottom, int extend_right) {
  55. int i, linesize;
  56. uint16_t *src = CONVERT_TO_SHORTPTR(src8);
  57. uint16_t *dst = CONVERT_TO_SHORTPTR(dst8);
  58. // copy the left and right most columns out
  59. const uint16_t *src_ptr1 = src;
  60. const uint16_t *src_ptr2 = src + w - 1;
  61. uint16_t *dst_ptr1 = dst - extend_left;
  62. uint16_t *dst_ptr2 = dst + w;
  63. for (i = 0; i < h; i++) {
  64. vpx_memset16(dst_ptr1, src_ptr1[0], extend_left);
  65. memcpy(dst_ptr1 + extend_left, src_ptr1, w * sizeof(src_ptr1[0]));
  66. vpx_memset16(dst_ptr2, src_ptr2[0], extend_right);
  67. src_ptr1 += src_pitch;
  68. src_ptr2 += src_pitch;
  69. dst_ptr1 += dst_pitch;
  70. dst_ptr2 += dst_pitch;
  71. }
  72. // Now copy the top and bottom lines into each line of the respective
  73. // borders
  74. src_ptr1 = dst - extend_left;
  75. src_ptr2 = dst + dst_pitch * (h - 1) - extend_left;
  76. dst_ptr1 = dst + dst_pitch * (-extend_top) - extend_left;
  77. dst_ptr2 = dst + dst_pitch * (h)-extend_left;
  78. linesize = extend_left + extend_right + w;
  79. for (i = 0; i < extend_top; i++) {
  80. memcpy(dst_ptr1, src_ptr1, linesize * sizeof(src_ptr1[0]));
  81. dst_ptr1 += dst_pitch;
  82. }
  83. for (i = 0; i < extend_bottom; i++) {
  84. memcpy(dst_ptr2, src_ptr2, linesize * sizeof(src_ptr2[0]));
  85. dst_ptr2 += dst_pitch;
  86. }
  87. }
  88. #endif // CONFIG_VP9_HIGHBITDEPTH
  89. void vp9_copy_and_extend_frame(const YV12_BUFFER_CONFIG *src,
  90. YV12_BUFFER_CONFIG *dst) {
  91. // Extend src frame in buffer
  92. // Altref filtering assumes 16 pixel extension
  93. const int et_y = 16;
  94. const int el_y = 16;
  95. // Motion estimation may use src block variance with the block size up
  96. // to 64x64, so the right and bottom need to be extended to 64 multiple
  97. // or up to 16, whichever is greater.
  98. const int er_y =
  99. VPXMAX(src->y_width + 16, ALIGN_POWER_OF_TWO(src->y_width, 6)) -
  100. src->y_crop_width;
  101. const int eb_y =
  102. VPXMAX(src->y_height + 16, ALIGN_POWER_OF_TWO(src->y_height, 6)) -
  103. src->y_crop_height;
  104. const int uv_width_subsampling = (src->uv_width != src->y_width);
  105. const int uv_height_subsampling = (src->uv_height != src->y_height);
  106. const int et_uv = et_y >> uv_height_subsampling;
  107. const int el_uv = el_y >> uv_width_subsampling;
  108. const int eb_uv = eb_y >> uv_height_subsampling;
  109. const int er_uv = er_y >> uv_width_subsampling;
  110. #if CONFIG_VP9_HIGHBITDEPTH
  111. if (src->flags & YV12_FLAG_HIGHBITDEPTH) {
  112. highbd_copy_and_extend_plane(src->y_buffer, src->y_stride, dst->y_buffer,
  113. dst->y_stride, src->y_crop_width,
  114. src->y_crop_height, et_y, el_y, eb_y, er_y);
  115. highbd_copy_and_extend_plane(
  116. src->u_buffer, src->uv_stride, dst->u_buffer, dst->uv_stride,
  117. src->uv_crop_width, src->uv_crop_height, et_uv, el_uv, eb_uv, er_uv);
  118. highbd_copy_and_extend_plane(
  119. src->v_buffer, src->uv_stride, dst->v_buffer, dst->uv_stride,
  120. src->uv_crop_width, src->uv_crop_height, et_uv, el_uv, eb_uv, er_uv);
  121. return;
  122. }
  123. #endif // CONFIG_VP9_HIGHBITDEPTH
  124. copy_and_extend_plane(src->y_buffer, src->y_stride, dst->y_buffer,
  125. dst->y_stride, src->y_crop_width, src->y_crop_height,
  126. et_y, el_y, eb_y, er_y);
  127. copy_and_extend_plane(src->u_buffer, src->uv_stride, dst->u_buffer,
  128. dst->uv_stride, src->uv_crop_width, src->uv_crop_height,
  129. et_uv, el_uv, eb_uv, er_uv);
  130. copy_and_extend_plane(src->v_buffer, src->uv_stride, dst->v_buffer,
  131. dst->uv_stride, src->uv_crop_width, src->uv_crop_height,
  132. et_uv, el_uv, eb_uv, er_uv);
  133. }
  134. void vp9_copy_and_extend_frame_with_rect(const YV12_BUFFER_CONFIG *src,
  135. YV12_BUFFER_CONFIG *dst, int srcy,
  136. int srcx, int srch, int srcw) {
  137. // If the side is not touching the bounder then don't extend.
  138. const int et_y = srcy ? 0 : dst->border;
  139. const int el_y = srcx ? 0 : dst->border;
  140. const int eb_y = srcy + srch != src->y_height
  141. ? 0
  142. : dst->border + dst->y_height - src->y_height;
  143. const int er_y = srcx + srcw != src->y_width
  144. ? 0
  145. : dst->border + dst->y_width - src->y_width;
  146. const int src_y_offset = srcy * src->y_stride + srcx;
  147. const int dst_y_offset = srcy * dst->y_stride + srcx;
  148. const int et_uv = ROUND_POWER_OF_TWO(et_y, 1);
  149. const int el_uv = ROUND_POWER_OF_TWO(el_y, 1);
  150. const int eb_uv = ROUND_POWER_OF_TWO(eb_y, 1);
  151. const int er_uv = ROUND_POWER_OF_TWO(er_y, 1);
  152. const int src_uv_offset = ((srcy * src->uv_stride) >> 1) + (srcx >> 1);
  153. const int dst_uv_offset = ((srcy * dst->uv_stride) >> 1) + (srcx >> 1);
  154. const int srch_uv = ROUND_POWER_OF_TWO(srch, 1);
  155. const int srcw_uv = ROUND_POWER_OF_TWO(srcw, 1);
  156. copy_and_extend_plane(src->y_buffer + src_y_offset, src->y_stride,
  157. dst->y_buffer + dst_y_offset, dst->y_stride, srcw, srch,
  158. et_y, el_y, eb_y, er_y);
  159. copy_and_extend_plane(src->u_buffer + src_uv_offset, src->uv_stride,
  160. dst->u_buffer + dst_uv_offset, dst->uv_stride, srcw_uv,
  161. srch_uv, et_uv, el_uv, eb_uv, er_uv);
  162. copy_and_extend_plane(src->v_buffer + src_uv_offset, src->uv_stride,
  163. dst->v_buffer + dst_uv_offset, dst->uv_stride, srcw_uv,
  164. srch_uv, et_uv, el_uv, eb_uv, er_uv);
  165. }