2 * Copyright (c) 2000,2001 Fabrice Bellard
3 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5 * 4MV & hq & B-frame encoding stuff by Michael Niedermayer <michaelni@gmx.at>
7 * This file is part of FFmpeg.
9 * FFmpeg is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * FFmpeg is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with FFmpeg; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 #include "libavutil/avassert.h"
27 #include "libavutil/internal.h"
30 #include "mpegutils.h"
31 #include "mpegvideo.h"
38 static void gmc1_motion(MpegEncContext *s,
39 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
40 uint8_t **ref_picture)
43 int src_x, src_y, motion_x, motion_y;
44 ptrdiff_t offset, linesize, uvlinesize;
47 motion_x = s->sprite_offset[0][0];
48 motion_y = s->sprite_offset[0][1];
49 src_x = s->mb_x * 16 + (motion_x >> (s->sprite_warping_accuracy + 1));
50 src_y = s->mb_y * 16 + (motion_y >> (s->sprite_warping_accuracy + 1));
51 motion_x <<= (3 - s->sprite_warping_accuracy);
52 motion_y <<= (3 - s->sprite_warping_accuracy);
53 src_x = av_clip(src_x, -16, s->width);
54 if (src_x == s->width)
56 src_y = av_clip(src_y, -16, s->height);
57 if (src_y == s->height)
60 linesize = s->linesize;
61 uvlinesize = s->uvlinesize;
63 ptr = ref_picture[0] + src_y * linesize + src_x;
65 if ((unsigned)src_x >= FFMAX(s->h_edge_pos - 17, 0) ||
66 (unsigned)src_y >= FFMAX(s->v_edge_pos - 17, 0)) {
67 s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr,
71 s->h_edge_pos, s->v_edge_pos);
72 ptr = s->sc.edge_emu_buffer;
75 if ((motion_x | motion_y) & 7) {
76 s->mdsp.gmc1(dest_y, ptr, linesize, 16,
77 motion_x & 15, motion_y & 15, 128 - s->no_rounding);
78 s->mdsp.gmc1(dest_y + 8, ptr + 8, linesize, 16,
79 motion_x & 15, motion_y & 15, 128 - s->no_rounding);
83 dxy = ((motion_x >> 3) & 1) | ((motion_y >> 2) & 2);
85 s->hdsp.put_no_rnd_pixels_tab[0][dxy](dest_y, ptr, linesize, 16);
87 s->hdsp.put_pixels_tab[0][dxy](dest_y, ptr, linesize, 16);
91 if (CONFIG_GRAY && s->avctx->flags & AV_CODEC_FLAG_GRAY)
94 motion_x = s->sprite_offset[1][0];
95 motion_y = s->sprite_offset[1][1];
96 src_x = s->mb_x * 8 + (motion_x >> (s->sprite_warping_accuracy + 1));
97 src_y = s->mb_y * 8 + (motion_y >> (s->sprite_warping_accuracy + 1));
98 motion_x <<= (3 - s->sprite_warping_accuracy);
99 motion_y <<= (3 - s->sprite_warping_accuracy);
100 src_x = av_clip(src_x, -8, s->width >> 1);
101 if (src_x == s->width >> 1)
103 src_y = av_clip(src_y, -8, s->height >> 1);
104 if (src_y == s->height >> 1)
107 offset = (src_y * uvlinesize) + src_x;
108 ptr = ref_picture[1] + offset;
109 if ((unsigned)src_x >= FFMAX((s->h_edge_pos >> 1) - 9, 0) ||
110 (unsigned)src_y >= FFMAX((s->v_edge_pos >> 1) - 9, 0)) {
111 s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr,
112 uvlinesize, uvlinesize,
115 s->h_edge_pos >> 1, s->v_edge_pos >> 1);
116 ptr = s->sc.edge_emu_buffer;
119 s->mdsp.gmc1(dest_cb, ptr, uvlinesize, 8,
120 motion_x & 15, motion_y & 15, 128 - s->no_rounding);
122 ptr = ref_picture[2] + offset;
124 s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr,
125 uvlinesize, uvlinesize,
128 s->h_edge_pos >> 1, s->v_edge_pos >> 1);
129 ptr = s->sc.edge_emu_buffer;
131 s->mdsp.gmc1(dest_cr, ptr, uvlinesize, 8,
132 motion_x & 15, motion_y & 15, 128 - s->no_rounding);
135 static void gmc_motion(MpegEncContext *s,
136 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
137 uint8_t **ref_picture)
140 int linesize, uvlinesize;
141 const int a = s->sprite_warping_accuracy;
144 linesize = s->linesize;
145 uvlinesize = s->uvlinesize;
147 ptr = ref_picture[0];
149 ox = s->sprite_offset[0][0] + s->sprite_delta[0][0] * s->mb_x * 16 +
150 s->sprite_delta[0][1] * s->mb_y * 16;
151 oy = s->sprite_offset[0][1] + s->sprite_delta[1][0] * s->mb_x * 16 +
152 s->sprite_delta[1][1] * s->mb_y * 16;
154 s->mdsp.gmc(dest_y, ptr, linesize, 16,
156 s->sprite_delta[0][0], s->sprite_delta[0][1],
157 s->sprite_delta[1][0], s->sprite_delta[1][1],
158 a + 1, (1 << (2 * a + 1)) - s->no_rounding,
159 s->h_edge_pos, s->v_edge_pos);
160 s->mdsp.gmc(dest_y + 8, ptr, linesize, 16,
161 ox + s->sprite_delta[0][0] * 8,
162 oy + s->sprite_delta[1][0] * 8,
163 s->sprite_delta[0][0], s->sprite_delta[0][1],
164 s->sprite_delta[1][0], s->sprite_delta[1][1],
165 a + 1, (1 << (2 * a + 1)) - s->no_rounding,
166 s->h_edge_pos, s->v_edge_pos);
168 if (CONFIG_GRAY && s->avctx->flags & AV_CODEC_FLAG_GRAY)
171 ox = s->sprite_offset[1][0] + s->sprite_delta[0][0] * s->mb_x * 8 +
172 s->sprite_delta[0][1] * s->mb_y * 8;
173 oy = s->sprite_offset[1][1] + s->sprite_delta[1][0] * s->mb_x * 8 +
174 s->sprite_delta[1][1] * s->mb_y * 8;
176 ptr = ref_picture[1];
177 s->mdsp.gmc(dest_cb, ptr, uvlinesize, 8,
179 s->sprite_delta[0][0], s->sprite_delta[0][1],
180 s->sprite_delta[1][0], s->sprite_delta[1][1],
181 a + 1, (1 << (2 * a + 1)) - s->no_rounding,
182 (s->h_edge_pos + 1) >> 1, (s->v_edge_pos + 1) >> 1);
184 ptr = ref_picture[2];
185 s->mdsp.gmc(dest_cr, ptr, uvlinesize, 8,
187 s->sprite_delta[0][0], s->sprite_delta[0][1],
188 s->sprite_delta[1][0], s->sprite_delta[1][1],
189 a + 1, (1 << (2 * a + 1)) - s->no_rounding,
190 (s->h_edge_pos + 1) >> 1, (s->v_edge_pos + 1) >> 1);
193 static inline int hpel_motion(MpegEncContext *s,
194 uint8_t *dest, uint8_t *src,
195 int src_x, int src_y,
196 op_pixels_func *pix_op,
197 int motion_x, int motion_y)
202 src_x += motion_x >> 1;
203 src_y += motion_y >> 1;
205 /* WARNING: do no forget half pels */
206 src_x = av_clip(src_x, -16, s->width); // FIXME unneeded for emu?
207 if (src_x != s->width)
209 src_y = av_clip(src_y, -16, s->height);
210 if (src_y != s->height)
211 dxy |= (motion_y & 1) << 1;
212 src += src_y * s->linesize + src_x;
214 if ((unsigned)src_x >= FFMAX(s->h_edge_pos - (motion_x & 1) - 7, 0) ||
215 (unsigned)src_y >= FFMAX(s->v_edge_pos - (motion_y & 1) - 7, 0)) {
216 s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, src,
217 s->linesize, s->linesize,
220 s->h_edge_pos, s->v_edge_pos);
221 src = s->sc.edge_emu_buffer;
224 pix_op[dxy](dest, src, s->linesize, 8);
228 static av_always_inline
229 void mpeg_motion_internal(MpegEncContext *s,
236 uint8_t **ref_picture,
237 op_pixels_func (*pix_op)[4],
244 uint8_t *ptr_y, *ptr_cb, *ptr_cr;
245 int dxy, uvdxy, mx, my, src_x, src_y,
246 uvsrc_x, uvsrc_y, v_edge_pos;
247 ptrdiff_t uvlinesize, linesize;
250 if (s->quarter_sample) {
256 v_edge_pos = s->v_edge_pos >> field_based;
257 linesize = s->current_picture.f->linesize[0] << field_based;
258 uvlinesize = s->current_picture.f->linesize[1] << field_based;
260 dxy = ((motion_y & 1) << 1) | (motion_x & 1);
261 src_x = s->mb_x * 16 + (motion_x >> 1);
262 src_y = (mb_y << (4 - field_based)) + (motion_y >> 1);
264 if (!is_mpeg12 && s->out_format == FMT_H263) {
265 if ((s->workaround_bugs & FF_BUG_HPEL_CHROMA) && field_based) {
266 mx = (motion_x >> 1) | (motion_x & 1);
268 uvdxy = ((my & 1) << 1) | (mx & 1);
269 uvsrc_x = s->mb_x * 8 + (mx >> 1);
270 uvsrc_y = (mb_y << (3 - field_based)) + (my >> 1);
272 uvdxy = dxy | (motion_y & 2) | ((motion_x & 2) >> 1);
273 uvsrc_x = src_x >> 1;
274 uvsrc_y = src_y >> 1;
276 // Even chroma mv's are full pel in H261
277 } else if (!is_mpeg12 && s->out_format == FMT_H261) {
281 uvsrc_x = s->mb_x * 8 + mx;
282 uvsrc_y = mb_y * 8 + my;
284 if (s->chroma_y_shift) {
287 uvdxy = ((my & 1) << 1) | (mx & 1);
288 uvsrc_x = s->mb_x * 8 + (mx >> 1);
289 uvsrc_y = (mb_y << (3 - field_based)) + (my >> 1);
291 if (s->chroma_x_shift) {
294 uvdxy = ((motion_y & 1) << 1) | (mx & 1);
295 uvsrc_x = s->mb_x * 8 + (mx >> 1);
306 ptr_y = ref_picture[0] + src_y * linesize + src_x;
307 ptr_cb = ref_picture[1] + uvsrc_y * uvlinesize + uvsrc_x;
308 ptr_cr = ref_picture[2] + uvsrc_y * uvlinesize + uvsrc_x;
310 if ((unsigned)src_x >= FFMAX(s->h_edge_pos - (motion_x & 1) - 15 , 0) ||
311 (unsigned)src_y >= FFMAX( v_edge_pos - (motion_y & 1) - h + 1, 0)) {
313 s->codec_id == AV_CODEC_ID_MPEG2VIDEO ||
314 s->codec_id == AV_CODEC_ID_MPEG1VIDEO) {
315 av_log(s->avctx, AV_LOG_DEBUG,
316 "MPEG motion vector out of boundary (%d %d)\n", src_x,
320 src_y = (unsigned)src_y << field_based;
321 s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr_y,
322 s->linesize, s->linesize,
323 17, 17 + field_based,
325 s->h_edge_pos, s->v_edge_pos);
326 ptr_y = s->sc.edge_emu_buffer;
327 if (!CONFIG_GRAY || !(s->avctx->flags & AV_CODEC_FLAG_GRAY)) {
328 uint8_t *ubuf = s->sc.edge_emu_buffer + 18 * s->linesize;
329 uint8_t *vbuf = ubuf + 9 * s->uvlinesize;
330 uvsrc_y = (unsigned)uvsrc_y << field_based;
331 s->vdsp.emulated_edge_mc(ubuf, ptr_cb,
332 s->uvlinesize, s->uvlinesize,
335 s->h_edge_pos >> 1, s->v_edge_pos >> 1);
336 s->vdsp.emulated_edge_mc(vbuf, ptr_cr,
337 s->uvlinesize, s->uvlinesize,
340 s->h_edge_pos >> 1, s->v_edge_pos >> 1);
346 /* FIXME use this for field pix too instead of the obnoxious hack which
347 * changes picture.data */
349 dest_y += s->linesize;
350 dest_cb += s->uvlinesize;
351 dest_cr += s->uvlinesize;
355 ptr_y += s->linesize;
356 ptr_cb += s->uvlinesize;
357 ptr_cr += s->uvlinesize;
360 pix_op[0][dxy](dest_y, ptr_y, linesize, h);
362 if (!CONFIG_GRAY || !(s->avctx->flags & AV_CODEC_FLAG_GRAY)) {
363 pix_op[s->chroma_x_shift][uvdxy]
364 (dest_cb, ptr_cb, uvlinesize, h >> s->chroma_y_shift);
365 pix_op[s->chroma_x_shift][uvdxy]
366 (dest_cr, ptr_cr, uvlinesize, h >> s->chroma_y_shift);
368 if (!is_mpeg12 && (CONFIG_H261_ENCODER || CONFIG_H261_DECODER) &&
369 s->out_format == FMT_H261) {
370 ff_h261_loop_filter(s);
373 /* apply one mpeg motion vector to the three components */
374 static void mpeg_motion(MpegEncContext *s,
375 uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
376 int field_select, uint8_t **ref_picture,
377 op_pixels_func (*pix_op)[4],
378 int motion_x, int motion_y, int h, int mb_y)
381 if (s->out_format == FMT_MPEG1)
382 mpeg_motion_internal(s, dest_y, dest_cb, dest_cr, 0, 0,
383 field_select, ref_picture, pix_op,
384 motion_x, motion_y, h, 1, mb_y);
387 mpeg_motion_internal(s, dest_y, dest_cb, dest_cr, 0, 0,
388 field_select, ref_picture, pix_op,
389 motion_x, motion_y, h, 0, mb_y);
392 static void mpeg_motion_field(MpegEncContext *s, uint8_t *dest_y,
393 uint8_t *dest_cb, uint8_t *dest_cr,
394 int bottom_field, int field_select,
395 uint8_t **ref_picture,
396 op_pixels_func (*pix_op)[4],
397 int motion_x, int motion_y, int h, int mb_y)
400 if (s->out_format == FMT_MPEG1)
401 mpeg_motion_internal(s, dest_y, dest_cb, dest_cr, 1,
402 bottom_field, field_select, ref_picture, pix_op,
403 motion_x, motion_y, h, 1, mb_y);
406 mpeg_motion_internal(s, dest_y, dest_cb, dest_cr, 1,
407 bottom_field, field_select, ref_picture, pix_op,
408 motion_x, motion_y, h, 0, mb_y);
411 // FIXME: SIMDify, avg variant, 16x16 version
412 static inline void put_obmc(uint8_t *dst, uint8_t *src[5], int stride)
415 uint8_t *const top = src[1];
416 uint8_t *const left = src[2];
417 uint8_t *const mid = src[0];
418 uint8_t *const right = src[3];
419 uint8_t *const bottom = src[4];
420 #define OBMC_FILTER(x, t, l, m, r, b)\
421 dst[x]= (t*top[x] + l*left[x] + m*mid[x] + r*right[x] + b*bottom[x] + 4)>>3
422 #define OBMC_FILTER4(x, t, l, m, r, b)\
423 OBMC_FILTER(x , t, l, m, r, b);\
424 OBMC_FILTER(x+1 , t, l, m, r, b);\
425 OBMC_FILTER(x +stride, t, l, m, r, b);\
426 OBMC_FILTER(x+1+stride, t, l, m, r, b);
429 OBMC_FILTER (x , 2, 2, 4, 0, 0);
430 OBMC_FILTER (x + 1, 2, 1, 5, 0, 0);
431 OBMC_FILTER4(x + 2, 2, 1, 5, 0, 0);
432 OBMC_FILTER4(x + 4, 2, 0, 5, 1, 0);
433 OBMC_FILTER (x + 6, 2, 0, 5, 1, 0);
434 OBMC_FILTER (x + 7, 2, 0, 4, 2, 0);
436 OBMC_FILTER (x , 1, 2, 5, 0, 0);
437 OBMC_FILTER (x + 1, 1, 2, 5, 0, 0);
438 OBMC_FILTER (x + 6, 1, 0, 5, 2, 0);
439 OBMC_FILTER (x + 7, 1, 0, 5, 2, 0);
441 OBMC_FILTER4(x , 1, 2, 5, 0, 0);
442 OBMC_FILTER4(x + 2, 1, 1, 6, 0, 0);
443 OBMC_FILTER4(x + 4, 1, 0, 6, 1, 0);
444 OBMC_FILTER4(x + 6, 1, 0, 5, 2, 0);
446 OBMC_FILTER4(x , 0, 2, 5, 0, 1);
447 OBMC_FILTER4(x + 2, 0, 1, 6, 0, 1);
448 OBMC_FILTER4(x + 4, 0, 0, 6, 1, 1);
449 OBMC_FILTER4(x + 6, 0, 0, 5, 2, 1);
451 OBMC_FILTER (x , 0, 2, 5, 0, 1);
452 OBMC_FILTER (x + 1, 0, 2, 5, 0, 1);
453 OBMC_FILTER4(x + 2, 0, 1, 5, 0, 2);
454 OBMC_FILTER4(x + 4, 0, 0, 5, 1, 2);
455 OBMC_FILTER (x + 6, 0, 0, 5, 2, 1);
456 OBMC_FILTER (x + 7, 0, 0, 5, 2, 1);
458 OBMC_FILTER (x , 0, 2, 4, 0, 2);
459 OBMC_FILTER (x + 1, 0, 1, 5, 0, 2);
460 OBMC_FILTER (x + 6, 0, 0, 5, 1, 2);
461 OBMC_FILTER (x + 7, 0, 0, 4, 2, 2);
464 /* obmc for 1 8x8 luma block */
465 static inline void obmc_motion(MpegEncContext *s,
466 uint8_t *dest, uint8_t *src,
467 int src_x, int src_y,
468 op_pixels_func *pix_op,
469 int16_t mv[5][2] /* mid top left right bottom */)
475 av_assert2(s->quarter_sample == 0);
477 for (i = 0; i < 5; i++) {
478 if (i && mv[i][0] == mv[MID][0] && mv[i][1] == mv[MID][1]) {
481 ptr[i] = s->sc.obmc_scratchpad + 8 * (i & 1) +
482 s->linesize * 8 * (i >> 1);
483 hpel_motion(s, ptr[i], src, src_x, src_y, pix_op,
488 put_obmc(dest, ptr, s->linesize);
491 static inline void qpel_motion(MpegEncContext *s,
495 int field_based, int bottom_field,
496 int field_select, uint8_t **ref_picture,
497 op_pixels_func (*pix_op)[4],
498 qpel_mc_func (*qpix_op)[16],
499 int motion_x, int motion_y, int h)
501 uint8_t *ptr_y, *ptr_cb, *ptr_cr;
502 int dxy, uvdxy, mx, my, src_x, src_y, uvsrc_x, uvsrc_y, v_edge_pos;
503 ptrdiff_t linesize, uvlinesize;
505 dxy = ((motion_y & 3) << 2) | (motion_x & 3);
507 src_x = s->mb_x * 16 + (motion_x >> 2);
508 src_y = s->mb_y * (16 >> field_based) + (motion_y >> 2);
510 v_edge_pos = s->v_edge_pos >> field_based;
511 linesize = s->linesize << field_based;
512 uvlinesize = s->uvlinesize << field_based;
517 } else if (s->workaround_bugs & FF_BUG_QPEL_CHROMA2) {
518 static const int rtab[8] = { 0, 0, 1, 1, 0, 0, 0, 1 };
519 mx = (motion_x >> 1) + rtab[motion_x & 7];
520 my = (motion_y >> 1) + rtab[motion_y & 7];
521 } else if (s->workaround_bugs & FF_BUG_QPEL_CHROMA) {
522 mx = (motion_x >> 1) | (motion_x & 1);
523 my = (motion_y >> 1) | (motion_y & 1);
528 mx = (mx >> 1) | (mx & 1);
529 my = (my >> 1) | (my & 1);
531 uvdxy = (mx & 1) | ((my & 1) << 1);
535 uvsrc_x = s->mb_x * 8 + mx;
536 uvsrc_y = s->mb_y * (8 >> field_based) + my;
538 ptr_y = ref_picture[0] + src_y * linesize + src_x;
539 ptr_cb = ref_picture[1] + uvsrc_y * uvlinesize + uvsrc_x;
540 ptr_cr = ref_picture[2] + uvsrc_y * uvlinesize + uvsrc_x;
542 if ((unsigned)src_x >= FFMAX(s->h_edge_pos - (motion_x & 3) - 15 , 0) ||
543 (unsigned)src_y >= FFMAX( v_edge_pos - (motion_y & 3) - h + 1, 0)) {
544 s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr_y,
545 s->linesize, s->linesize,
546 17, 17 + field_based,
547 src_x, src_y * (1 << field_based),
548 s->h_edge_pos, s->v_edge_pos);
549 ptr_y = s->sc.edge_emu_buffer;
550 if (!CONFIG_GRAY || !(s->avctx->flags & AV_CODEC_FLAG_GRAY)) {
551 uint8_t *ubuf = s->sc.edge_emu_buffer + 18 * s->linesize;
552 uint8_t *vbuf = ubuf + 9 * s->uvlinesize;
553 s->vdsp.emulated_edge_mc(ubuf, ptr_cb,
554 s->uvlinesize, s->uvlinesize,
556 uvsrc_x, uvsrc_y * (1 << field_based),
557 s->h_edge_pos >> 1, s->v_edge_pos >> 1);
558 s->vdsp.emulated_edge_mc(vbuf, ptr_cr,
559 s->uvlinesize, s->uvlinesize,
561 uvsrc_x, uvsrc_y * (1 << field_based),
562 s->h_edge_pos >> 1, s->v_edge_pos >> 1);
569 qpix_op[0][dxy](dest_y, ptr_y, linesize);
572 dest_y += s->linesize;
573 dest_cb += s->uvlinesize;
574 dest_cr += s->uvlinesize;
578 ptr_y += s->linesize;
579 ptr_cb += s->uvlinesize;
580 ptr_cr += s->uvlinesize;
582 // damn interlaced mode
583 // FIXME boundary mirroring is not exactly correct here
584 qpix_op[1][dxy](dest_y, ptr_y, linesize);
585 qpix_op[1][dxy](dest_y + 8, ptr_y + 8, linesize);
587 if (!CONFIG_GRAY || !(s->avctx->flags & AV_CODEC_FLAG_GRAY)) {
588 pix_op[1][uvdxy](dest_cr, ptr_cr, uvlinesize, h >> 1);
589 pix_op[1][uvdxy](dest_cb, ptr_cb, uvlinesize, h >> 1);
594 * H.263 chroma 4mv motion compensation.
596 static void chroma_4mv_motion(MpegEncContext *s,
597 uint8_t *dest_cb, uint8_t *dest_cr,
598 uint8_t **ref_picture,
599 op_pixels_func *pix_op,
603 int src_x, src_y, dxy, emu = 0;
606 /* In case of 8X8, we construct a single chroma motion vector
607 * with a special rounding */
608 mx = ff_h263_round_chroma(mx);
609 my = ff_h263_round_chroma(my);
611 dxy = ((my & 1) << 1) | (mx & 1);
615 src_x = s->mb_x * 8 + mx;
616 src_y = s->mb_y * 8 + my;
617 src_x = av_clip(src_x, -8, (s->width >> 1));
618 if (src_x == (s->width >> 1))
620 src_y = av_clip(src_y, -8, (s->height >> 1));
621 if (src_y == (s->height >> 1))
624 offset = src_y * s->uvlinesize + src_x;
625 ptr = ref_picture[1] + offset;
626 if ((unsigned)src_x >= FFMAX((s->h_edge_pos >> 1) - (dxy & 1) - 7, 0) ||
627 (unsigned)src_y >= FFMAX((s->v_edge_pos >> 1) - (dxy >> 1) - 7, 0)) {
628 s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr,
629 s->uvlinesize, s->uvlinesize,
631 s->h_edge_pos >> 1, s->v_edge_pos >> 1);
632 ptr = s->sc.edge_emu_buffer;
635 pix_op[dxy](dest_cb, ptr, s->uvlinesize, 8);
637 ptr = ref_picture[2] + offset;
639 s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr,
640 s->uvlinesize, s->uvlinesize,
642 s->h_edge_pos >> 1, s->v_edge_pos >> 1);
643 ptr = s->sc.edge_emu_buffer;
645 pix_op[dxy](dest_cr, ptr, s->uvlinesize, 8);
648 static inline void prefetch_motion(MpegEncContext *s, uint8_t **pix, int dir)
650 /* fetch pixels for estimated mv 4 macroblocks ahead
651 * optimized for 64byte cache lines */
652 const int shift = s->quarter_sample ? 2 : 1;
653 const int mx = (s->mv[dir][0][0] >> shift) + 16 * s->mb_x + 8;
654 const int my = (s->mv[dir][0][1] >> shift) + 16 * s->mb_y;
655 int off = mx + (my + (s->mb_x & 3) * 4) * s->linesize + 64;
657 s->vdsp.prefetch(pix[0] + off, s->linesize, 4);
658 off = (mx >> 1) + ((my >> 1) + (s->mb_x & 7)) * s->uvlinesize + 64;
659 s->vdsp.prefetch(pix[1] + off, pix[2] - pix[1], 2);
662 static inline void apply_obmc(MpegEncContext *s,
666 uint8_t **ref_picture,
667 op_pixels_func (*pix_op)[4])
669 LOCAL_ALIGNED_8(int16_t, mv_cache, [4], [4][2]);
670 Picture *cur_frame = &s->current_picture;
673 const int xy = mb_x + mb_y * s->mb_stride;
674 const int mot_stride = s->b8_stride;
675 const int mot_xy = mb_x * 2 + mb_y * 2 * mot_stride;
678 av_assert2(!s->mb_skipped);
680 AV_COPY32(mv_cache[1][1], cur_frame->motion_val[0][mot_xy]);
681 AV_COPY32(mv_cache[1][2], cur_frame->motion_val[0][mot_xy + 1]);
683 AV_COPY32(mv_cache[2][1],
684 cur_frame->motion_val[0][mot_xy + mot_stride]);
685 AV_COPY32(mv_cache[2][2],
686 cur_frame->motion_val[0][mot_xy + mot_stride + 1]);
688 AV_COPY32(mv_cache[3][1],
689 cur_frame->motion_val[0][mot_xy + mot_stride]);
690 AV_COPY32(mv_cache[3][2],
691 cur_frame->motion_val[0][mot_xy + mot_stride + 1]);
693 if (mb_y == 0 || IS_INTRA(cur_frame->mb_type[xy - s->mb_stride])) {
694 AV_COPY32(mv_cache[0][1], mv_cache[1][1]);
695 AV_COPY32(mv_cache[0][2], mv_cache[1][2]);
697 AV_COPY32(mv_cache[0][1],
698 cur_frame->motion_val[0][mot_xy - mot_stride]);
699 AV_COPY32(mv_cache[0][2],
700 cur_frame->motion_val[0][mot_xy - mot_stride + 1]);
703 if (mb_x == 0 || IS_INTRA(cur_frame->mb_type[xy - 1])) {
704 AV_COPY32(mv_cache[1][0], mv_cache[1][1]);
705 AV_COPY32(mv_cache[2][0], mv_cache[2][1]);
707 AV_COPY32(mv_cache[1][0], cur_frame->motion_val[0][mot_xy - 1]);
708 AV_COPY32(mv_cache[2][0],
709 cur_frame->motion_val[0][mot_xy - 1 + mot_stride]);
712 if (mb_x + 1 >= s->mb_width || IS_INTRA(cur_frame->mb_type[xy + 1])) {
713 AV_COPY32(mv_cache[1][3], mv_cache[1][2]);
714 AV_COPY32(mv_cache[2][3], mv_cache[2][2]);
716 AV_COPY32(mv_cache[1][3], cur_frame->motion_val[0][mot_xy + 2]);
717 AV_COPY32(mv_cache[2][3],
718 cur_frame->motion_val[0][mot_xy + 2 + mot_stride]);
723 for (i = 0; i < 4; i++) {
724 const int x = (i & 1) + 1;
725 const int y = (i >> 1) + 1;
727 { mv_cache[y][x][0], mv_cache[y][x][1] },
728 { mv_cache[y - 1][x][0], mv_cache[y - 1][x][1] },
729 { mv_cache[y][x - 1][0], mv_cache[y][x - 1][1] },
730 { mv_cache[y][x + 1][0], mv_cache[y][x + 1][1] },
731 { mv_cache[y + 1][x][0], mv_cache[y + 1][x][1] }
734 obmc_motion(s, dest_y + ((i & 1) * 8) + (i >> 1) * 8 * s->linesize,
736 mb_x * 16 + (i & 1) * 8, mb_y * 16 + (i >> 1) * 8,
743 if (!CONFIG_GRAY || !(s->avctx->flags & AV_CODEC_FLAG_GRAY))
744 chroma_4mv_motion(s, dest_cb, dest_cr,
745 ref_picture, pix_op[1],
749 static inline void apply_8x8(MpegEncContext *s,
754 uint8_t **ref_picture,
755 qpel_mc_func (*qpix_op)[16],
756 op_pixels_func (*pix_op)[4])
758 int dxy, mx, my, src_x, src_y;
766 if (s->quarter_sample) {
767 for (i = 0; i < 4; i++) {
768 int motion_x = s->mv[dir][i][0];
769 int motion_y = s->mv[dir][i][1];
771 dxy = ((motion_y & 3) << 2) | (motion_x & 3);
772 src_x = mb_x * 16 + (motion_x >> 2) + (i & 1) * 8;
773 src_y = mb_y * 16 + (motion_y >> 2) + (i >> 1) * 8;
775 /* WARNING: do no forget half pels */
776 src_x = av_clip(src_x, -16, s->width);
777 if (src_x == s->width)
779 src_y = av_clip(src_y, -16, s->height);
780 if (src_y == s->height)
783 ptr = ref_picture[0] + (src_y * s->linesize) + (src_x);
784 if ((unsigned)src_x >= FFMAX(s->h_edge_pos - (motion_x & 3) - 7, 0) ||
785 (unsigned)src_y >= FFMAX(s->v_edge_pos - (motion_y & 3) - 7, 0)) {
786 s->vdsp.emulated_edge_mc(s->sc.edge_emu_buffer, ptr,
787 s->linesize, s->linesize,
792 ptr = s->sc.edge_emu_buffer;
794 dest = dest_y + ((i & 1) * 8) + (i >> 1) * 8 * s->linesize;
795 qpix_op[1][dxy](dest, ptr, s->linesize);
797 mx += s->mv[dir][i][0] / 2;
798 my += s->mv[dir][i][1] / 2;
801 for (i = 0; i < 4; i++) {
803 dest_y + ((i & 1) * 8) + (i >> 1) * 8 * s->linesize,
805 mb_x * 16 + (i & 1) * 8,
806 mb_y * 16 + (i >> 1) * 8,
811 mx += s->mv[dir][i][0];
812 my += s->mv[dir][i][1];
816 if (!CONFIG_GRAY || !(s->avctx->flags & AV_CODEC_FLAG_GRAY))
817 chroma_4mv_motion(s, dest_cb, dest_cr,
818 ref_picture, pix_op[1], mx, my);
822 * motion compensation of a single macroblock
824 * @param dest_y luma destination pointer
825 * @param dest_cb chroma cb/u destination pointer
826 * @param dest_cr chroma cr/v destination pointer
827 * @param dir direction (0->forward, 1->backward)
828 * @param ref_picture array[3] of pointers to the 3 planes of the reference picture
829 * @param pix_op halfpel motion compensation function (average or put normally)
830 * @param qpix_op qpel motion compensation function (average or put normally)
831 * the motion vectors are taken from s->mv and the MV type from s->mv_type
833 static av_always_inline void mpv_motion_internal(MpegEncContext *s,
838 uint8_t **ref_picture,
839 op_pixels_func (*pix_op)[4],
840 qpel_mc_func (*qpix_op)[16],
846 prefetch_motion(s, ref_picture, dir);
848 if (!is_mpeg12 && s->obmc && s->pict_type != AV_PICTURE_TYPE_B) {
849 apply_obmc(s, dest_y, dest_cb, dest_cr, ref_picture, pix_op);
853 switch (s->mv_type) {
856 if (s->real_sprite_warping_points == 1) {
857 gmc1_motion(s, dest_y, dest_cb, dest_cr,
860 gmc_motion(s, dest_y, dest_cb, dest_cr,
863 } else if (!is_mpeg12 && s->quarter_sample) {
864 qpel_motion(s, dest_y, dest_cb, dest_cr,
866 ref_picture, pix_op, qpix_op,
867 s->mv[dir][0][0], s->mv[dir][0][1], 16);
868 } else if (!is_mpeg12 && (CONFIG_WMV2_DECODER || CONFIG_WMV2_ENCODER) &&
869 s->mspel && s->codec_id == AV_CODEC_ID_WMV2) {
870 ff_mspel_motion(s, dest_y, dest_cb, dest_cr,
872 s->mv[dir][0][0], s->mv[dir][0][1], 16);
874 mpeg_motion(s, dest_y, dest_cb, dest_cr, 0,
876 s->mv[dir][0][0], s->mv[dir][0][1], 16, mb_y);
881 apply_8x8(s, dest_y, dest_cb, dest_cr,
882 dir, ref_picture, qpix_op, pix_op);
885 if (s->picture_structure == PICT_FRAME) {
886 if (!is_mpeg12 && s->quarter_sample) {
887 for (i = 0; i < 2; i++)
888 qpel_motion(s, dest_y, dest_cb, dest_cr,
889 1, i, s->field_select[dir][i],
890 ref_picture, pix_op, qpix_op,
891 s->mv[dir][i][0], s->mv[dir][i][1], 8);
894 mpeg_motion_field(s, dest_y, dest_cb, dest_cr,
895 0, s->field_select[dir][0],
897 s->mv[dir][0][0], s->mv[dir][0][1], 8, mb_y);
899 mpeg_motion_field(s, dest_y, dest_cb, dest_cr,
900 1, s->field_select[dir][1],
902 s->mv[dir][1][0], s->mv[dir][1][1], 8, mb_y);
905 if ( s->picture_structure != s->field_select[dir][0] + 1 && s->pict_type != AV_PICTURE_TYPE_B && !s->first_field
906 || !ref_picture[0]) {
907 ref_picture = s->current_picture_ptr->f->data;
910 mpeg_motion(s, dest_y, dest_cb, dest_cr,
911 s->field_select[dir][0],
913 s->mv[dir][0][0], s->mv[dir][0][1], 16, mb_y >> 1);
917 for (i = 0; i < 2; i++) {
918 uint8_t **ref2picture;
920 if ((s->picture_structure == s->field_select[dir][i] + 1
921 || s->pict_type == AV_PICTURE_TYPE_B || s->first_field) && ref_picture[0]) {
922 ref2picture = ref_picture;
924 ref2picture = s->current_picture_ptr->f->data;
927 mpeg_motion(s, dest_y, dest_cb, dest_cr,
928 s->field_select[dir][i],
930 s->mv[dir][i][0], s->mv[dir][i][1] + 16 * i,
933 dest_y += 16 * s->linesize;
934 dest_cb += (16 >> s->chroma_y_shift) * s->uvlinesize;
935 dest_cr += (16 >> s->chroma_y_shift) * s->uvlinesize;
939 if (s->picture_structure == PICT_FRAME) {
940 for (i = 0; i < 2; i++) {
942 for (j = 0; j < 2; j++)
943 mpeg_motion_field(s, dest_y, dest_cb, dest_cr,
944 j, j ^ i, ref_picture, pix_op,
945 s->mv[dir][2 * i + j][0],
946 s->mv[dir][2 * i + j][1], 8, mb_y);
947 pix_op = s->hdsp.avg_pixels_tab;
950 if (!ref_picture[0]) {
951 ref_picture = s->current_picture_ptr->f->data;
953 for (i = 0; i < 2; i++) {
954 mpeg_motion(s, dest_y, dest_cb, dest_cr,
955 s->picture_structure != i + 1,
957 s->mv[dir][2 * i][0], s->mv[dir][2 * i][1],
960 // after put we make avg of the same block
961 pix_op = s->hdsp.avg_pixels_tab;
963 /* opposite parity is always in the same frame if this is
965 if (!s->first_field) {
966 ref_picture = s->current_picture_ptr->f->data;
971 default: av_assert2(0);
975 void ff_mpv_motion(MpegEncContext *s,
976 uint8_t *dest_y, uint8_t *dest_cb,
977 uint8_t *dest_cr, int dir,
978 uint8_t **ref_picture,
979 op_pixels_func (*pix_op)[4],
980 qpel_mc_func (*qpix_op)[16])
983 if (s->out_format == FMT_MPEG1)
984 mpv_motion_internal(s, dest_y, dest_cb, dest_cr, dir,
985 ref_picture, pix_op, qpix_op, 1);
988 mpv_motion_internal(s, dest_y, dest_cb, dest_cr, dir,
989 ref_picture, pix_op, qpix_op, 0);