reconinter.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  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 <limits.h>
  11. #include <string.h>
  12. #include "vpx_config.h"
  13. #include "vp8_rtcd.h"
  14. #include "vpx/vpx_integer.h"
  15. #include "blockd.h"
  16. #include "reconinter.h"
  17. #if CONFIG_RUNTIME_CPU_DETECT
  18. #include "onyxc_int.h"
  19. #endif
  20. void vp8_copy_mem16x16_c(
  21. unsigned char *src,
  22. int src_stride,
  23. unsigned char *dst,
  24. int dst_stride)
  25. {
  26. int r;
  27. for (r = 0; r < 16; r++)
  28. {
  29. memcpy(dst, src, 16);
  30. src += src_stride;
  31. dst += dst_stride;
  32. }
  33. }
  34. void vp8_copy_mem8x8_c(
  35. unsigned char *src,
  36. int src_stride,
  37. unsigned char *dst,
  38. int dst_stride)
  39. {
  40. int r;
  41. for (r = 0; r < 8; r++)
  42. {
  43. memcpy(dst, src, 8);
  44. src += src_stride;
  45. dst += dst_stride;
  46. }
  47. }
  48. void vp8_copy_mem8x4_c(
  49. unsigned char *src,
  50. int src_stride,
  51. unsigned char *dst,
  52. int dst_stride)
  53. {
  54. int r;
  55. for (r = 0; r < 4; r++)
  56. {
  57. memcpy(dst, src, 8);
  58. src += src_stride;
  59. dst += dst_stride;
  60. }
  61. }
  62. void vp8_build_inter_predictors_b(BLOCKD *d, int pitch, unsigned char *base_pre, int pre_stride, vp8_subpix_fn_t sppf)
  63. {
  64. int r;
  65. unsigned char *pred_ptr = d->predictor;
  66. unsigned char *ptr;
  67. ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
  68. if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
  69. {
  70. sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, pred_ptr, pitch);
  71. }
  72. else
  73. {
  74. for (r = 0; r < 4; r++)
  75. {
  76. pred_ptr[0] = ptr[0];
  77. pred_ptr[1] = ptr[1];
  78. pred_ptr[2] = ptr[2];
  79. pred_ptr[3] = ptr[3];
  80. pred_ptr += pitch;
  81. ptr += pre_stride;
  82. }
  83. }
  84. }
  85. static void build_inter_predictors4b(MACROBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride)
  86. {
  87. unsigned char *ptr;
  88. ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
  89. if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
  90. {
  91. x->subpixel_predict8x8(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst_stride);
  92. }
  93. else
  94. {
  95. vp8_copy_mem8x8(ptr, pre_stride, dst, dst_stride);
  96. }
  97. }
  98. static void build_inter_predictors2b(MACROBLOCKD *x, BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride)
  99. {
  100. unsigned char *ptr;
  101. ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
  102. if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
  103. {
  104. x->subpixel_predict8x4(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst_stride);
  105. }
  106. else
  107. {
  108. vp8_copy_mem8x4(ptr, pre_stride, dst, dst_stride);
  109. }
  110. }
  111. static void build_inter_predictors_b(BLOCKD *d, unsigned char *dst, int dst_stride, unsigned char *base_pre, int pre_stride, vp8_subpix_fn_t sppf)
  112. {
  113. int r;
  114. unsigned char *ptr;
  115. ptr = base_pre + d->offset + (d->bmi.mv.as_mv.row >> 3) * pre_stride + (d->bmi.mv.as_mv.col >> 3);
  116. if (d->bmi.mv.as_mv.row & 7 || d->bmi.mv.as_mv.col & 7)
  117. {
  118. sppf(ptr, pre_stride, d->bmi.mv.as_mv.col & 7, d->bmi.mv.as_mv.row & 7, dst, dst_stride);
  119. }
  120. else
  121. {
  122. for (r = 0; r < 4; r++)
  123. {
  124. dst[0] = ptr[0];
  125. dst[1] = ptr[1];
  126. dst[2] = ptr[2];
  127. dst[3] = ptr[3];
  128. dst += dst_stride;
  129. ptr += pre_stride;
  130. }
  131. }
  132. }
  133. /*encoder only*/
  134. void vp8_build_inter16x16_predictors_mbuv(MACROBLOCKD *x)
  135. {
  136. unsigned char *uptr, *vptr;
  137. unsigned char *upred_ptr = &x->predictor[256];
  138. unsigned char *vpred_ptr = &x->predictor[320];
  139. int mv_row = x->mode_info_context->mbmi.mv.as_mv.row;
  140. int mv_col = x->mode_info_context->mbmi.mv.as_mv.col;
  141. int offset;
  142. int pre_stride = x->pre.uv_stride;
  143. /* calc uv motion vectors */
  144. mv_row += 1 | (mv_row >> (sizeof(int) * CHAR_BIT - 1));
  145. mv_col += 1 | (mv_col >> (sizeof(int) * CHAR_BIT - 1));
  146. mv_row /= 2;
  147. mv_col /= 2;
  148. mv_row &= x->fullpixel_mask;
  149. mv_col &= x->fullpixel_mask;
  150. offset = (mv_row >> 3) * pre_stride + (mv_col >> 3);
  151. uptr = x->pre.u_buffer + offset;
  152. vptr = x->pre.v_buffer + offset;
  153. if ((mv_row | mv_col) & 7)
  154. {
  155. x->subpixel_predict8x8(uptr, pre_stride, mv_col & 7, mv_row & 7, upred_ptr, 8);
  156. x->subpixel_predict8x8(vptr, pre_stride, mv_col & 7, mv_row & 7, vpred_ptr, 8);
  157. }
  158. else
  159. {
  160. vp8_copy_mem8x8(uptr, pre_stride, upred_ptr, 8);
  161. vp8_copy_mem8x8(vptr, pre_stride, vpred_ptr, 8);
  162. }
  163. }
  164. /*encoder only*/
  165. void vp8_build_inter4x4_predictors_mbuv(MACROBLOCKD *x)
  166. {
  167. int i, j;
  168. int pre_stride = x->pre.uv_stride;
  169. unsigned char *base_pre;
  170. /* build uv mvs */
  171. for (i = 0; i < 2; i++)
  172. {
  173. for (j = 0; j < 2; j++)
  174. {
  175. int yoffset = i * 8 + j * 2;
  176. int uoffset = 16 + i * 2 + j;
  177. int voffset = 20 + i * 2 + j;
  178. int temp;
  179. temp = x->block[yoffset ].bmi.mv.as_mv.row
  180. + x->block[yoffset+1].bmi.mv.as_mv.row
  181. + x->block[yoffset+4].bmi.mv.as_mv.row
  182. + x->block[yoffset+5].bmi.mv.as_mv.row;
  183. temp += 4 + ((temp >> (sizeof(temp) * CHAR_BIT - 1)) * 8);
  184. x->block[uoffset].bmi.mv.as_mv.row = (temp / 8) & x->fullpixel_mask;
  185. temp = x->block[yoffset ].bmi.mv.as_mv.col
  186. + x->block[yoffset+1].bmi.mv.as_mv.col
  187. + x->block[yoffset+4].bmi.mv.as_mv.col
  188. + x->block[yoffset+5].bmi.mv.as_mv.col;
  189. temp += 4 + ((temp >> (sizeof(temp) * CHAR_BIT - 1)) * 8);
  190. x->block[uoffset].bmi.mv.as_mv.col = (temp / 8) & x->fullpixel_mask;
  191. x->block[voffset].bmi.mv.as_int = x->block[uoffset].bmi.mv.as_int;
  192. }
  193. }
  194. base_pre = x->pre.u_buffer;
  195. for (i = 16; i < 20; i += 2)
  196. {
  197. BLOCKD *d0 = &x->block[i];
  198. BLOCKD *d1 = &x->block[i+1];
  199. if (d0->bmi.mv.as_int == d1->bmi.mv.as_int)
  200. build_inter_predictors2b(x, d0, d0->predictor, 8, base_pre, pre_stride);
  201. else
  202. {
  203. vp8_build_inter_predictors_b(d0, 8, base_pre, pre_stride, x->subpixel_predict);
  204. vp8_build_inter_predictors_b(d1, 8, base_pre, pre_stride, x->subpixel_predict);
  205. }
  206. }
  207. base_pre = x->pre.v_buffer;
  208. for (i = 20; i < 24; i += 2)
  209. {
  210. BLOCKD *d0 = &x->block[i];
  211. BLOCKD *d1 = &x->block[i+1];
  212. if (d0->bmi.mv.as_int == d1->bmi.mv.as_int)
  213. build_inter_predictors2b(x, d0, d0->predictor, 8, base_pre, pre_stride);
  214. else
  215. {
  216. vp8_build_inter_predictors_b(d0, 8, base_pre, pre_stride, x->subpixel_predict);
  217. vp8_build_inter_predictors_b(d1, 8, base_pre, pre_stride, x->subpixel_predict);
  218. }
  219. }
  220. }
  221. /*encoder only*/
  222. void vp8_build_inter16x16_predictors_mby(MACROBLOCKD *x,
  223. unsigned char *dst_y,
  224. int dst_ystride)
  225. {
  226. unsigned char *ptr_base;
  227. unsigned char *ptr;
  228. int mv_row = x->mode_info_context->mbmi.mv.as_mv.row;
  229. int mv_col = x->mode_info_context->mbmi.mv.as_mv.col;
  230. int pre_stride = x->pre.y_stride;
  231. ptr_base = x->pre.y_buffer;
  232. ptr = ptr_base + (mv_row >> 3) * pre_stride + (mv_col >> 3);
  233. if ((mv_row | mv_col) & 7)
  234. {
  235. x->subpixel_predict16x16(ptr, pre_stride, mv_col & 7, mv_row & 7,
  236. dst_y, dst_ystride);
  237. }
  238. else
  239. {
  240. vp8_copy_mem16x16(ptr, pre_stride, dst_y,
  241. dst_ystride);
  242. }
  243. }
  244. static void clamp_mv_to_umv_border(MV *mv, const MACROBLOCKD *xd)
  245. {
  246. /* If the MV points so far into the UMV border that no visible pixels
  247. * are used for reconstruction, the subpel part of the MV can be
  248. * discarded and the MV limited to 16 pixels with equivalent results.
  249. *
  250. * This limit kicks in at 19 pixels for the top and left edges, for
  251. * the 16 pixels plus 3 taps right of the central pixel when subpel
  252. * filtering. The bottom and right edges use 16 pixels plus 2 pixels
  253. * left of the central pixel when filtering.
  254. */
  255. if (mv->col < (xd->mb_to_left_edge - (19 << 3)))
  256. mv->col = xd->mb_to_left_edge - (16 << 3);
  257. else if (mv->col > xd->mb_to_right_edge + (18 << 3))
  258. mv->col = xd->mb_to_right_edge + (16 << 3);
  259. if (mv->row < (xd->mb_to_top_edge - (19 << 3)))
  260. mv->row = xd->mb_to_top_edge - (16 << 3);
  261. else if (mv->row > xd->mb_to_bottom_edge + (18 << 3))
  262. mv->row = xd->mb_to_bottom_edge + (16 << 3);
  263. }
  264. /* A version of the above function for chroma block MVs.*/
  265. static void clamp_uvmv_to_umv_border(MV *mv, const MACROBLOCKD *xd)
  266. {
  267. mv->col = (2*mv->col < (xd->mb_to_left_edge - (19 << 3))) ?
  268. (xd->mb_to_left_edge - (16 << 3)) >> 1 : mv->col;
  269. mv->col = (2*mv->col > xd->mb_to_right_edge + (18 << 3)) ?
  270. (xd->mb_to_right_edge + (16 << 3)) >> 1 : mv->col;
  271. mv->row = (2*mv->row < (xd->mb_to_top_edge - (19 << 3))) ?
  272. (xd->mb_to_top_edge - (16 << 3)) >> 1 : mv->row;
  273. mv->row = (2*mv->row > xd->mb_to_bottom_edge + (18 << 3)) ?
  274. (xd->mb_to_bottom_edge + (16 << 3)) >> 1 : mv->row;
  275. }
  276. void vp8_build_inter16x16_predictors_mb(MACROBLOCKD *x,
  277. unsigned char *dst_y,
  278. unsigned char *dst_u,
  279. unsigned char *dst_v,
  280. int dst_ystride,
  281. int dst_uvstride)
  282. {
  283. int offset;
  284. unsigned char *ptr;
  285. unsigned char *uptr, *vptr;
  286. int_mv _16x16mv;
  287. unsigned char *ptr_base = x->pre.y_buffer;
  288. int pre_stride = x->pre.y_stride;
  289. _16x16mv.as_int = x->mode_info_context->mbmi.mv.as_int;
  290. if (x->mode_info_context->mbmi.need_to_clamp_mvs)
  291. {
  292. clamp_mv_to_umv_border(&_16x16mv.as_mv, x);
  293. }
  294. ptr = ptr_base + ( _16x16mv.as_mv.row >> 3) * pre_stride + (_16x16mv.as_mv.col >> 3);
  295. if ( _16x16mv.as_int & 0x00070007)
  296. {
  297. x->subpixel_predict16x16(ptr, pre_stride, _16x16mv.as_mv.col & 7, _16x16mv.as_mv.row & 7, dst_y, dst_ystride);
  298. }
  299. else
  300. {
  301. vp8_copy_mem16x16(ptr, pre_stride, dst_y, dst_ystride);
  302. }
  303. /* calc uv motion vectors */
  304. _16x16mv.as_mv.row += 1 | (_16x16mv.as_mv.row >> (sizeof(int) * CHAR_BIT - 1));
  305. _16x16mv.as_mv.col += 1 | (_16x16mv.as_mv.col >> (sizeof(int) * CHAR_BIT - 1));
  306. _16x16mv.as_mv.row /= 2;
  307. _16x16mv.as_mv.col /= 2;
  308. _16x16mv.as_mv.row &= x->fullpixel_mask;
  309. _16x16mv.as_mv.col &= x->fullpixel_mask;
  310. pre_stride >>= 1;
  311. offset = ( _16x16mv.as_mv.row >> 3) * pre_stride + (_16x16mv.as_mv.col >> 3);
  312. uptr = x->pre.u_buffer + offset;
  313. vptr = x->pre.v_buffer + offset;
  314. if ( _16x16mv.as_int & 0x00070007)
  315. {
  316. x->subpixel_predict8x8(uptr, pre_stride, _16x16mv.as_mv.col & 7, _16x16mv.as_mv.row & 7, dst_u, dst_uvstride);
  317. x->subpixel_predict8x8(vptr, pre_stride, _16x16mv.as_mv.col & 7, _16x16mv.as_mv.row & 7, dst_v, dst_uvstride);
  318. }
  319. else
  320. {
  321. vp8_copy_mem8x8(uptr, pre_stride, dst_u, dst_uvstride);
  322. vp8_copy_mem8x8(vptr, pre_stride, dst_v, dst_uvstride);
  323. }
  324. }
  325. static void build_inter4x4_predictors_mb(MACROBLOCKD *x)
  326. {
  327. int i;
  328. unsigned char *base_dst = x->dst.y_buffer;
  329. unsigned char *base_pre = x->pre.y_buffer;
  330. if (x->mode_info_context->mbmi.partitioning < 3)
  331. {
  332. BLOCKD *b;
  333. int dst_stride = x->dst.y_stride;
  334. x->block[ 0].bmi = x->mode_info_context->bmi[ 0];
  335. x->block[ 2].bmi = x->mode_info_context->bmi[ 2];
  336. x->block[ 8].bmi = x->mode_info_context->bmi[ 8];
  337. x->block[10].bmi = x->mode_info_context->bmi[10];
  338. if (x->mode_info_context->mbmi.need_to_clamp_mvs)
  339. {
  340. clamp_mv_to_umv_border(&x->block[ 0].bmi.mv.as_mv, x);
  341. clamp_mv_to_umv_border(&x->block[ 2].bmi.mv.as_mv, x);
  342. clamp_mv_to_umv_border(&x->block[ 8].bmi.mv.as_mv, x);
  343. clamp_mv_to_umv_border(&x->block[10].bmi.mv.as_mv, x);
  344. }
  345. b = &x->block[ 0];
  346. build_inter_predictors4b(x, b, base_dst + b->offset, dst_stride, base_pre, dst_stride);
  347. b = &x->block[ 2];
  348. build_inter_predictors4b(x, b, base_dst + b->offset, dst_stride, base_pre, dst_stride);
  349. b = &x->block[ 8];
  350. build_inter_predictors4b(x, b, base_dst + b->offset, dst_stride, base_pre, dst_stride);
  351. b = &x->block[10];
  352. build_inter_predictors4b(x, b, base_dst + b->offset, dst_stride, base_pre, dst_stride);
  353. }
  354. else
  355. {
  356. for (i = 0; i < 16; i += 2)
  357. {
  358. BLOCKD *d0 = &x->block[i];
  359. BLOCKD *d1 = &x->block[i+1];
  360. int dst_stride = x->dst.y_stride;
  361. x->block[i+0].bmi = x->mode_info_context->bmi[i+0];
  362. x->block[i+1].bmi = x->mode_info_context->bmi[i+1];
  363. if (x->mode_info_context->mbmi.need_to_clamp_mvs)
  364. {
  365. clamp_mv_to_umv_border(&x->block[i+0].bmi.mv.as_mv, x);
  366. clamp_mv_to_umv_border(&x->block[i+1].bmi.mv.as_mv, x);
  367. }
  368. if (d0->bmi.mv.as_int == d1->bmi.mv.as_int)
  369. build_inter_predictors2b(x, d0, base_dst + d0->offset, dst_stride, base_pre, dst_stride);
  370. else
  371. {
  372. build_inter_predictors_b(d0, base_dst + d0->offset, dst_stride, base_pre, dst_stride, x->subpixel_predict);
  373. build_inter_predictors_b(d1, base_dst + d1->offset, dst_stride, base_pre, dst_stride, x->subpixel_predict);
  374. }
  375. }
  376. }
  377. base_dst = x->dst.u_buffer;
  378. base_pre = x->pre.u_buffer;
  379. for (i = 16; i < 20; i += 2)
  380. {
  381. BLOCKD *d0 = &x->block[i];
  382. BLOCKD *d1 = &x->block[i+1];
  383. int dst_stride = x->dst.uv_stride;
  384. /* Note: uv mvs already clamped in build_4x4uvmvs() */
  385. if (d0->bmi.mv.as_int == d1->bmi.mv.as_int)
  386. build_inter_predictors2b(x, d0, base_dst + d0->offset, dst_stride, base_pre, dst_stride);
  387. else
  388. {
  389. build_inter_predictors_b(d0, base_dst + d0->offset, dst_stride, base_pre, dst_stride, x->subpixel_predict);
  390. build_inter_predictors_b(d1, base_dst + d1->offset, dst_stride, base_pre, dst_stride, x->subpixel_predict);
  391. }
  392. }
  393. base_dst = x->dst.v_buffer;
  394. base_pre = x->pre.v_buffer;
  395. for (i = 20; i < 24; i += 2)
  396. {
  397. BLOCKD *d0 = &x->block[i];
  398. BLOCKD *d1 = &x->block[i+1];
  399. int dst_stride = x->dst.uv_stride;
  400. /* Note: uv mvs already clamped in build_4x4uvmvs() */
  401. if (d0->bmi.mv.as_int == d1->bmi.mv.as_int)
  402. build_inter_predictors2b(x, d0, base_dst + d0->offset, dst_stride, base_pre, dst_stride);
  403. else
  404. {
  405. build_inter_predictors_b(d0, base_dst + d0->offset, dst_stride, base_pre, dst_stride, x->subpixel_predict);
  406. build_inter_predictors_b(d1, base_dst + d1->offset, dst_stride, base_pre, dst_stride, x->subpixel_predict);
  407. }
  408. }
  409. }
  410. static
  411. void build_4x4uvmvs(MACROBLOCKD *x)
  412. {
  413. int i, j;
  414. for (i = 0; i < 2; i++)
  415. {
  416. for (j = 0; j < 2; j++)
  417. {
  418. int yoffset = i * 8 + j * 2;
  419. int uoffset = 16 + i * 2 + j;
  420. int voffset = 20 + i * 2 + j;
  421. int temp;
  422. temp = x->mode_info_context->bmi[yoffset + 0].mv.as_mv.row
  423. + x->mode_info_context->bmi[yoffset + 1].mv.as_mv.row
  424. + x->mode_info_context->bmi[yoffset + 4].mv.as_mv.row
  425. + x->mode_info_context->bmi[yoffset + 5].mv.as_mv.row;
  426. temp += 4 + ((temp >> (sizeof(temp) * CHAR_BIT - 1)) * 8);
  427. x->block[uoffset].bmi.mv.as_mv.row = (temp / 8) & x->fullpixel_mask;
  428. temp = x->mode_info_context->bmi[yoffset + 0].mv.as_mv.col
  429. + x->mode_info_context->bmi[yoffset + 1].mv.as_mv.col
  430. + x->mode_info_context->bmi[yoffset + 4].mv.as_mv.col
  431. + x->mode_info_context->bmi[yoffset + 5].mv.as_mv.col;
  432. temp += 4 + ((temp >> (sizeof(temp) * CHAR_BIT - 1)) * 8);
  433. x->block[uoffset].bmi.mv.as_mv.col = (temp / 8) & x->fullpixel_mask;
  434. if (x->mode_info_context->mbmi.need_to_clamp_mvs)
  435. clamp_uvmv_to_umv_border(&x->block[uoffset].bmi.mv.as_mv, x);
  436. x->block[voffset].bmi.mv.as_int = x->block[uoffset].bmi.mv.as_int;
  437. }
  438. }
  439. }
  440. void vp8_build_inter_predictors_mb(MACROBLOCKD *xd)
  441. {
  442. if (xd->mode_info_context->mbmi.mode != SPLITMV)
  443. {
  444. vp8_build_inter16x16_predictors_mb(xd, xd->dst.y_buffer,
  445. xd->dst.u_buffer, xd->dst.v_buffer,
  446. xd->dst.y_stride, xd->dst.uv_stride);
  447. }
  448. else
  449. {
  450. build_4x4uvmvs(xd);
  451. build_inter4x4_predictors_mb(xd);
  452. }
  453. }