FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/motion_est.c
Date: 2026-05-03 08:24:11
Exec Total Coverage
Lines: 870 1005 86.6%
Functions: 28 34 82.4%
Branches: 507 619 81.9%

Line Branch Exec Source
1 /*
2 * Motion estimation
3 * Copyright (c) 2000,2001 Fabrice Bellard
4 * Copyright (c) 2002-2004 Michael Niedermayer
5 *
6 * new motion estimation (X1/EPZS) by Michael Niedermayer <michaelni@gmx.at>
7 *
8 * This file is part of FFmpeg.
9 *
10 * FFmpeg is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
14 *
15 * FFmpeg is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with FFmpeg; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
25 /**
26 * @file
27 * Motion estimation.
28 */
29
30 #include <stdlib.h>
31 #include <stdio.h>
32 #include <limits.h>
33
34 #include "avcodec.h"
35 #include "h263.h"
36 #include "mathops.h"
37 #include "motion_est.h"
38 #include "mpegutils.h"
39 #include "mpegvideoenc.h"
40
41 #define P_LEFT P[1]
42 #define P_TOP P[2]
43 #define P_TOPRIGHT P[3]
44 #define P_MEDIAN P[4]
45 #define P_MV1 P[9]
46
47 #define ME_MAP_SHIFT 3
48 #define ME_MAP_MV_BITS 11
49
50 static int sad_hpel_motion_search(MPVEncContext *const s,
51 int *mx_ptr, int *my_ptr, int dmin,
52 int src_index, int ref_index,
53 int size, int h);
54
55 6352064 static inline unsigned update_map_generation(MotionEstContext *c)
56 {
57 6352064 c->map_generation+= 1<<(ME_MAP_MV_BITS*2);
58
2/2
✓ Branch 0 taken 6120 times.
✓ Branch 1 taken 6345944 times.
6352064 if(c->map_generation==0){
59 6120 c->map_generation= 1<<(ME_MAP_MV_BITS*2);
60 6120 memset(c->map, 0, sizeof(uint32_t)*ME_MAP_SIZE);
61 }
62 6352064 return c->map_generation;
63 }
64
65 /* shape adaptive search stuff */
66 typedef struct Minima{
67 int height;
68 int x, y;
69 int checked;
70 }Minima;
71
72 static int minima_cmp(const void *a, const void *b){
73 const Minima *da = (const Minima *) a;
74 const Minima *db = (const Minima *) b;
75
76 return da->height - db->height;
77 }
78
79 #define FLAG_QPEL 1 //must be 1
80 #define FLAG_CHROMA 2
81 #define FLAG_DIRECT 4
82
83 2830398 static inline void init_ref(MotionEstContext *c, uint8_t *const src[3],
84 uint8_t *const ref[3], uint8_t *const ref2[3],
85 int x, int y, int ref_index)
86 {
87 2830398 const int offset[3]= {
88 2830398 y*c-> stride + x,
89 2830398 ((y*c->uvstride + x)>>1),
90 2830398 ((y*c->uvstride + x)>>1),
91 };
92 int i;
93
2/2
✓ Branch 0 taken 8491194 times.
✓ Branch 1 taken 2830398 times.
11321592 for(i=0; i<3; i++){
94
2/2
✓ Branch 0 taken 8367084 times.
✓ Branch 1 taken 124110 times.
8491194 c->src[0][i]= src[i] ? src[i] + offset[i] : NULL;
95
2/2
✓ Branch 0 taken 8367084 times.
✓ Branch 1 taken 124110 times.
8491194 c->ref[0][i]= ref[i] ? ref[i] + offset[i] : NULL;
96 }
97
2/2
✓ Branch 0 taken 396999 times.
✓ Branch 1 taken 2433399 times.
2830398 if(ref_index){
98
2/2
✓ Branch 0 taken 1190997 times.
✓ Branch 1 taken 396999 times.
1587996 for(i=0; i<3; i++){
99
1/2
✓ Branch 0 taken 1190997 times.
✗ Branch 1 not taken.
1190997 c->ref[ref_index][i]= ref2[i] ? ref2[i] + offset[i] : NULL;
100 }
101 }
102 2830398 }
103
104 690 static int get_flags(MotionEstContext *c, int direct, int chroma){
105 690 return ((c->avctx->flags&AV_CODEC_FLAG_QPEL) ? FLAG_QPEL : 0)
106
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 690 times.
690 + (direct ? FLAG_DIRECT : 0)
107
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 690 times.
690 + (chroma ? FLAG_CHROMA : 0);
108 }
109
110 2467569 static av_always_inline int cmp_direct_inline(MPVEncContext *const s, const int x, const int y, const int subx, const int suby,
111 const int size, const int h, int ref_index, int src_index,
112 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, int qpel){
113 2467569 MotionEstContext *const c = &s->me;
114 2467569 const int stride= c->stride;
115 2467569 const int hx = subx + x * (1 << (1 + qpel));
116 2467569 const int hy = suby + y * (1 << (1 + qpel));
117 2467569 const uint8_t * const * const ref = c->ref[ref_index];
118 2467569 const uint8_t * const * const src = c->src[src_index];
119 int d;
120 //FIXME check chroma 4mv, (no crashes ...)
121 av_assert2(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1));
122
2/4
✓ Branch 0 taken 2467569 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 2467569 times.
✗ Branch 3 not taken.
2467569 if (x >= c->xmin && hx <= c->xmax << (qpel + 1) &&
123
2/4
✓ Branch 0 taken 2467569 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 2467569 times.
✗ Branch 3 not taken.
4935138 y >= c->ymin && hy <= c->ymax << (qpel + 1)) {
124 2467569 const int time_pp = s->c.pp_time;
125 2467569 const int time_pb = s->c.pb_time;
126 2467569 const int mask = 2 * qpel + 1;
127
2/2
✓ Branch 0 taken 634259 times.
✓ Branch 1 taken 1833310 times.
2467569 if (s->c.mv_type == MV_TYPE_8X8) {
128
2/2
✓ Branch 0 taken 2537036 times.
✓ Branch 1 taken 634259 times.
3171295 for(int i = 0; i < 4; ++i) {
129 2537036 int fx = c->direct_basis_mv[i][0] + hx;
130 2537036 int fy = c->direct_basis_mv[i][1] + hy;
131
2/2
✓ Branch 0 taken 1580960 times.
✓ Branch 1 taken 956076 times.
2537036 int bx = hx ? fx - c->co_located_mv[i][0] : c->co_located_mv[i][0] * (time_pb - time_pp)/time_pp + ((i &1)<<(qpel+4));
132
2/2
✓ Branch 0 taken 1549612 times.
✓ Branch 1 taken 987424 times.
2537036 int by = hy ? fy - c->co_located_mv[i][1] : c->co_located_mv[i][1] * (time_pb - time_pp)/time_pp + ((i>>1)<<(qpel+4));
133 2537036 int fxy = (fx & mask) + ((fy & mask) << (qpel + 1));
134 2537036 int bxy = (bx & mask) + ((by & mask) << (qpel + 1));
135
136 2537036 uint8_t *dst = c->temp + 8 * (i & 1) + 8 * stride * (i >> 1);
137
2/2
✓ Branch 0 taken 961440 times.
✓ Branch 1 taken 1575596 times.
2537036 if (qpel) {
138 961440 c->qpel_put[1][fxy](dst, ref[0] + (fx >> 2) + (fy >> 2) * stride, stride);
139 961440 c->qpel_avg[1][bxy](dst, ref[8] + (bx >> 2) + (by >> 2) * stride, stride);
140 } else {
141 1575596 c->hpel_put[1][fxy](dst, ref[0] + (fx >> 1) + (fy >> 1) * stride, stride, 8);
142 1575596 c->hpel_avg[1][bxy](dst, ref[8] + (bx >> 1) + (by >> 1) * stride, stride, 8);
143 }
144 }
145 } else {
146 1833310 int fx = c->direct_basis_mv[0][0] + hx;
147 1833310 int fy = c->direct_basis_mv[0][1] + hy;
148
2/2
✓ Branch 0 taken 1372847 times.
✓ Branch 1 taken 460463 times.
1833310 int bx = hx ? fx - c->co_located_mv[0][0] : (c->co_located_mv[0][0] * (time_pb - time_pp)/time_pp);
149
2/2
✓ Branch 0 taken 1341845 times.
✓ Branch 1 taken 491465 times.
1833310 int by = hy ? fy - c->co_located_mv[0][1] : (c->co_located_mv[0][1] * (time_pb - time_pp)/time_pp);
150 1833310 int fxy = (fx & mask) + ((fy & mask) << (qpel + 1));
151 1833310 int bxy = (bx & mask) + ((by & mask) << (qpel + 1));
152
153
2/2
✓ Branch 0 taken 433681 times.
✓ Branch 1 taken 1399629 times.
1833310 if (qpel) {
154 433681 c->qpel_put[1][fxy](c->temp , ref[0] + (fx>>2) + (fy>>2)*stride , stride);
155 433681 c->qpel_put[1][fxy](c->temp + 8 , ref[0] + (fx>>2) + (fy>>2)*stride + 8 , stride);
156 433681 c->qpel_put[1][fxy](c->temp + 8*stride, ref[0] + (fx>>2) + (fy>>2)*stride + 8*stride, stride);
157 433681 c->qpel_put[1][fxy](c->temp + 8 + 8*stride, ref[0] + (fx>>2) + (fy>>2)*stride + 8 + 8*stride, stride);
158 433681 c->qpel_avg[1][bxy](c->temp , ref[8] + (bx>>2) + (by>>2)*stride , stride);
159 433681 c->qpel_avg[1][bxy](c->temp + 8 , ref[8] + (bx>>2) + (by>>2)*stride + 8 , stride);
160 433681 c->qpel_avg[1][bxy](c->temp + 8*stride, ref[8] + (bx>>2) + (by>>2)*stride + 8*stride, stride);
161 433681 c->qpel_avg[1][bxy](c->temp + 8 + 8*stride, ref[8] + (bx>>2) + (by>>2)*stride + 8 + 8*stride, stride);
162 } else {
163 av_assert2((fx >> 1) + 16 * s->c.mb_x >= -16);
164 av_assert2((fy >> 1) + 16 * s->c.mb_y >= -16);
165 av_assert2((fx >> 1) + 16 * s->c.mb_x <= s->c.width);
166 av_assert2((fy >> 1) + 16 * s->c.mb_y <= s->c.height);
167 av_assert2((bx >> 1) + 16 * s->c.mb_x >= -16);
168 av_assert2((by >> 1) + 16 * s->c.mb_y >= -16);
169 av_assert2((bx >> 1) + 16 * s->c.mb_x <= s->c.width);
170 av_assert2((by >> 1) + 16 * s->c.mb_y <= s->c.height);
171
172 1399629 c->hpel_put[0][fxy](c->temp, ref[0] + (fx >> 1) + (fy >> 1) * stride, stride, 16);
173 1399629 c->hpel_avg[0][bxy](c->temp, ref[8] + (bx >> 1) + (by >> 1) * stride, stride, 16);
174 }
175 }
176 2467569 d = cmp_func(s, c->temp, src[0], stride, 16);
177 } else
178 d = 256 * 256 * 256 * 32;
179 2467569 return d;
180 }
181
182 60979567 static av_always_inline int cmp_inline(MPVEncContext *const s, const int x, const int y, const int subx, const int suby,
183 const int size, const int h, int ref_index, int src_index,
184 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, int qpel, int chroma){
185 60979567 MotionEstContext *const c = &s->me;
186 60979567 const int stride= c->stride;
187 60979567 const int uvstride= c->uvstride;
188 60979567 const int dxy= subx + (suby<<(1+qpel)); //FIXME log2_subpel?
189 60979567 const int hx= subx + x*(1<<(1+qpel));
190 60979567 const int hy= suby + y*(1<<(1+qpel));
191 60979567 const uint8_t * const * const ref = c->ref[ref_index];
192 60979567 const uint8_t * const * const src = c->src[src_index];
193 int d;
194 //FIXME check chroma 4mv, (no crashes ...)
195 int uvdxy; /* no, it might not be used uninitialized */
196
2/2
✓ Branch 0 taken 8184182 times.
✓ Branch 1 taken 52795385 times.
60979567 if (dxy) {
197
2/2
✓ Branch 0 taken 6149783 times.
✓ Branch 1 taken 2034399 times.
8184182 if (qpel) {
198
1/2
✓ Branch 0 taken 6149783 times.
✗ Branch 1 not taken.
6149783 if (h << size == 16) {
199 6149783 c->qpel_put[size][dxy](c->temp, ref[0] + x + y * stride, stride); //FIXME prototype (add h)
200 } else if (size == 0 && h == 8) {
201 c->qpel_put[1][dxy](c->temp , ref[0] + x + y * stride , stride);
202 c->qpel_put[1][dxy](c->temp + 8, ref[0] + x + y * stride + 8, stride);
203 } else
204 av_assert2(0);
205
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 6149783 times.
6149783 if (chroma) {
206 int cx = hx / 2;
207 int cy = hy / 2;
208 cx = (cx >> 1) | (cx & 1);
209 cy = (cy >> 1) | (cy & 1);
210 uvdxy = (cx & 1) + 2 * (cy & 1);
211 // FIXME x/y wrong, but MPEG-4 qpel is sick anyway, we should drop as much of it as possible in favor for H.264
212 }
213 } else {
214 2034399 c->hpel_put[size][dxy](c->temp, ref[0] + x + y * stride, stride, h);
215
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2034399 times.
2034399 if (chroma)
216 uvdxy = dxy | (x & 1) | (2 * (y & 1));
217 }
218 8184182 d = cmp_func(s, c->temp, src[0], stride, h);
219 } else {
220 52795385 d = cmp_func(s, src[0], ref[0] + x + y * stride, stride, h);
221
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 52795385 times.
52795385 if (chroma)
222 uvdxy = (x & 1) + 2 * (y & 1);
223 }
224
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 60979567 times.
60979567 if (chroma) {
225 uint8_t *const uvtemp = c->temp + 16 * stride;
226 c->hpel_put[size + 1][uvdxy](uvtemp , ref[1] + (x >> 1) + (y >> 1) * uvstride, uvstride, h >> 1);
227 c->hpel_put[size + 1][uvdxy](uvtemp + 8, ref[2] + (x >> 1) + (y >> 1) * uvstride, uvstride, h >> 1);
228 d += chroma_cmp_func(s, uvtemp , src[1], uvstride, h >> 1);
229 d += chroma_cmp_func(s, uvtemp + 8, src[2], uvstride, h >> 1);
230 }
231 60979567 return d;
232 }
233
234 static int cmp_simple(MPVEncContext *const s, const int x, const int y,
235 int ref_index, int src_index,
236 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func){
237 return cmp_inline(s,x,y,0,0,0,16,ref_index,src_index, cmp_func, chroma_cmp_func, 0, 0);
238 }
239
240 static int cmp_fpel_internal(MPVEncContext *const s, const int x, const int y,
241 const int size, const int h, int ref_index, int src_index,
242 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){
243 if(flags&FLAG_DIRECT){
244 return cmp_direct_inline(s,x,y,0,0,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, flags&FLAG_QPEL);
245 }else{
246 return cmp_inline(s,x,y,0,0,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, 0, flags&FLAG_CHROMA);
247 }
248 }
249
250 55069748 static int cmp_internal(MPVEncContext *const s, const int x, const int y, const int subx, const int suby,
251 const int size, const int h, int ref_index, int src_index,
252 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){
253
2/2
✓ Branch 0 taken 1639753 times.
✓ Branch 1 taken 53429995 times.
55069748 if(flags&FLAG_DIRECT){
254 1639753 return cmp_direct_inline(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, flags&FLAG_QPEL);
255 }else{
256 53429995 return cmp_inline(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, flags&FLAG_QPEL, flags&FLAG_CHROMA);
257 }
258 }
259
260 /** @brief compares a block (either a full macroblock or a partition thereof)
261 against a proposed motion-compensated prediction of that block
262 */
263 55069748 static av_always_inline int cmp(MPVEncContext *const s, const int x, const int y, const int subx, const int suby,
264 const int size, const int h, int ref_index, int src_index,
265 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){
266 if(av_builtin_constant_p(flags) && av_builtin_constant_p(h) && av_builtin_constant_p(size)
267 && av_builtin_constant_p(subx) && av_builtin_constant_p(suby)
268 && flags==0 && h==16 && size==0 && subx==0 && suby==0){
269 return cmp_simple(s,x,y,ref_index,src_index, cmp_func, chroma_cmp_func);
270 }else if(av_builtin_constant_p(subx) && av_builtin_constant_p(suby)
271 && subx==0 && suby==0){
272 return cmp_fpel_internal(s,x,y,size,h,ref_index,src_index, cmp_func, chroma_cmp_func,flags);
273 }else{
274 55069748 return cmp_internal(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, flags);
275 }
276 }
277
278 2421988 static int cmp_hpel(MPVEncContext *const s, const int x, const int y, const int subx, const int suby,
279 const int size, const int h, int ref_index, int src_index,
280 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){
281
2/2
✓ Branch 0 taken 554408 times.
✓ Branch 1 taken 1867580 times.
2421988 if(flags&FLAG_DIRECT){
282 554408 return cmp_direct_inline(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, 0);
283 }else{
284 1867580 return cmp_inline(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, 0, flags&FLAG_CHROMA);
285 }
286 }
287
288 5955400 static int cmp_qpel(MPVEncContext *const s, const int x, const int y, const int subx, const int suby,
289 const int size, const int h, int ref_index, int src_index,
290 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){
291
2/2
✓ Branch 0 taken 273408 times.
✓ Branch 1 taken 5681992 times.
5955400 if(flags&FLAG_DIRECT){
292 273408 return cmp_direct_inline(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, 1);
293 }else{
294 5681992 return cmp_inline(s,x,y,subx,suby,size,h,ref_index,src_index, cmp_func, chroma_cmp_func, 1, flags&FLAG_CHROMA);
295 }
296 }
297
298 #include "motion_est_template.c"
299
300 static int zero_cmp(MPVEncContext *const s, const uint8_t *a, const uint8_t *b,
301 ptrdiff_t stride, int h)
302 {
303 return 0;
304 }
305
306 static void zero_hpel(uint8_t *a, const uint8_t *b, ptrdiff_t stride, int h){
307 }
308
309 230 av_cold int ff_me_init(MotionEstContext *c, AVCodecContext *avctx,
310 const MECmpContext *mecc, int mpvenc)
311 {
312 230 int cache_size = FFMIN(ME_MAP_SIZE>>ME_MAP_SHIFT, 1<<ME_MAP_SHIFT);
313 230 int dia_size = FFMAX(FFABS(avctx->dia_size) & 255, FFABS(avctx->pre_dia_size) & 255);
314 int ret;
315
316
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 230 times.
230 if (FFMIN(avctx->dia_size, avctx->pre_dia_size) < -FFMIN(ME_MAP_SIZE, MAX_SAB_SIZE)) {
317 av_log(avctx, AV_LOG_ERROR, "ME_MAP size is too small for SAB diamond\n");
318 return AVERROR(EINVAL);
319 }
320
321 230 c->avctx = avctx;
322
323
2/2
✓ Branch 0 taken 8 times.
✓ Branch 1 taken 222 times.
230 if (avctx->codec_id == AV_CODEC_ID_H261)
324 8 avctx->me_sub_cmp = avctx->me_cmp;
325
326
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 230 times.
230 if (cache_size < 2 * dia_size)
327 av_log(avctx, AV_LOG_INFO, "ME_MAP size may be a little small for the selected diamond size\n");
328
329 230 ret = ff_set_cmp(mecc, c->me_pre_cmp, avctx->me_pre_cmp, mpvenc);
330 230 ret |= ff_set_cmp(mecc, c->me_cmp, avctx->me_cmp, mpvenc);
331 230 ret |= ff_set_cmp(mecc, c->me_sub_cmp, avctx->me_sub_cmp, mpvenc);
332 230 ret |= ff_set_cmp(mecc, c->mb_cmp, avctx->mb_cmp, mpvenc);
333
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 230 times.
230 if (ret < 0)
334 return ret;
335
336 230 c->sse = mecc->sse[0];
337 230 memcpy(c->pix_abs, mecc->pix_abs, sizeof(c->pix_abs));
338
339 230 c->flags = get_flags(c, 0, avctx->me_cmp & FF_CMP_CHROMA);
340 230 c->sub_flags = get_flags(c, 0, avctx->me_sub_cmp & FF_CMP_CHROMA);
341 230 c->mb_flags = get_flags(c, 0, avctx->mb_cmp & FF_CMP_CHROMA);
342
343
2/2
✓ Branch 0 taken 8 times.
✓ Branch 1 taken 222 times.
230 if (avctx->codec_id == AV_CODEC_ID_H261) {
344 8 c->sub_motion_search = no_sub_motion_search;
345
2/2
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 210 times.
222 } else if (avctx->flags & AV_CODEC_FLAG_QPEL) {
346 12 c->sub_motion_search= qpel_motion_search;
347 }else{
348
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 210 times.
210 if(c->avctx->me_sub_cmp&FF_CMP_CHROMA)
349 c->sub_motion_search= hpel_motion_search;
350
2/2
✓ Branch 0 taken 191 times.
✓ Branch 1 taken 19 times.
210 else if( c->avctx->me_sub_cmp == FF_CMP_SAD
351
1/2
✓ Branch 0 taken 191 times.
✗ Branch 1 not taken.
191 && c->avctx-> me_cmp == FF_CMP_SAD
352
1/2
✓ Branch 0 taken 191 times.
✗ Branch 1 not taken.
191 && c->avctx-> mb_cmp == FF_CMP_SAD)
353 191 c->sub_motion_search= sad_hpel_motion_search; // 2050 vs. 2450 cycles
354 else
355 19 c->sub_motion_search= hpel_motion_search;
356 }
357
358 /* 8x8 fullpel search would need a 4x4 chroma compare, which we do
359 * not have yet, and even if we had, the motion estimation code
360 * does not expect it. */
361
2/2
✓ Branch 0 taken 219 times.
✓ Branch 1 taken 11 times.
230 if (avctx->codec_id != AV_CODEC_ID_SNOW) {
362
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 219 times.
219 if ((avctx->me_cmp & FF_CMP_CHROMA) /* && !c->me_cmp[2] */)
363 c->me_cmp[2] = zero_cmp;
364
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 219 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
219 if ((avctx->me_sub_cmp & FF_CMP_CHROMA) && !c->me_sub_cmp[2])
365 c->me_sub_cmp[2] = zero_cmp;
366 }
367
368 230 return 0;
369 }
370
371 15467 void ff_me_init_pic(MPVEncContext *const s)
372 {
373 15467 MotionEstContext *const c = &s->me;
374
375 /*FIXME s->c.no_rounding b_type*/
376
2/2
✓ Branch 0 taken 530 times.
✓ Branch 1 taken 14937 times.
15467 if (c->avctx->flags & AV_CODEC_FLAG_QPEL) {
377 530 c->qpel_avg = s->c.qdsp.avg_qpel_pixels_tab;
378
2/2
✓ Branch 0 taken 99 times.
✓ Branch 1 taken 431 times.
530 if (s->c.no_rounding)
379 99 c->qpel_put = s->c.qdsp.put_no_rnd_qpel_pixels_tab;
380 else
381 431 c->qpel_put = s->c.qdsp.put_qpel_pixels_tab;
382 }
383 15467 c->hpel_avg = s->c.hdsp.avg_pixels_tab;
384
2/2
✓ Branch 0 taken 1806 times.
✓ Branch 1 taken 13661 times.
15467 if (s->c.no_rounding)
385 1806 c->hpel_put = s->c.hdsp.put_no_rnd_pixels_tab;
386 else
387 13661 c->hpel_put = s->c.hdsp.put_pixels_tab;
388
389
1/2
✓ Branch 0 taken 15467 times.
✗ Branch 1 not taken.
15467 if (s->c.linesize) {
390 15467 c->stride = s->c.linesize;
391 15467 c->uvstride = s->c.uvlinesize;
392 }else{
393 c->stride = 16*s->c.mb_width + 32;
394 c->uvstride = 8*s->c.mb_width + 16;
395 }
396
1/2
✓ Branch 0 taken 15467 times.
✗ Branch 1 not taken.
15467 if (s->c.codec_id != AV_CODEC_ID_SNOW) {
397 15467 c->hpel_put[2][0]= c->hpel_put[2][1]=
398 15467 c->hpel_put[2][2]= c->hpel_put[2][3]= zero_hpel;
399 }
400 /* Reset the average MB variance and scene change stats */
401 15467 c->scene_change_score = 0;
402 15467 c->mb_var_sum_temp =
403 15467 c->mc_mb_var_sum_temp = 0;
404 15467 }
405
406 #define CHECK_SAD_HALF_MV(suffix, x, y) \
407 {\
408 d = c->pix_abs[size][(x ? 1 : 0) + (y ? 2 : 0)](NULL, pix, ptr + ((x) >> 1), stride, h); \
409 d += (mv_penalty[pen_x + x] + mv_penalty[pen_y + y])*penalty_factor;\
410 COPY3_IF_LT(dminh, d, dx, x, dy, y)\
411 }
412
413 4872151 static int sad_hpel_motion_search(MPVEncContext *const s,
414 int *mx_ptr, int *my_ptr, int dmin,
415 int src_index, int ref_index,
416 int size, int h)
417 {
418 4872151 MotionEstContext *const c = &s->me;
419 4872151 const int penalty_factor= c->sub_penalty_factor;
420 int mx, my, dminh;
421 const uint8_t *pix, *ptr;
422 4872151 int stride= c->stride;
423 4872151 LOAD_COMMON
424
425 av_assert2(c->sub_flags == 0);
426
427
2/2
✓ Branch 0 taken 370151 times.
✓ Branch 1 taken 4502000 times.
4872151 if(c->skip){
428 370151 *mx_ptr = 0;
429 370151 *my_ptr = 0;
430 370151 return dmin;
431 }
432
433 4502000 pix = c->src[src_index][0];
434
435 4502000 mx = *mx_ptr;
436 4502000 my = *my_ptr;
437 4502000 ptr = c->ref[ref_index][0] + (my * stride) + mx;
438
439 4502000 dminh = dmin;
440
441
6/6
✓ Branch 0 taken 4424917 times.
✓ Branch 1 taken 77083 times.
✓ Branch 2 taken 4353936 times.
✓ Branch 3 taken 70981 times.
✓ Branch 4 taken 4242734 times.
✓ Branch 5 taken 111202 times.
4502000 if (mx > xmin && mx < xmax &&
442
2/2
✓ Branch 0 taken 4159830 times.
✓ Branch 1 taken 82904 times.
4242734 my > ymin && my < ymax) {
443 4159830 int dx=0, dy=0;
444 int d, pen_x, pen_y;
445 4159830 const int index= my*(1<<ME_MAP_SHIFT) + mx;
446 4159830 const int t= score_map[(index-(1<<ME_MAP_SHIFT))&(ME_MAP_SIZE-1)];
447 4159830 const int l= score_map[(index- 1 )&(ME_MAP_SIZE-1)];
448 4159830 const int r= score_map[(index+ 1 )&(ME_MAP_SIZE-1)];
449 4159830 const int b= score_map[(index+(1<<ME_MAP_SHIFT))&(ME_MAP_SIZE-1)];
450 4159830 mx += mx;
451 4159830 my += my;
452
453
454 4159830 pen_x= pred_x + mx;
455 4159830 pen_y= pred_y + my;
456
457 4159830 ptr-= stride;
458
2/2
✓ Branch 0 taken 2113054 times.
✓ Branch 1 taken 2046776 times.
4159830 if(t<=b){
459 2113054 CHECK_SAD_HALF_MV(y2 , 0, -1)
460
2/2
✓ Branch 0 taken 1315937 times.
✓ Branch 1 taken 797117 times.
2113054 if(l<=r){
461 1315937 CHECK_SAD_HALF_MV(xy2, -1, -1)
462
2/2
✓ Branch 0 taken 769067 times.
✓ Branch 1 taken 546870 times.
1315937 if(t+r<=b+l){
463 769067 CHECK_SAD_HALF_MV(xy2, +1, -1)
464 769067 ptr+= stride;
465 }else{
466 546870 ptr+= stride;
467 546870 CHECK_SAD_HALF_MV(xy2, -1, +1)
468 }
469 1315937 CHECK_SAD_HALF_MV(x2 , -1, 0)
470 }else{
471 797117 CHECK_SAD_HALF_MV(xy2, +1, -1)
472
2/2
✓ Branch 0 taken 439266 times.
✓ Branch 1 taken 357851 times.
797117 if(t+l<=b+r){
473 439266 CHECK_SAD_HALF_MV(xy2, -1, -1)
474 439266 ptr+= stride;
475 }else{
476 357851 ptr+= stride;
477 357851 CHECK_SAD_HALF_MV(xy2, +1, +1)
478 }
479 797117 CHECK_SAD_HALF_MV(x2 , +1, 0)
480 }
481 }else{
482
2/2
✓ Branch 0 taken 780914 times.
✓ Branch 1 taken 1265862 times.
2046776 if(l<=r){
483
2/2
✓ Branch 0 taken 330006 times.
✓ Branch 1 taken 450908 times.
780914 if(t+l<=b+r){
484 330006 CHECK_SAD_HALF_MV(xy2, -1, -1)
485 330006 ptr+= stride;
486 }else{
487 450908 ptr+= stride;
488 450908 CHECK_SAD_HALF_MV(xy2, +1, +1)
489 }
490 780914 CHECK_SAD_HALF_MV(x2 , -1, 0)
491 780914 CHECK_SAD_HALF_MV(xy2, -1, +1)
492 }else{
493
2/2
✓ Branch 0 taken 561041 times.
✓ Branch 1 taken 704821 times.
1265862 if(t+r<=b+l){
494 561041 CHECK_SAD_HALF_MV(xy2, +1, -1)
495 561041 ptr+= stride;
496 }else{
497 704821 ptr+= stride;
498 704821 CHECK_SAD_HALF_MV(xy2, -1, +1)
499 }
500 1265862 CHECK_SAD_HALF_MV(x2 , +1, 0)
501 1265862 CHECK_SAD_HALF_MV(xy2, +1, +1)
502 }
503 2046776 CHECK_SAD_HALF_MV(y2 , 0, +1)
504 }
505 4159830 mx+=dx;
506 4159830 my+=dy;
507
508 }else{
509 342170 mx += mx;
510 342170 my += my;
511 }
512
513 4502000 *mx_ptr = mx;
514 4502000 *my_ptr = my;
515 4502000 return dminh;
516 }
517
518 2433399 static inline void set_p_mv_tables(MPVEncContext *const s, int mx, int my, int mv4)
519 {
520 2433399 const int xy = s->c.mb_x + s->c.mb_y * s->c.mb_stride;
521
522 2433399 s->p_mv_table[xy][0] = mx;
523 2433399 s->p_mv_table[xy][1] = my;
524
525 /* has already been set to the 4 MV if 4MV is done */
526
2/2
✓ Branch 0 taken 2170337 times.
✓ Branch 1 taken 263062 times.
2433399 if(mv4){
527 2170337 int mot_xy = s->c.block_index[0];
528
529 2170337 s->c.cur_pic.motion_val[0][mot_xy ][0] = mx;
530 2170337 s->c.cur_pic.motion_val[0][mot_xy ][1] = my;
531 2170337 s->c.cur_pic.motion_val[0][mot_xy + 1][0] = mx;
532 2170337 s->c.cur_pic.motion_val[0][mot_xy + 1][1] = my;
533
534 2170337 mot_xy += s->c.b8_stride;
535 2170337 s->c.cur_pic.motion_val[0][mot_xy ][0] = mx;
536 2170337 s->c.cur_pic.motion_val[0][mot_xy ][1] = my;
537 2170337 s->c.cur_pic.motion_val[0][mot_xy + 1][0] = mx;
538 2170337 s->c.cur_pic.motion_val[0][mot_xy + 1][1] = my;
539 }
540 2433399 }
541
542 /**
543 * get fullpel ME search limits.
544 */
545 3804343 static inline void get_limits(MPVEncContext *const s, int x, int y, int bframe)
546 {
547 3804343 MotionEstContext *const c = &s->me;
548
2/2
✓ Branch 0 taken 168764 times.
✓ Branch 1 taken 3635579 times.
3804343 int range= c->avctx->me_range >> (1 + !!(c->flags&FLAG_QPEL));
549
2/2
✓ Branch 0 taken 168764 times.
✓ Branch 1 taken 3635579 times.
3804343 int max_range = MAX_MV >> (1 + !!(c->flags&FLAG_QPEL));
550 /*
551 if(c->avctx->me_range) c->range= c->avctx->me_range >> 1;
552 else c->range= 16;
553 */
554
2/2
✓ Branch 0 taken 1716832 times.
✓ Branch 1 taken 2087511 times.
3804343 if (c->unrestricted_mv) {
555 1716832 c->xmin = - x - 16;
556 1716832 c->ymin = - y - 16;
557 1716832 c->xmax = - x + s->c.width;
558 1716832 c->ymax = - y + s->c.height;
559
2/2
✓ Branch 0 taken 107415 times.
✓ Branch 1 taken 1980096 times.
2087511 } else if (!(av_builtin_constant_p(bframe) && bframe) && s->c.out_format == FMT_H261){
560 // Search range of H.261 is different from other codec standards
561
2/2
✓ Branch 0 taken 102528 times.
✓ Branch 1 taken 4887 times.
107415 c->xmin = (x > 15) ? - 15 : 0;
562
2/2
✓ Branch 0 taken 101442 times.
✓ Branch 1 taken 5973 times.
107415 c->ymin = (y > 15) ? - 15 : 0;
563
2/2
✓ Branch 0 taken 102528 times.
✓ Branch 1 taken 4887 times.
107415 c->xmax = (x < s->c.mb_width * 16 - 16) ? 15 : 0;
564
2/2
✓ Branch 0 taken 101442 times.
✓ Branch 1 taken 5973 times.
107415 c->ymax = (y < s->c.mb_height * 16 - 16) ? 15 : 0;
565 } else {
566 1980096 c->xmin = - x;
567 1980096 c->ymin = - y;
568 1980096 c->xmax = - x + s->c.mb_width *16 - 16;
569 1980096 c->ymax = - y + s->c.mb_height*16 - 16;
570 }
571
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 3804343 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
3804343 if(!range || range > max_range)
572 3804343 range = max_range;
573
1/2
✓ Branch 0 taken 3804343 times.
✗ Branch 1 not taken.
3804343 if(range){
574 3804343 c->xmin = FFMAX(c->xmin,-range);
575 3804343 c->xmax = FFMIN(c->xmax, range);
576 3804343 c->ymin = FFMAX(c->ymin,-range);
577 3804343 c->ymax = FFMIN(c->ymax, range);
578 }
579 3804343 }
580
581 263062 static inline void init_mv4_ref(MotionEstContext *c){
582 263062 const int stride= c->stride;
583
584 263062 c->ref[1][0] = c->ref[0][0] + 8;
585 263062 c->ref[2][0] = c->ref[0][0] + 8*stride;
586 263062 c->ref[3][0] = c->ref[2][0] + 8;
587 263062 c->src[1][0] = c->src[0][0] + 8;
588 263062 c->src[2][0] = c->src[0][0] + 8*stride;
589 263062 c->src[3][0] = c->src[2][0] + 8;
590 263062 }
591
592 263062 static inline int h263_mv4_search(MPVEncContext *const s, int mx, int my, int shift)
593 {
594 263062 MotionEstContext *const c = &s->me;
595 263062 const int size= 1;
596 263062 const int h=8;
597 int block;
598 int P[10][2];
599 263062 int dmin_sum=0, mx4_sum=0, my4_sum=0, i;
600 263062 int same=1;
601 263062 const int stride= c->stride;
602 263062 const uint8_t *mv_penalty = c->current_mv_penalty;
603
4/6
✓ Branch 0 taken 263062 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 2278 times.
✓ Branch 3 taken 260784 times.
✓ Branch 4 taken 2278 times.
✗ Branch 5 not taken.
263062 int safety_clipping = c->unrestricted_mv && (s->c.width&15) && (s->c.height&15);
604
605 263062 init_mv4_ref(c);
606
607
2/2
✓ Branch 0 taken 1052248 times.
✓ Branch 1 taken 263062 times.
1315310 for(block=0; block<4; block++){
608 int mx4, my4;
609 int pred_x4, pred_y4;
610 int dmin4;
611 static const int off[4]= {2, 1, 1, -1};
612 1052248 const int mot_stride = s->c.b8_stride;
613 1052248 const int mot_xy = s->c.block_index[block];
614
615
2/2
✓ Branch 0 taken 9112 times.
✓ Branch 1 taken 1043136 times.
1052248 if(safety_clipping){
616 9112 c->xmax = - 16*s->c.mb_x + s->c.width - 8*(block &1);
617 9112 c->ymax = - 16*s->c.mb_y + s->c.height - 8*(block>>1);
618 }
619
620 1052248 P_LEFT[0] = s->c.cur_pic.motion_val[0][mot_xy - 1][0];
621 1052248 P_LEFT[1] = s->c.cur_pic.motion_val[0][mot_xy - 1][1];
622
623
2/2
✓ Branch 0 taken 1606 times.
✓ Branch 1 taken 1050642 times.
1052248 if (P_LEFT[0] > c->xmax * (1 << shift)) P_LEFT[0] = c->xmax * (1 << shift);
624
625 /* special case for first line */
626
4/4
✓ Branch 0 taken 65096 times.
✓ Branch 1 taken 987152 times.
✓ Branch 2 taken 32548 times.
✓ Branch 3 taken 32548 times.
1052248 if (s->c.first_slice_line && block < 2) {
627 32548 c->pred_x= pred_x4= P_LEFT[0];
628 32548 c->pred_y= pred_y4= P_LEFT[1];
629 } else {
630 1019700 P_TOP[0] = s->c.cur_pic.motion_val[0][mot_xy - mot_stride ][0];
631 1019700 P_TOP[1] = s->c.cur_pic.motion_val[0][mot_xy - mot_stride ][1];
632 1019700 P_TOPRIGHT[0] = s->c.cur_pic.motion_val[0][mot_xy - mot_stride + off[block]][0];
633 1019700 P_TOPRIGHT[1] = s->c.cur_pic.motion_val[0][mot_xy - mot_stride + off[block]][1];
634
2/2
✓ Branch 0 taken 1592 times.
✓ Branch 1 taken 1018108 times.
1019700 if (P_TOP[1] > c->ymax * (1 << shift)) P_TOP[1] = c->ymax * (1 << shift);
635
2/2
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 1019676 times.
1019700 if (P_TOPRIGHT[0] < c->xmin * (1 << shift)) P_TOPRIGHT[0] = c->xmin * (1 << shift);
636
2/2
✓ Branch 0 taken 1057 times.
✓ Branch 1 taken 1018643 times.
1019700 if (P_TOPRIGHT[0] > c->xmax * (1 << shift)) P_TOPRIGHT[0] = c->xmax * (1 << shift);
637
2/2
✓ Branch 0 taken 1526 times.
✓ Branch 1 taken 1018174 times.
1019700 if (P_TOPRIGHT[1] > c->ymax * (1 << shift)) P_TOPRIGHT[1] = c->ymax * (1 << shift);
638
639 1019700 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
640 1019700 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
641
642 1019700 c->pred_x= pred_x4 = P_MEDIAN[0];
643 1019700 c->pred_y= pred_y4 = P_MEDIAN[1];
644 }
645 1052248 P_MV1[0]= mx;
646 1052248 P_MV1[1]= my;
647
2/2
✓ Branch 0 taken 9112 times.
✓ Branch 1 taken 1043136 times.
1052248 if(safety_clipping)
648
2/2
✓ Branch 0 taken 82008 times.
✓ Branch 1 taken 9112 times.
91120 for(i=1; i<10; i++){
649
8/8
✓ Branch 0 taken 28944 times.
✓ Branch 1 taken 53064 times.
✓ Branch 2 taken 14472 times.
✓ Branch 3 taken 14472 times.
✓ Branch 4 taken 12864 times.
✓ Branch 5 taken 1608 times.
✓ Branch 6 taken 11256 times.
✓ Branch 7 taken 1608 times.
82008 if (s->c.first_slice_line && block < 2 && i > 1 && i < 9)
650 11256 continue;
651
4/4
✓ Branch 0 taken 39128 times.
✓ Branch 1 taken 31624 times.
✓ Branch 2 taken 30016 times.
✓ Branch 3 taken 9112 times.
70752 if (i>4 && i<9)
652 30016 continue;
653
2/2
✓ Branch 0 taken 1275 times.
✓ Branch 1 taken 39461 times.
40736 if (P[i][0] > c->xmax * (1 << shift)) P[i][0] = c->xmax * (1 << shift);
654
2/2
✓ Branch 0 taken 1597 times.
✓ Branch 1 taken 39139 times.
40736 if (P[i][1] > c->ymax * (1 << shift)) P[i][1] = c->ymax * (1 <<shift );
655 }
656
657 1052248 dmin4 = epzs_motion_search2(s, &mx4, &my4, P, block, block, s->p_mv_table, (1<<16)>>shift, 1);
658
659 1052248 dmin4= c->sub_motion_search(s, &mx4, &my4, dmin4, block, block, size, h);
660
661
2/2
✓ Branch 0 taken 212708 times.
✓ Branch 1 taken 839540 times.
1052248 if (c->me_sub_cmp[0] != c->mb_cmp[0]) {
662 int dxy;
663 212708 const int offset= ((block&1) + (block>>1)*stride)*8;
664 212708 uint8_t *dest_y = c->scratchpad + offset;
665
2/2
✓ Branch 0 taken 56744 times.
✓ Branch 1 taken 155964 times.
212708 if (s->c.quarter_sample) {
666 56744 const uint8_t *ref = c->ref[block][0] + (mx4>>2) + (my4>>2)*stride;
667 56744 dxy = ((my4 & 3) << 2) | (mx4 & 3);
668
669 56744 c->qpel_put[1][dxy](dest_y, ref, stride);
670 }else{
671 155964 const uint8_t *ref = c->ref[block][0] + (mx4>>1) + (my4>>1)*stride;
672 155964 dxy = ((my4 & 1) << 1) | (mx4 & 1);
673
674 155964 c->hpel_put[1][dxy](dest_y, ref, stride, h);
675 }
676 212708 dmin_sum+= (mv_penalty[mx4-pred_x4] + mv_penalty[my4-pred_y4])*c->mb_penalty_factor;
677 }else
678 839540 dmin_sum+= dmin4;
679
680
2/2
✓ Branch 0 taken 56744 times.
✓ Branch 1 taken 995504 times.
1052248 if (s->c.quarter_sample) {
681 56744 mx4_sum+= mx4/2;
682 56744 my4_sum+= my4/2;
683 }else{
684 995504 mx4_sum+= mx4;
685 995504 my4_sum+= my4;
686 }
687
688 1052248 s->c.cur_pic.motion_val[0][s->c.block_index[block]][0] = mx4;
689 1052248 s->c.cur_pic.motion_val[0][s->c.block_index[block]][1] = my4;
690
691
4/4
✓ Branch 0 taken 553402 times.
✓ Branch 1 taken 498846 times.
✓ Branch 2 taken 133393 times.
✓ Branch 3 taken 420009 times.
1052248 if(mx4 != mx || my4 != my) same=0;
692 }
693
694
2/2
✓ Branch 0 taken 41942 times.
✓ Branch 1 taken 221120 times.
263062 if(same)
695 41942 return INT_MAX;
696
697
2/2
✓ Branch 0 taken 52519 times.
✓ Branch 1 taken 168601 times.
221120 if (c->me_sub_cmp[0] != c->mb_cmp[0]) {
698 52519 dmin_sum += c->mb_cmp[0](s,
699 52519 s->new_pic->data[0] +
700 52519 s->c.mb_x * 16 + s->c.mb_y * 16 * stride,
701 52519 c->scratchpad, stride, 16);
702 }
703
704
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 221120 times.
221120 if(c->avctx->mb_cmp&FF_CMP_CHROMA){
705 int mx_chroma = ff_h263_round_chroma(mx4_sum);
706 int my_chroma = ff_h263_round_chroma(my4_sum);
707 int dxy = ((my_chroma & 1) << 1) | (mx_chroma & 1);
708
709 int offset = (s->c.mb_x*8 + (mx_chroma>>1)) + (s->c.mb_y*8 + (my_chroma>>1))*s->c.uvlinesize;
710
711 c->hpel_put[1][dxy](c->scratchpad , s->c.last_pic.data[1] + offset, s->c.uvlinesize, 8);
712 c->hpel_put[1][dxy](c->scratchpad + 8, s->c.last_pic.data[2] + offset, s->c.uvlinesize, 8);
713
714 dmin_sum += c->mb_cmp[1](s, s->new_pic->data[1] + s->c.mb_x * 8 + s->c.mb_y * 8 * s->c.uvlinesize, c->scratchpad, s->c.uvlinesize, 8);
715 dmin_sum += c->mb_cmp[1](s, s->new_pic->data[2] + s->c.mb_x * 8 + s->c.mb_y * 8 * s->c.uvlinesize, c->scratchpad + 8, s->c.uvlinesize, 8);
716 }
717
718 221120 c->pred_x= mx;
719 221120 c->pred_y= my;
720
721
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 221120 times.
221120 switch(c->avctx->mb_cmp&0xFF){
722 /*case FF_CMP_SSE:
723 return dmin_sum+ 32*s->c.qscale*s->c.qscale;*/
724 case FF_CMP_RD:
725 return dmin_sum;
726 221120 default:
727 221120 return dmin_sum+ 11*c->mb_penalty_factor;
728 }
729 }
730
731 331233 static inline void init_interlaced_ref(MPVEncContext *const s, int ref_index)
732 {
733 331233 MotionEstContext *const c = &s->me;
734
735 331233 c->ref[1+ref_index][0] = c->ref[0+ref_index][0] + s->c.linesize;
736 331233 c->src[1][0] = c->src[0][0] + s->c.linesize;
737
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 331233 times.
331233 if(c->flags & FLAG_CHROMA){
738 c->ref[1+ref_index][1] = c->ref[0+ref_index][1] + s->c.uvlinesize;
739 c->ref[1+ref_index][2] = c->ref[0+ref_index][2] + s->c.uvlinesize;
740 c->src[1][1] = c->src[0][1] + s->c.uvlinesize;
741 c->src[1][2] = c->src[0][2] + s->c.uvlinesize;
742 }
743 331233 }
744
745 331233 static int interlaced_search(MPVEncContext *const s, int ref_index,
746 int16_t (*mv_tables[2][2])[2], uint8_t *field_select_tables[2], int mx, int my, int user_field_select)
747 {
748 331233 MotionEstContext *const c = &s->me;
749 331233 const int size=0;
750 331233 const int h=8;
751 int block;
752 int P[10][2];
753 331233 const uint8_t * const mv_penalty = c->current_mv_penalty;
754 331233 int same=1;
755 331233 const int stride = 2*s->c.linesize;
756 331233 int dmin_sum= 0;
757 331233 const int mot_stride = s->c.mb_stride;
758 331233 const int xy = s->c.mb_x + s->c.mb_y*mot_stride;
759
760 331233 c->ymin>>=1;
761 331233 c->ymax>>=1;
762 331233 c->stride<<=1;
763 331233 c->uvstride<<=1;
764 331233 init_interlaced_ref(s, ref_index);
765
766
2/2
✓ Branch 0 taken 662466 times.
✓ Branch 1 taken 331233 times.
993699 for(block=0; block<2; block++){
767 int field_select;
768 662466 int best_dmin= INT_MAX;
769 662466 int best_field= -1;
770
771
2/2
✓ Branch 0 taken 1324932 times.
✓ Branch 1 taken 662466 times.
1987398 for(field_select=0; field_select<2; field_select++){
772 int dmin, mx_i, my_i;
773 1324932 int16_t (*mv_table)[2]= mv_tables[block][field_select];
774
775
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1324932 times.
1324932 if(user_field_select){
776 av_assert1(field_select==0 || field_select==1);
777 av_assert1(field_select_tables[block][xy]==0 || field_select_tables[block][xy]==1);
778 if(field_select_tables[block][xy] != field_select)
779 continue;
780 }
781
782 1324932 P_LEFT[0] = mv_table[xy - 1][0];
783 1324932 P_LEFT[1] = mv_table[xy - 1][1];
784
2/2
✓ Branch 0 taken 32472 times.
✓ Branch 1 taken 1292460 times.
1324932 if(P_LEFT[0] > (c->xmax<<1)) P_LEFT[0] = (c->xmax<<1);
785
786 1324932 c->pred_x= P_LEFT[0];
787 1324932 c->pred_y= P_LEFT[1];
788
789
2/2
✓ Branch 0 taken 1206192 times.
✓ Branch 1 taken 118740 times.
1324932 if (!s->c.first_slice_line) {
790 1206192 P_TOP[0] = mv_table[xy - mot_stride][0];
791 1206192 P_TOP[1] = mv_table[xy - mot_stride][1];
792 1206192 P_TOPRIGHT[0] = mv_table[xy - mot_stride + 1][0];
793 1206192 P_TOPRIGHT[1] = mv_table[xy - mot_stride + 1][1];
794
2/2
✓ Branch 0 taken 32877 times.
✓ Branch 1 taken 1173315 times.
1206192 if(P_TOP[1] > (c->ymax<<1)) P_TOP[1] = (c->ymax<<1);
795
2/2
✓ Branch 0 taken 26013 times.
✓ Branch 1 taken 1180179 times.
1206192 if (P_TOPRIGHT[0] < c->xmin * (1 << 1)) P_TOPRIGHT[0] = c->xmin * (1 << 1);
796
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1206192 times.
1206192 if(P_TOPRIGHT[0] > (c->xmax<<1)) P_TOPRIGHT[0]= (c->xmax<<1);
797
2/2
✓ Branch 0 taken 30765 times.
✓ Branch 1 taken 1175427 times.
1206192 if(P_TOPRIGHT[1] > (c->ymax<<1)) P_TOPRIGHT[1]= (c->ymax<<1);
798
799 1206192 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
800 1206192 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
801 }
802 1324932 P_MV1[0]= mx; //FIXME not correct if block != field_select
803 1324932 P_MV1[1]= my / 2;
804
805 1324932 dmin = epzs_motion_search2(s, &mx_i, &my_i, P, block, field_select+ref_index, mv_table, (1<<16)>>1, 0);
806
807 1324932 dmin= c->sub_motion_search(s, &mx_i, &my_i, dmin, block, field_select+ref_index, size, h);
808
809 1324932 mv_table[xy][0]= mx_i;
810 1324932 mv_table[xy][1]= my_i;
811
812
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1324932 times.
1324932 if (c->me_sub_cmp[0] != c->mb_cmp[0]) {
813 int dxy;
814
815 //FIXME chroma ME
816 const uint8_t *ref = c->ref[field_select+ref_index][0] + (mx_i>>1) + (my_i>>1)*stride;
817 dxy = ((my_i & 1) << 1) | (mx_i & 1);
818
819 c->hpel_put[size][dxy](c->scratchpad, ref, stride, h);
820 dmin = c->mb_cmp[size](s, c->src[block][0], c->scratchpad, stride, h);
821 dmin+= (mv_penalty[mx_i-c->pred_x] + mv_penalty[my_i-c->pred_y] + 1)*c->mb_penalty_factor;
822 }else
823 1324932 dmin+= c->mb_penalty_factor; //field_select bits
824
825 1324932 dmin += field_select != block; //slightly prefer same field
826
827
2/2
✓ Branch 0 taken 994745 times.
✓ Branch 1 taken 330187 times.
1324932 if(dmin < best_dmin){
828 994745 best_dmin= dmin;
829 994745 best_field= field_select;
830 }
831 }
832 {
833 662466 int16_t (*mv_table)[2]= mv_tables[block][best_field];
834
835
2/2
✓ Branch 0 taken 257294 times.
✓ Branch 1 taken 405172 times.
662466 if(mv_table[xy][0] != mx) same=0; //FIXME check if these checks work and are any good at all
836
2/2
✓ Branch 0 taken 59142 times.
✓ Branch 1 taken 603324 times.
662466 if(mv_table[xy][1]&1) same=0;
837
2/2
✓ Branch 0 taken 444919 times.
✓ Branch 1 taken 217547 times.
662466 if(mv_table[xy][1]*2 != my) same=0;
838
2/2
✓ Branch 0 taken 318666 times.
✓ Branch 1 taken 343800 times.
662466 if(best_field != block) same=0;
839 }
840
841 662466 field_select_tables[block][xy]= best_field;
842 662466 dmin_sum += best_dmin;
843 }
844
845 331233 c->ymin *= 2;
846 331233 c->ymax<<=1;
847 331233 c->stride>>=1;
848 331233 c->uvstride>>=1;
849
850
2/2
✓ Branch 0 taken 55300 times.
✓ Branch 1 taken 275933 times.
331233 if(same)
851 55300 return INT_MAX;
852
853
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 275933 times.
275933 switch(c->avctx->mb_cmp&0xFF){
854 /*case FF_CMP_SSE:
855 return dmin_sum+ 32*s->c.qscale*s->c.qscale;*/
856 case FF_CMP_RD:
857 return dmin_sum;
858 275933 default:
859 275933 return dmin_sum+ 11*c->mb_penalty_factor;
860 }
861 }
862
863 8490924 static inline int get_penalty_factor(int lambda, int lambda2, int type){
864
3/7
✓ Branch 0 taken 7898425 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 323169 times.
✓ Branch 5 taken 269330 times.
✗ Branch 6 not taken.
8490924 switch(type&0xFF){
865 7898425 default:
866 case FF_CMP_SAD:
867 7898425 return lambda>>FF_LAMBDA_SHIFT;
868 case FF_CMP_DCT:
869 return (3*lambda)>>(FF_LAMBDA_SHIFT+1);
870 case FF_CMP_W53:
871 return (4*lambda)>>(FF_LAMBDA_SHIFT);
872 case FF_CMP_W97:
873 return (2*lambda)>>(FF_LAMBDA_SHIFT);
874 323169 case FF_CMP_SATD:
875 case FF_CMP_DCT264:
876 323169 return (2*lambda)>>FF_LAMBDA_SHIFT;
877 269330 case FF_CMP_RD:
878 case FF_CMP_PSNR:
879 case FF_CMP_SSE:
880 case FF_CMP_NSSE:
881 269330 return lambda2>>FF_LAMBDA_SHIFT;
882 case FF_CMP_BIT:
883 case FF_CMP_MEDIAN_SAD:
884 return 1;
885 }
886 }
887
888 2433399 void ff_estimate_p_frame_motion(MPVEncContext *const s,
889 int mb_x, int mb_y)
890 {
891 2433399 MotionEstContext *const c = &s->me;
892 const uint8_t *pix, *ppix;
893 2433399 int sum, mx = 0, my = 0, dmin = 0;
894 int varc; ///< the variance of the block (sum of squared (p[y][x]-average))
895 int vard; ///< sum of squared differences with the estimated motion vector
896 int P[10][2];
897 2433399 const int shift = 1 + s->c.quarter_sample;
898 2433399 int mb_type=0;
899
900 2433399 init_ref(c, s->new_pic->data, s->c.last_pic.data, NULL, 16*mb_x, 16*mb_y, 0);
901
902
3/4
✓ Branch 0 taken 15570 times.
✓ Branch 1 taken 2417829 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 15570 times.
2433399 av_assert0(s->c.quarter_sample == 0 || s->c.quarter_sample == 1);
903
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2433399 times.
2433399 av_assert0(s->c.linesize == c->stride);
904
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2433399 times.
2433399 av_assert0(s->c.uvlinesize == c->uvstride);
905
906 2433399 c->penalty_factor = get_penalty_factor(s->lambda, s->lambda2, c->avctx->me_cmp);
907 2433399 c->sub_penalty_factor = get_penalty_factor(s->lambda, s->lambda2, c->avctx->me_sub_cmp);
908 2433399 c->mb_penalty_factor = get_penalty_factor(s->lambda, s->lambda2, c->avctx->mb_cmp);
909 2433399 c->current_mv_penalty = c->mv_penalty[s->f_code] + MAX_DMV;
910
911 2433399 get_limits(s, 16*mb_x, 16*mb_y, 0);
912 2433399 c->skip=0;
913
914 /* intra / predictive decision */
915 2433399 pix = c->src[0][0];
916 2433399 sum = s->mpvencdsp.pix_sum(pix, s->c.linesize);
917 2433399 varc = s->mpvencdsp.pix_norm1(pix, s->c.linesize) -
918 2433399 (((unsigned) sum * sum) >> 8) + 500;
919
920 2433399 s->mb_mean[s->c.mb_stride * mb_y + mb_x] = (sum + 128) >> 8;
921 2433399 s->mb_var [s->c.mb_stride * mb_y + mb_x] = (varc + 128) >> 8;
922 2433399 c->mb_var_sum_temp += (varc+128)>>8;
923
924
1/2
✓ Branch 0 taken 2433399 times.
✗ Branch 1 not taken.
2433399 if (c->motion_est != FF_ME_ZERO) {
925 2433399 const int mot_stride = s->c.b8_stride;
926 2433399 const int mot_xy = s->c.block_index[0];
927
928 2433399 P_LEFT[0] = s->c.cur_pic.motion_val[0][mot_xy - 1][0];
929 2433399 P_LEFT[1] = s->c.cur_pic.motion_val[0][mot_xy - 1][1];
930
931
2/2
✓ Branch 0 taken 21311 times.
✓ Branch 1 taken 2412088 times.
2433399 if (P_LEFT[0] > (c->xmax << shift))
932 21311 P_LEFT[0] = c->xmax << shift;
933
934
2/2
✓ Branch 0 taken 2246867 times.
✓ Branch 1 taken 186532 times.
2433399 if (!s->c.first_slice_line) {
935 2246867 P_TOP[0] = s->c.cur_pic.motion_val[0][mot_xy - mot_stride ][0];
936 2246867 P_TOP[1] = s->c.cur_pic.motion_val[0][mot_xy - mot_stride ][1];
937 2246867 P_TOPRIGHT[0] = s->c.cur_pic.motion_val[0][mot_xy - mot_stride + 2][0];
938 2246867 P_TOPRIGHT[1] = s->c.cur_pic.motion_val[0][mot_xy - mot_stride + 2][1];
939
2/2
✓ Branch 0 taken 23791 times.
✓ Branch 1 taken 2223076 times.
2246867 if (P_TOP[1] > (c->ymax << shift))
940 23791 P_TOP[1] = c->ymax << shift;
941
2/2
✓ Branch 0 taken 22756 times.
✓ Branch 1 taken 2224111 times.
2246867 if (P_TOPRIGHT[0] < (c->xmin * (1 << shift)))
942 22756 P_TOPRIGHT[0] = c->xmin * (1 << shift);
943
2/2
✓ Branch 0 taken 21964 times.
✓ Branch 1 taken 2224903 times.
2246867 if (P_TOPRIGHT[1] > (c->ymax * (1 << shift)))
944 21964 P_TOPRIGHT[1] = c->ymax * (1 << shift);
945
946 2246867 P_MEDIAN[0] = mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
947 2246867 P_MEDIAN[1] = mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
948
949
2/2
✓ Branch 0 taken 1147947 times.
✓ Branch 1 taken 1098920 times.
2246867 if (s->c.out_format == FMT_H263) {
950 1147947 c->pred_x = P_MEDIAN[0];
951 1147947 c->pred_y = P_MEDIAN[1];
952 } else { /* MPEG-1 at least */
953 1098920 c->pred_x = P_LEFT[0];
954 1098920 c->pred_y = P_LEFT[1];
955 }
956 } else {
957 186532 c->pred_x = P_LEFT[0];
958 186532 c->pred_y = P_LEFT[1];
959 }
960 2433399 dmin = ff_epzs_motion_search(s, &mx, &my, P, 0, 0, s->p_mv_table, (1<<16)>>shift, 0, 16);
961 }
962
963 /* At this point (mx,my) are full-pell and the relative displacement */
964 2433399 ppix = c->ref[0][0] + (my * s->c.linesize) + mx;
965
966 2433399 vard = c->sse(NULL, pix, ppix, s->c.linesize, 16);
967
968 2433399 s->mc_mb_var[s->c.mb_stride * mb_y + mb_x] = (vard+128)>>8;
969 2433399 c->mc_mb_var_sum_temp += (vard+128)>>8;
970
971
2/2
✓ Branch 0 taken 373674 times.
✓ Branch 1 taken 2059725 times.
2433399 if (c->avctx->mb_decision > FF_MB_DECISION_SIMPLE) {
972 373674 int p_score = FFMIN(vard, varc - 500 + (s->lambda2 >> FF_LAMBDA_SHIFT)*100);
973 373674 int i_score = varc - 500 + (s->lambda2 >> FF_LAMBDA_SHIFT)*20;
974 373674 c->scene_change_score+= ff_sqrt(p_score) - ff_sqrt(i_score);
975
976
3/4
✓ Branch 0 taken 100011 times.
✓ Branch 1 taken 273663 times.
✓ Branch 2 taken 100011 times.
✗ Branch 3 not taken.
373674 if (vard*2 + 200*256 > varc && !s->intra_penalty)
977 100011 mb_type|= CANDIDATE_MB_TYPE_INTRA;
978
3/4
✓ Branch 0 taken 2109 times.
✓ Branch 1 taken 371565 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 2109 times.
373674 if (varc*2 + 200*256 > vard || s->c.qscale > 24){
979 // if (varc*2 + 200*256 + 50*(s->lambda2>>FF_LAMBDA_SHIFT) > vard){
980 371565 mb_type|= CANDIDATE_MB_TYPE_INTER;
981 371565 c->sub_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16);
982
2/2
✓ Branch 0 taken 72444 times.
✓ Branch 1 taken 299121 times.
371565 if (s->mpv_flags & FF_MPV_FLAG_MV0)
983
4/4
✓ Branch 0 taken 4790 times.
✓ Branch 1 taken 67654 times.
✓ Branch 2 taken 4230 times.
✓ Branch 3 taken 560 times.
72444 if(mx || my)
984 71884 mb_type |= CANDIDATE_MB_TYPE_SKIPPED; //FIXME check difference
985 }else{
986 2109 mx *= 1 << shift;
987 2109 my *= 1 << shift;
988 }
989
2/2
✓ Branch 0 taken 289035 times.
✓ Branch 1 taken 84639 times.
373674 if ((c->avctx->flags & AV_CODEC_FLAG_4MV)
990
6/6
✓ Branch 0 taken 289028 times.
✓ Branch 1 taken 7 times.
✓ Branch 2 taken 272236 times.
✓ Branch 3 taken 16792 times.
✓ Branch 4 taken 263062 times.
✓ Branch 5 taken 9174 times.
289035 && !c->skip && varc>50<<8 && vard>10<<8){
991
2/2
✓ Branch 1 taken 221120 times.
✓ Branch 2 taken 41942 times.
263062 if(h263_mv4_search(s, mx, my, shift) < INT_MAX)
992 221120 mb_type|=CANDIDATE_MB_TYPE_INTER4V;
993
994 263062 set_p_mv_tables(s, mx, my, 0);
995 }else
996 110612 set_p_mv_tables(s, mx, my, 1);
997
2/2
✓ Branch 0 taken 15600 times.
✓ Branch 1 taken 358074 times.
373674 if ((c->avctx->flags & AV_CODEC_FLAG_INTERLACED_ME)
998
1/2
✓ Branch 0 taken 15600 times.
✗ Branch 1 not taken.
15600 && !c->skip){ //FIXME varc/d checks
999
2/2
✓ Branch 1 taken 13535 times.
✓ Branch 2 taken 2065 times.
15600 if(interlaced_search(s, 0, s->c.p_field_mv_table, s->p_field_select_table, mx, my, 0) < INT_MAX)
1000 13535 mb_type |= CANDIDATE_MB_TYPE_INTER_I;
1001 }
1002 }else{
1003 int intra_score, i;
1004 2059725 mb_type= CANDIDATE_MB_TYPE_INTER;
1005
1006 2059725 dmin= c->sub_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16);
1007
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 2059725 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
2059725 if(c->avctx->me_sub_cmp != c->avctx->mb_cmp && !c->skip)
1008 dmin= get_mb_score(s, mx, my, 0, 0, 0, 16, 1);
1009
1010
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2059725 times.
2059725 if ((c->avctx->flags & AV_CODEC_FLAG_4MV)
1011 && !c->skip && varc>50<<8 && vard>10<<8){
1012 int dmin4= h263_mv4_search(s, mx, my, shift);
1013 if(dmin4 < dmin){
1014 mb_type= CANDIDATE_MB_TYPE_INTER4V;
1015 dmin=dmin4;
1016 }
1017 }
1018
2/2
✓ Branch 0 taken 85236 times.
✓ Branch 1 taken 1974489 times.
2059725 if ((c->avctx->flags & AV_CODEC_FLAG_INTERLACED_ME)
1019
2/2
✓ Branch 0 taken 85233 times.
✓ Branch 1 taken 3 times.
85236 && !c->skip){ //FIXME varc/d checks
1020 85233 int dmin_i= interlaced_search(s, 0, s->c.p_field_mv_table, s->p_field_select_table, mx, my, 0);
1021
2/2
✓ Branch 0 taken 11208 times.
✓ Branch 1 taken 74025 times.
85233 if(dmin_i < dmin){
1022 11208 mb_type = CANDIDATE_MB_TYPE_INTER_I;
1023 11208 dmin= dmin_i;
1024 }
1025 }
1026
1027 2059725 set_p_mv_tables(s, mx, my, mb_type!=CANDIDATE_MB_TYPE_INTER4V);
1028
1029 /* get intra luma score */
1030
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2059725 times.
2059725 if((c->avctx->mb_cmp&0xFF)==FF_CMP_SSE){
1031 intra_score= varc - 500;
1032 }else{
1033 2059725 unsigned mean = (sum+128)>>8;
1034 2059725 mean*= 0x01010101;
1035
1036
2/2
✓ Branch 0 taken 32955600 times.
✓ Branch 1 taken 2059725 times.
35015325 for(i=0; i<16; i++){
1037 32955600 *(uint32_t*)(&c->scratchpad[i*s->c.linesize+ 0]) = mean;
1038 32955600 *(uint32_t*)(&c->scratchpad[i*s->c.linesize+ 4]) = mean;
1039 32955600 *(uint32_t*)(&c->scratchpad[i*s->c.linesize+ 8]) = mean;
1040 32955600 *(uint32_t*)(&c->scratchpad[i*s->c.linesize+12]) = mean;
1041 }
1042
1043 2059725 intra_score= c->mb_cmp[0](s, c->scratchpad, pix, s->c.linesize, 16);
1044 }
1045 2059725 intra_score += c->mb_penalty_factor*16 + s->intra_penalty;
1046
1047
2/2
✓ Branch 0 taken 95409 times.
✓ Branch 1 taken 1964316 times.
2059725 if(intra_score < dmin){
1048 95409 mb_type= CANDIDATE_MB_TYPE_INTRA;
1049 95409 s->c.cur_pic.mb_type[mb_y*s->c.mb_stride + mb_x] = CANDIDATE_MB_TYPE_INTRA; //FIXME cleanup
1050 }else
1051 1964316 s->c.cur_pic.mb_type[mb_y*s->c.mb_stride + mb_x] = 0;
1052
1053 {
1054 2059725 int p_score = FFMIN(vard, varc-500+(s->lambda2>>FF_LAMBDA_SHIFT)*100);
1055 2059725 int i_score = varc-500+(s->lambda2>>FF_LAMBDA_SHIFT)*20;
1056 2059725 c->scene_change_score+= ff_sqrt(p_score) - ff_sqrt(i_score);
1057 }
1058 }
1059
1060 2433399 s->mb_type[mb_y*s->c.mb_stride + mb_x] = mb_type;
1061 2433399 }
1062
1063 int ff_pre_estimate_p_frame_motion(MPVEncContext *const s,
1064 int mb_x, int mb_y)
1065 {
1066 MotionEstContext *const c = &s->me;
1067 int mx, my, dmin;
1068 int P[10][2];
1069 const int shift = 1 + s->c.quarter_sample;
1070 const int xy = mb_x + mb_y*s->c.mb_stride;
1071 init_ref(c, s->new_pic->data, s->c.last_pic.data, NULL, 16*mb_x, 16*mb_y, 0);
1072
1073 av_assert0(s->c.quarter_sample == 0 || s->c.quarter_sample == 1);
1074
1075 c->pre_penalty_factor = get_penalty_factor(s->lambda, s->lambda2, c->avctx->me_pre_cmp);
1076 c->current_mv_penalty = c->mv_penalty[s->f_code] + MAX_DMV;
1077
1078 get_limits(s, 16*mb_x, 16*mb_y, 0);
1079 c->skip=0;
1080
1081 P_LEFT[0] = FFMAX(s->p_mv_table[xy + 1][0], c->xmin * (1 << shift));
1082 P_LEFT[1] = s->p_mv_table[xy + 1][1];
1083
1084 /* special case for first line */
1085 if (s->c.first_slice_line) {
1086 c->pred_x= P_LEFT[0];
1087 c->pred_y= P_LEFT[1];
1088 P_TOP[0]= P_TOPRIGHT[0]= P_MEDIAN[0]=
1089 P_TOP[1]= P_TOPRIGHT[1]= P_MEDIAN[1]= 0; //FIXME
1090 } else {
1091 P_TOP[0] = s->p_mv_table[xy + s->c.mb_stride ][0];
1092 P_TOP[1] = s->p_mv_table[xy + s->c.mb_stride ][1];
1093 P_TOPRIGHT[0] = s->p_mv_table[xy + s->c.mb_stride - 1][0];
1094 P_TOPRIGHT[1] = s->p_mv_table[xy + s->c.mb_stride - 1][1];
1095 if(P_TOP[1] < (c->ymin<<shift)) P_TOP[1] = (c->ymin<<shift);
1096 if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift);
1097 if(P_TOPRIGHT[1] < (c->ymin<<shift)) P_TOPRIGHT[1]= (c->ymin<<shift);
1098
1099 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1100 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
1101
1102 c->pred_x = P_MEDIAN[0];
1103 c->pred_y = P_MEDIAN[1];
1104 }
1105
1106 dmin = ff_epzs_motion_search(s, &mx, &my, P, 0, 0, s->p_mv_table, (1<<16)>>shift, 0, 16);
1107
1108 s->p_mv_table[xy][0] = mx<<shift;
1109 s->p_mv_table[xy][1] = my<<shift;
1110
1111 return dmin;
1112 }
1113
1114 793818 static int estimate_motion_b(MPVEncContext *const s, int mb_x, int mb_y,
1115 int16_t (*mv_table)[2], int ref_index, int f_code)
1116 {
1117 793818 MotionEstContext *const c = &s->me;
1118 793818 int mx = 0, my = 0, dmin = 0;
1119 int P[10][2];
1120 793818 const int shift= 1+s->c.quarter_sample;
1121 793818 const int mot_stride = s->c.mb_stride;
1122 793818 const int mot_xy = mb_y*mot_stride + mb_x;
1123 793818 const uint8_t * const mv_penalty = c->mv_penalty[f_code] + MAX_DMV;
1124 int mv_scale;
1125
1126 793818 c->current_mv_penalty= mv_penalty;
1127
1128 793818 get_limits(s, 16*mb_x, 16*mb_y, 1);
1129
1130
1/2
✓ Branch 0 taken 793818 times.
✗ Branch 1 not taken.
793818 if (c->motion_est != FF_ME_ZERO) {
1131 793818 P_LEFT[0] = mv_table[mot_xy - 1][0];
1132 793818 P_LEFT[1] = mv_table[mot_xy - 1][1];
1133
1134
2/2
✓ Branch 0 taken 10093 times.
✓ Branch 1 taken 783725 times.
793818 if (P_LEFT[0] > (c->xmax << shift)) P_LEFT[0] = (c->xmax << shift);
1135
1136 /* special case for first line */
1137
2/2
✓ Branch 0 taken 735008 times.
✓ Branch 1 taken 58810 times.
793818 if (!s->c.first_slice_line) {
1138 735008 P_TOP[0] = mv_table[mot_xy - mot_stride ][0];
1139 735008 P_TOP[1] = mv_table[mot_xy - mot_stride ][1];
1140 735008 P_TOPRIGHT[0] = mv_table[mot_xy - mot_stride + 1][0];
1141 735008 P_TOPRIGHT[1] = mv_table[mot_xy - mot_stride + 1][1];
1142
2/2
✓ Branch 0 taken 11645 times.
✓ Branch 1 taken 723363 times.
735008 if (P_TOP[1] > (c->ymax << shift)) P_TOP[1] = (c->ymax << shift);
1143
2/2
✓ Branch 0 taken 8165 times.
✓ Branch 1 taken 726843 times.
735008 if (P_TOPRIGHT[0] < c->xmin * (1 << shift)) P_TOPRIGHT[0] = c->xmin * (1 << shift);
1144
2/2
✓ Branch 0 taken 10999 times.
✓ Branch 1 taken 724009 times.
735008 if (P_TOPRIGHT[1] > (c->ymax << shift)) P_TOPRIGHT[1] = (c->ymax << shift);
1145
1146 735008 P_MEDIAN[0] = mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1147 735008 P_MEDIAN[1] = mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
1148 }
1149 793818 c->pred_x = P_LEFT[0];
1150 793818 c->pred_y = P_LEFT[1];
1151
1152
2/2
✓ Branch 0 taken 396909 times.
✓ Branch 1 taken 396909 times.
793818 if(mv_table == s->b_forw_mv_table){
1153 396909 mv_scale= (s->c.pb_time<<16) / (s->c.pp_time<<shift);
1154 }else{
1155 396909 mv_scale = ((s->c.pb_time - s->c.pp_time) * (1 << 16)) / (s->c.pp_time<<shift);
1156 }
1157
1158 793818 dmin = ff_epzs_motion_search(s, &mx, &my, P, 0, ref_index, s->p_mv_table, mv_scale, 0, 16);
1159 }
1160
1161 793818 dmin= c->sub_motion_search(s, &mx, &my, dmin, 0, ref_index, 0, 16);
1162
1163
3/4
✓ Branch 0 taken 283718 times.
✓ Branch 1 taken 510100 times.
✓ Branch 2 taken 283718 times.
✗ Branch 3 not taken.
793818 if(c->avctx->me_sub_cmp != c->avctx->mb_cmp && !c->skip)
1164 283718 dmin= get_mb_score(s, mx, my, 0, ref_index, 0, 16, 1);
1165
1166 // s->mb_type[mb_y*s->c.mb_width + mb_x]= mb_type;
1167 793818 mv_table[mot_xy][0]= mx;
1168 793818 mv_table[mot_xy][1]= my;
1169
1170 793818 return dmin;
1171 }
1172
1173 5258102 static inline int check_bidir_mv(MPVEncContext *const s,
1174 int motion_fx, int motion_fy,
1175 int motion_bx, int motion_by,
1176 int pred_fx, int pred_fy,
1177 int pred_bx, int pred_by,
1178 int size, int h)
1179 {
1180 //FIXME optimize?
1181 //FIXME better f_code prediction (max mv & distance)
1182 //FIXME pointers
1183 5258102 MotionEstContext *const c = &s->me;
1184 5258102 const uint8_t * const mv_penalty_f = c->mv_penalty[s->f_code] + MAX_DMV; // f_code of the prev frame
1185 5258102 const uint8_t * const mv_penalty_b = c->mv_penalty[s->b_code] + MAX_DMV; // f_code of the prev frame
1186 5258102 int stride= c->stride;
1187 5258102 uint8_t *dest_y = c->scratchpad;
1188 const uint8_t *ptr;
1189 int dxy;
1190 int src_x, src_y;
1191 int fbmin;
1192 5258102 const uint8_t *const *src_data = c->src[0];
1193 5258102 const uint8_t *const *ref_data = c->ref[0];
1194 5258102 const uint8_t *const *ref2_data = c->ref[2];
1195
1196
2/2
✓ Branch 0 taken 625749 times.
✓ Branch 1 taken 4632353 times.
5258102 if(s->c.quarter_sample){
1197 625749 dxy = ((motion_fy & 3) << 2) | (motion_fx & 3);
1198 625749 src_x = motion_fx >> 2;
1199 625749 src_y = motion_fy >> 2;
1200
1201 625749 ptr = ref_data[0] + (src_y * stride) + src_x;
1202 625749 s->c.qdsp.put_qpel_pixels_tab[0][dxy](dest_y, ptr, stride);
1203
1204 625749 dxy = ((motion_by & 3) << 2) | (motion_bx & 3);
1205 625749 src_x = motion_bx >> 2;
1206 625749 src_y = motion_by >> 2;
1207
1208 625749 ptr = ref2_data[0] + (src_y * stride) + src_x;
1209 625749 s->c.qdsp.avg_qpel_pixels_tab[size][dxy](dest_y, ptr, stride);
1210 }else{
1211 4632353 dxy = ((motion_fy & 1) << 1) | (motion_fx & 1);
1212 4632353 src_x = motion_fx >> 1;
1213 4632353 src_y = motion_fy >> 1;
1214
1215 4632353 ptr = ref_data[0] + (src_y * stride) + src_x;
1216 4632353 s->c.hdsp.put_pixels_tab[size][dxy](dest_y , ptr , stride, h);
1217
1218 4632353 dxy = ((motion_by & 1) << 1) | (motion_bx & 1);
1219 4632353 src_x = motion_bx >> 1;
1220 4632353 src_y = motion_by >> 1;
1221
1222 4632353 ptr = ref2_data[0] + (src_y * stride) + src_x;
1223 4632353 s->c.hdsp.avg_pixels_tab[size][dxy](dest_y , ptr , stride, h);
1224 }
1225
1226 10516204 fbmin = (mv_penalty_f[motion_fx-pred_fx] + mv_penalty_f[motion_fy-pred_fy])*c->mb_penalty_factor
1227 5258102 +(mv_penalty_b[motion_bx-pred_bx] + mv_penalty_b[motion_by-pred_by])*c->mb_penalty_factor
1228 5258102 + c->mb_cmp[size](s, src_data[0], dest_y, stride, h); // FIXME new_pic
1229
1230 5258102 if(c->avctx->mb_cmp&FF_CMP_CHROMA){
1231 }
1232 //FIXME CHROMA !!!
1233
1234 5258102 return fbmin;
1235 }
1236
1237 /* refine the bidir vectors in hq mode and return the score in both lq & hq mode*/
1238 396909 static inline int bidir_refine(MPVEncContext *const s, int mb_x, int mb_y)
1239 {
1240 396909 MotionEstContext *const c = &s->me;
1241 396909 const int mot_stride = s->c.mb_stride;
1242 396909 const int xy = mb_y *mot_stride + mb_x;
1243 int fbmin;
1244 396909 int pred_fx= s->b_bidir_forw_mv_table[xy-1][0];
1245 396909 int pred_fy= s->b_bidir_forw_mv_table[xy-1][1];
1246 396909 int pred_bx= s->b_bidir_back_mv_table[xy-1][0];
1247 396909 int pred_by= s->b_bidir_back_mv_table[xy-1][1];
1248 396909 int motion_fx= s->b_bidir_forw_mv_table[xy][0]= s->b_forw_mv_table[xy][0];
1249 396909 int motion_fy= s->b_bidir_forw_mv_table[xy][1]= s->b_forw_mv_table[xy][1];
1250 396909 int motion_bx= s->b_bidir_back_mv_table[xy][0]= s->b_back_mv_table[xy][0];
1251 396909 int motion_by= s->b_bidir_back_mv_table[xy][1]= s->b_back_mv_table[xy][1];
1252 396909 const int flags= c->sub_flags;
1253 396909 const int qpel= flags&FLAG_QPEL;
1254 396909 const int shift= 1+qpel;
1255 396909 const int xmin= c->xmin * (1 << shift);
1256 396909 const int ymin= c->ymin * (1 << shift);
1257 396909 const int xmax= c->xmax<<shift;
1258 396909 const int ymax= c->ymax<<shift;
1259 #define HASH(fx,fy,bx,by) ((fx)+17*(fy)+63*(bx)+117*(by))
1260 #define HASH8(fx,fy,bx,by) ((uint8_t)HASH(fx,fy,bx,by))
1261 396909 int hashidx= HASH(motion_fx,motion_fy, motion_bx, motion_by);
1262 396909 uint8_t map[256] = { 0 };
1263
1264 396909 map[hashidx&255] = 1;
1265
1266 396909 fbmin= check_bidir_mv(s, motion_fx, motion_fy,
1267 motion_bx, motion_by,
1268 pred_fx, pred_fy,
1269 pred_bx, pred_by,
1270 0, 16);
1271
1272
1/2
✓ Branch 0 taken 396909 times.
✗ Branch 1 not taken.
396909 if (c->avctx->bidir_refine) {
1273 int end;
1274 static const uint8_t limittab[5]={0,8,32,64,80};
1275 396909 const int limit = limittab[c->avctx->bidir_refine];
1276 static const int8_t vect[][4]={
1277 { 0, 0, 0, 1}, { 0, 0, 0,-1}, { 0, 0, 1, 0}, { 0, 0,-1, 0}, { 0, 1, 0, 0}, { 0,-1, 0, 0}, { 1, 0, 0, 0}, {-1, 0, 0, 0},
1278
1279 { 0, 0, 1, 1}, { 0, 0,-1,-1}, { 0, 1, 1, 0}, { 0,-1,-1, 0}, { 1, 1, 0, 0}, {-1,-1, 0, 0}, { 1, 0, 0, 1}, {-1, 0, 0,-1},
1280 { 0, 1, 0, 1}, { 0,-1, 0,-1}, { 1, 0, 1, 0}, {-1, 0,-1, 0},
1281 { 0, 0,-1, 1}, { 0, 0, 1,-1}, { 0,-1, 1, 0}, { 0, 1,-1, 0}, {-1, 1, 0, 0}, { 1,-1, 0, 0}, { 1, 0, 0,-1}, {-1, 0, 0, 1},
1282 { 0,-1, 0, 1}, { 0, 1, 0,-1}, {-1, 0, 1, 0}, { 1, 0,-1, 0},
1283
1284 { 0, 1, 1, 1}, { 0,-1,-1,-1}, { 1, 1, 1, 0}, {-1,-1,-1, 0}, { 1, 1, 0, 1}, {-1,-1, 0,-1}, { 1, 0, 1, 1}, {-1, 0,-1,-1},
1285 { 0,-1, 1, 1}, { 0, 1,-1,-1}, {-1, 1, 1, 0}, { 1,-1,-1, 0}, { 1, 1, 0,-1}, {-1,-1, 0, 1}, { 1, 0,-1, 1}, {-1, 0, 1,-1},
1286 { 0, 1,-1, 1}, { 0,-1, 1,-1}, { 1,-1, 1, 0}, {-1, 1,-1, 0}, {-1, 1, 0, 1}, { 1,-1, 0,-1}, { 1, 0, 1,-1}, {-1, 0,-1, 1},
1287 { 0, 1, 1,-1}, { 0,-1,-1, 1}, { 1, 1,-1, 0}, {-1,-1, 1, 0}, { 1,-1, 0, 1}, {-1, 1, 0,-1}, {-1, 0, 1, 1}, { 1, 0,-1,-1},
1288
1289 { 1, 1, 1, 1}, {-1,-1,-1,-1},
1290 { 1, 1, 1,-1}, {-1,-1,-1, 1}, { 1, 1,-1, 1}, {-1,-1, 1,-1}, { 1,-1, 1, 1}, {-1, 1,-1,-1}, {-1, 1, 1, 1}, { 1,-1,-1,-1},
1291 { 1, 1,-1,-1}, {-1,-1, 1, 1}, { 1,-1,-1, 1}, {-1, 1, 1,-1}, { 1,-1, 1,-1}, {-1, 1,-1, 1},
1292 };
1293 static const uint8_t hash[]={
1294 HASH8( 0, 0, 0, 1), HASH8( 0, 0, 0,-1), HASH8( 0, 0, 1, 0), HASH8( 0, 0,-1, 0), HASH8( 0, 1, 0, 0), HASH8( 0,-1, 0, 0), HASH8( 1, 0, 0, 0), HASH8(-1, 0, 0, 0),
1295
1296 HASH8( 0, 0, 1, 1), HASH8( 0, 0,-1,-1), HASH8( 0, 1, 1, 0), HASH8( 0,-1,-1, 0), HASH8( 1, 1, 0, 0), HASH8(-1,-1, 0, 0), HASH8( 1, 0, 0, 1), HASH8(-1, 0, 0,-1),
1297 HASH8( 0, 1, 0, 1), HASH8( 0,-1, 0,-1), HASH8( 1, 0, 1, 0), HASH8(-1, 0,-1, 0),
1298 HASH8( 0, 0,-1, 1), HASH8( 0, 0, 1,-1), HASH8( 0,-1, 1, 0), HASH8( 0, 1,-1, 0), HASH8(-1, 1, 0, 0), HASH8( 1,-1, 0, 0), HASH8( 1, 0, 0,-1), HASH8(-1, 0, 0, 1),
1299 HASH8( 0,-1, 0, 1), HASH8( 0, 1, 0,-1), HASH8(-1, 0, 1, 0), HASH8( 1, 0,-1, 0),
1300
1301 HASH8( 0, 1, 1, 1), HASH8( 0,-1,-1,-1), HASH8( 1, 1, 1, 0), HASH8(-1,-1,-1, 0), HASH8( 1, 1, 0, 1), HASH8(-1,-1, 0,-1), HASH8( 1, 0, 1, 1), HASH8(-1, 0,-1,-1),
1302 HASH8( 0,-1, 1, 1), HASH8( 0, 1,-1,-1), HASH8(-1, 1, 1, 0), HASH8( 1,-1,-1, 0), HASH8( 1, 1, 0,-1), HASH8(-1,-1, 0, 1), HASH8( 1, 0,-1, 1), HASH8(-1, 0, 1,-1),
1303 HASH8( 0, 1,-1, 1), HASH8( 0,-1, 1,-1), HASH8( 1,-1, 1, 0), HASH8(-1, 1,-1, 0), HASH8(-1, 1, 0, 1), HASH8( 1,-1, 0,-1), HASH8( 1, 0, 1,-1), HASH8(-1, 0,-1, 1),
1304 HASH8( 0, 1, 1,-1), HASH8( 0,-1,-1, 1), HASH8( 1, 1,-1, 0), HASH8(-1,-1, 1, 0), HASH8( 1,-1, 0, 1), HASH8(-1, 1, 0,-1), HASH8(-1, 0, 1, 1), HASH8( 1, 0,-1,-1),
1305
1306 HASH8( 1, 1, 1, 1), HASH8(-1,-1,-1,-1),
1307 HASH8( 1, 1, 1,-1), HASH8(-1,-1,-1, 1), HASH8( 1, 1,-1, 1), HASH8(-1,-1, 1,-1), HASH8( 1,-1, 1, 1), HASH8(-1, 1,-1,-1), HASH8(-1, 1, 1, 1), HASH8( 1,-1,-1,-1),
1308 HASH8( 1, 1,-1,-1), HASH8(-1,-1, 1, 1), HASH8( 1,-1,-1, 1), HASH8(-1, 1, 1,-1), HASH8( 1,-1, 1,-1), HASH8(-1, 1,-1, 1),
1309 };
1310
1311 #define CHECK_BIDIR(fx,fy,bx,by)\
1312 if( !map[(hashidx+HASH(fx,fy,bx,by))&255]\
1313 &&(fx<=0 || motion_fx+fx<=xmax) && (fy<=0 || motion_fy+fy<=ymax) && (bx<=0 || motion_bx+bx<=xmax) && (by<=0 || motion_by+by<=ymax)\
1314 &&(fx>=0 || motion_fx+fx>=xmin) && (fy>=0 || motion_fy+fy>=ymin) && (bx>=0 || motion_bx+bx>=xmin) && (by>=0 || motion_by+by>=ymin)){\
1315 int score;\
1316 map[(hashidx+HASH(fx,fy,bx,by))&255] = 1;\
1317 score= check_bidir_mv(s, motion_fx+fx, motion_fy+fy, motion_bx+bx, motion_by+by, pred_fx, pred_fy, pred_bx, pred_by, 0, 16);\
1318 if(score < fbmin){\
1319 hashidx += HASH(fx,fy,bx,by);\
1320 fbmin= score;\
1321 motion_fx+=fx;\
1322 motion_fy+=fy;\
1323 motion_bx+=bx;\
1324 motion_by+=by;\
1325 end=0;\
1326 }\
1327 }
1328 #define CHECK_BIDIR2(a,b,c,d)\
1329 CHECK_BIDIR(a,b,c,d)\
1330 CHECK_BIDIR(-(a),-(b),-(c),-(d))
1331
1332 do{
1333 int i;
1334 800082 int borderdist=0;
1335 800082 end=1;
1336
1337
12/12
✓ Branch 0 taken 748768 times.
✓ Branch 1 taken 51314 times.
✓ Branch 2 taken 736566 times.
✓ Branch 3 taken 12202 times.
✓ Branch 5 taken 90534 times.
✓ Branch 6 taken 646032 times.
✓ Branch 7 taken 674220 times.
✓ Branch 8 taken 125862 times.
✓ Branch 9 taken 661794 times.
✓ Branch 10 taken 12426 times.
✓ Branch 12 taken 109105 times.
✓ Branch 13 taken 552689 times.
800082 CHECK_BIDIR2(0,0,0,1)
1338
12/12
✓ Branch 0 taken 687729 times.
✓ Branch 1 taken 112353 times.
✓ Branch 2 taken 676864 times.
✓ Branch 3 taken 10865 times.
✓ Branch 5 taken 96810 times.
✓ Branch 6 taken 580054 times.
✓ Branch 7 taken 594143 times.
✓ Branch 8 taken 205939 times.
✓ Branch 9 taken 584335 times.
✓ Branch 10 taken 9808 times.
✓ Branch 12 taken 79316 times.
✓ Branch 13 taken 505019 times.
800082 CHECK_BIDIR2(0,0,1,0)
1339
12/12
✓ Branch 0 taken 636120 times.
✓ Branch 1 taken 163962 times.
✓ Branch 2 taken 619238 times.
✓ Branch 3 taken 16882 times.
✓ Branch 5 taken 89381 times.
✓ Branch 6 taken 529857 times.
✓ Branch 7 taken 538864 times.
✓ Branch 8 taken 261218 times.
✓ Branch 9 taken 521749 times.
✓ Branch 10 taken 17115 times.
✓ Branch 12 taken 56923 times.
✓ Branch 13 taken 464826 times.
800082 CHECK_BIDIR2(0,1,0,0)
1340
12/12
✓ Branch 0 taken 570273 times.
✓ Branch 1 taken 229809 times.
✓ Branch 2 taken 554750 times.
✓ Branch 3 taken 15523 times.
✓ Branch 5 taken 62745 times.
✓ Branch 6 taken 492005 times.
✓ Branch 7 taken 521858 times.
✓ Branch 8 taken 278224 times.
✓ Branch 9 taken 505897 times.
✓ Branch 10 taken 15961 times.
✓ Branch 12 taken 69884 times.
✓ Branch 13 taken 436013 times.
800082 CHECK_BIDIR2(1,0,0,0)
1341
1342
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 800082 times.
800082 for(i=8; i<limit; i++){
1343 int fx= motion_fx+vect[i][0];
1344 int fy= motion_fy+vect[i][1];
1345 int bx= motion_bx+vect[i][2];
1346 int by= motion_by+vect[i][3];
1347 if(borderdist<=0){
1348 int a= (xmax - FFMAX(fx,bx))|(FFMIN(fx,bx) - xmin);
1349 int b= (ymax - FFMAX(fy,by))|(FFMIN(fy,by) - ymin);
1350 if((a|b) < 0)
1351 map[(hashidx+hash[i])&255] = 1;
1352 }
1353 if(!map[(hashidx+hash[i])&255]){
1354 int score;
1355 map[(hashidx+hash[i])&255] = 1;
1356 score= check_bidir_mv(s, fx, fy, bx, by, pred_fx, pred_fy, pred_bx, pred_by, 0, 16);
1357 if(score < fbmin){
1358 hashidx += hash[i];
1359 fbmin= score;
1360 motion_fx=fx;
1361 motion_fy=fy;
1362 motion_bx=bx;
1363 motion_by=by;
1364 end=0;
1365 borderdist--;
1366 if(borderdist<=0){
1367 int a= FFMIN(xmax - FFMAX(fx,bx), FFMIN(fx,bx) - xmin);
1368 int b= FFMIN(ymax - FFMAX(fy,by), FFMIN(fy,by) - ymin);
1369 borderdist= FFMIN(a,b);
1370 }
1371 }
1372 }
1373 }
1374
2/2
✓ Branch 0 taken 403173 times.
✓ Branch 1 taken 396909 times.
800082 }while(!end);
1375 }
1376
1377 396909 s->b_bidir_forw_mv_table[xy][0]= motion_fx;
1378 396909 s->b_bidir_forw_mv_table[xy][1]= motion_fy;
1379 396909 s->b_bidir_back_mv_table[xy][0]= motion_bx;
1380 396909 s->b_bidir_back_mv_table[xy][1]= motion_by;
1381
1382 396909 return fbmin;
1383 }
1384
1385 180207 static inline int direct_search(MPVEncContext *const s, int mb_x, int mb_y)
1386 {
1387 180207 MotionEstContext *const c = &s->me;
1388 int P[10][2];
1389 180207 const int mot_stride = s->c.mb_stride;
1390 180207 const int mot_xy = mb_y*mot_stride + mb_x;
1391 180207 const int shift= 1+s->c.quarter_sample;
1392 int dmin, i;
1393 180207 const int time_pp= s->c.pp_time;
1394 180207 const int time_pb= s->c.pb_time;
1395 int mx, my, xmin, xmax, ymin, ymax;
1396 180207 int16_t (*mv_table)[2]= s->b_direct_mv_table;
1397
1398 180207 c->current_mv_penalty= c->mv_penalty[1] + MAX_DMV;
1399 180207 ymin= xmin=(-32)>>shift;
1400 180207 ymax= xmax= 31>>shift;
1401
1402
2/2
✓ Branch 0 taken 52590 times.
✓ Branch 1 taken 127617 times.
180207 if (IS_8X8(s->c.next_pic.mb_type[mot_xy])) {
1403 52590 s->c.mv_type = MV_TYPE_8X8;
1404 }else{
1405 127617 s->c.mv_type = MV_TYPE_16X16;
1406 }
1407
1408
2/2
✓ Branch 0 taken 337977 times.
✓ Branch 1 taken 52590 times.
390567 for(i=0; i<4; i++){
1409 337977 int index= s->c.block_index[i];
1410 int min, max;
1411
1412 337977 c->co_located_mv[i][0] = s->c.next_pic.motion_val[0][index][0];
1413 337977 c->co_located_mv[i][1] = s->c.next_pic.motion_val[0][index][1];
1414 337977 c->direct_basis_mv[i][0]= c->co_located_mv[i][0]*time_pb/time_pp + ((i& 1)<<(shift+3));
1415 337977 c->direct_basis_mv[i][1]= c->co_located_mv[i][1]*time_pb/time_pp + ((i>>1)<<(shift+3));
1416 // c->direct_basis_mv[1][i][0]= c->co_located_mv[i][0]*(time_pb - time_pp)/time_pp + ((i &1)<<(shift+3);
1417 // c->direct_basis_mv[1][i][1]= c->co_located_mv[i][1]*(time_pb - time_pp)/time_pp + ((i>>1)<<(shift+3);
1418
1419
2/2
✓ Branch 0 taken 133237 times.
✓ Branch 1 taken 204740 times.
337977 max= FFMAX(c->direct_basis_mv[i][0], c->direct_basis_mv[i][0] - c->co_located_mv[i][0])>>shift;
1420
2/2
✓ Branch 0 taken 133237 times.
✓ Branch 1 taken 204740 times.
337977 min= FFMIN(c->direct_basis_mv[i][0], c->direct_basis_mv[i][0] - c->co_located_mv[i][0])>>shift;
1421 337977 max+= 16*mb_x + 1; // +-1 is for the simpler rounding
1422 337977 min+= 16*mb_x - 1;
1423 337977 xmax= FFMIN(xmax, s->c.width - max);
1424 337977 xmin= FFMAX(xmin, - 16 - min);
1425
1426
2/2
✓ Branch 0 taken 135652 times.
✓ Branch 1 taken 202325 times.
337977 max= FFMAX(c->direct_basis_mv[i][1], c->direct_basis_mv[i][1] - c->co_located_mv[i][1])>>shift;
1427
2/2
✓ Branch 0 taken 135652 times.
✓ Branch 1 taken 202325 times.
337977 min= FFMIN(c->direct_basis_mv[i][1], c->direct_basis_mv[i][1] - c->co_located_mv[i][1])>>shift;
1428 337977 max+= 16*mb_y + 1; // +-1 is for the simpler rounding
1429 337977 min+= 16*mb_y - 1;
1430 337977 ymax= FFMIN(ymax, s->c.height - max);
1431 337977 ymin= FFMAX(ymin, - 16 - min);
1432
1433
2/2
✓ Branch 0 taken 127617 times.
✓ Branch 1 taken 210360 times.
337977 if(s->c.mv_type == MV_TYPE_16X16) break;
1434 }
1435
1436 av_assert2(xmax <= 15 && ymax <= 15 && xmin >= -16 && ymin >= -16);
1437
1438
7/8
✓ Branch 0 taken 180155 times.
✓ Branch 1 taken 52 times.
✓ Branch 2 taken 180154 times.
✓ Branch 3 taken 1 times.
✓ Branch 4 taken 180127 times.
✓ Branch 5 taken 27 times.
✗ Branch 6 not taken.
✓ Branch 7 taken 180127 times.
180207 if(xmax < 0 || xmin >0 || ymax < 0 || ymin > 0){
1439 80 s->b_direct_mv_table[mot_xy][0]= 0;
1440 80 s->b_direct_mv_table[mot_xy][1]= 0;
1441
1442 80 return 256*256*256*64-1;
1443 }
1444
1445 180127 c->xmin= xmin;
1446 180127 c->ymin= ymin;
1447 180127 c->xmax= xmax;
1448 180127 c->ymax= ymax;
1449 180127 c->flags |= FLAG_DIRECT;
1450 180127 c->sub_flags |= FLAG_DIRECT;
1451 180127 c->pred_x=0;
1452 180127 c->pred_y=0;
1453
1454 180127 P_LEFT[0] = av_clip(mv_table[mot_xy - 1][0], xmin * (1 << shift), xmax << shift);
1455 180127 P_LEFT[1] = av_clip(mv_table[mot_xy - 1][1], ymin * (1 << shift), ymax << shift);
1456
1457 /* special case for first line */
1458
2/2
✓ Branch 0 taken 167574 times.
✓ Branch 1 taken 12553 times.
180127 if (!s->c.first_slice_line) { //FIXME maybe allow this over thread boundary as it is clipped
1459 167574 P_TOP[0] = av_clip(mv_table[mot_xy - mot_stride ][0], xmin * (1 << shift), xmax << shift);
1460 167574 P_TOP[1] = av_clip(mv_table[mot_xy - mot_stride ][1], ymin * (1 << shift), ymax << shift);
1461 167574 P_TOPRIGHT[0] = av_clip(mv_table[mot_xy - mot_stride + 1][0], xmin * (1 << shift), xmax << shift);
1462 167574 P_TOPRIGHT[1] = av_clip(mv_table[mot_xy - mot_stride + 1][1], ymin * (1 << shift), ymax << shift);
1463
1464 167574 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]);
1465 167574 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]);
1466 }
1467
1468 180127 dmin = ff_epzs_motion_search(s, &mx, &my, P, 0, 0, mv_table, 1<<(16-shift), 0, 16);
1469
2/2
✓ Branch 0 taken 38282 times.
✓ Branch 1 taken 141845 times.
180127 if(c->sub_flags&FLAG_QPEL)
1470 38282 dmin = qpel_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16);
1471 else
1472 141845 dmin = hpel_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16);
1473
1474
4/4
✓ Branch 0 taken 103552 times.
✓ Branch 1 taken 76575 times.
✓ Branch 2 taken 103531 times.
✓ Branch 3 taken 21 times.
180127 if(c->avctx->me_sub_cmp != c->avctx->mb_cmp && !c->skip)
1475 103531 dmin= get_mb_score(s, mx, my, 0, 0, 0, 16, 1);
1476
1477 180127 get_limits(s, 16*mb_x, 16*mb_y, 1); //restore c->?min/max, maybe not needed
1478
1479 180127 mv_table[mot_xy][0]= mx;
1480 180127 mv_table[mot_xy][1]= my;
1481 180127 c->flags &= ~FLAG_DIRECT;
1482 180127 c->sub_flags &= ~FLAG_DIRECT;
1483
1484 180127 return dmin;
1485 }
1486
1487 396999 void ff_estimate_b_frame_motion(MPVEncContext *const s,
1488 int mb_x, int mb_y)
1489 {
1490 396999 MotionEstContext *const c = &s->me;
1491 int fmin, bmin, dmin, fbmin, bimin, fimin;
1492 396999 int type=0;
1493 396999 const int xy = mb_y*s->c.mb_stride + mb_x;
1494 396999 init_ref(c, s->new_pic->data, s->c.last_pic.data,
1495 396999 s->c.next_pic.data, 16 * mb_x, 16 * mb_y, 2);
1496
1497 396999 get_limits(s, 16*mb_x, 16*mb_y, 1);
1498
1499 396999 c->skip=0;
1500
1501
4/4
✓ Branch 0 taken 180207 times.
✓ Branch 1 taken 216792 times.
✓ Branch 2 taken 90 times.
✓ Branch 3 taken 180117 times.
396999 if (s->c.codec_id == AV_CODEC_ID_MPEG4 && s->c.next_pic.mbskip_table[xy]) {
1502 90 int score= direct_search(s, mb_x, mb_y); //FIXME just check 0,0
1503
1504 90 score= ((unsigned)(score*score + 128*256))>>16;
1505 90 c->mc_mb_var_sum_temp += score;
1506 90 s->mc_mb_var[mb_y*s->c.mb_stride + mb_x] = score; //FIXME use SSE
1507 90 s->mb_type[mb_y*s->c.mb_stride + mb_x]= CANDIDATE_MB_TYPE_DIRECT0;
1508
1509 90 return;
1510 }
1511
1512 396909 c->penalty_factor = get_penalty_factor(s->lambda, s->lambda2, c->avctx->me_cmp);
1513 396909 c->sub_penalty_factor= get_penalty_factor(s->lambda, s->lambda2, c->avctx->me_sub_cmp);
1514 396909 c->mb_penalty_factor = get_penalty_factor(s->lambda, s->lambda2, c->avctx->mb_cmp);
1515
1516
2/2
✓ Branch 0 taken 180117 times.
✓ Branch 1 taken 216792 times.
396909 if (s->c.codec_id == AV_CODEC_ID_MPEG4)
1517 180117 dmin= direct_search(s, mb_x, mb_y);
1518 else
1519 216792 dmin= INT_MAX;
1520
1521 // FIXME penalty stuff for non-MPEG-4
1522 396909 c->skip=0;
1523 396909 fmin = estimate_motion_b(s, mb_x, mb_y, s->b_forw_mv_table, 0, s->f_code) +
1524 396909 3 * c->mb_penalty_factor;
1525
1526 396909 c->skip=0;
1527 396909 bmin = estimate_motion_b(s, mb_x, mb_y, s->b_back_mv_table, 2, s->b_code) +
1528 396909 2 * c->mb_penalty_factor;
1529 ff_dlog(c->avctx, " %d %d ", s->b_forw_mv_table[xy][0], s->b_forw_mv_table[xy][1]);
1530
1531 396909 c->skip=0;
1532 396909 fbmin= bidir_refine(s, mb_x, mb_y) + c->mb_penalty_factor;
1533 ff_dlog(c->avctx, "%d %d %d %d\n", dmin, fmin, bmin, fbmin);
1534
1535
2/2
✓ Branch 0 taken 115200 times.
✓ Branch 1 taken 281709 times.
396909 if (c->avctx->flags & AV_CODEC_FLAG_INTERLACED_ME) {
1536 //FIXME mb type penalty
1537 115200 c->skip=0;
1538 115200 c->current_mv_penalty = c->mv_penalty[s->f_code] + MAX_DMV;
1539 115200 fimin= interlaced_search(s, 0,
1540 115200 s->b_field_mv_table[0], s->b_field_select_table[0],
1541 115200 s->b_forw_mv_table[xy][0], s->b_forw_mv_table[xy][1], 0);
1542 115200 c->current_mv_penalty = c->mv_penalty[s->b_code] + MAX_DMV;
1543 115200 bimin= interlaced_search(s, 2,
1544 115200 s->b_field_mv_table[1], s->b_field_select_table[1],
1545 115200 s->b_back_mv_table[xy][0], s->b_back_mv_table[xy][1], 0);
1546 }else
1547 281709 fimin= bimin= INT_MAX;
1548
1549 {
1550 396909 int score= fmin;
1551 396909 type = CANDIDATE_MB_TYPE_FORWARD;
1552
1553
2/2
✓ Branch 0 taken 54175 times.
✓ Branch 1 taken 342734 times.
396909 if (dmin <= score){
1554 54175 score = dmin;
1555 54175 type = CANDIDATE_MB_TYPE_DIRECT;
1556 }
1557
2/2
✓ Branch 0 taken 198716 times.
✓ Branch 1 taken 198193 times.
396909 if(bmin<score){
1558 198716 score=bmin;
1559 198716 type= CANDIDATE_MB_TYPE_BACKWARD;
1560 }
1561
2/2
✓ Branch 0 taken 233673 times.
✓ Branch 1 taken 163236 times.
396909 if(fbmin<score){
1562 233673 score=fbmin;
1563 233673 type= CANDIDATE_MB_TYPE_BIDIR;
1564 }
1565
2/2
✓ Branch 0 taken 3902 times.
✓ Branch 1 taken 393007 times.
396909 if(fimin<score){
1566 3902 score=fimin;
1567 3902 type= CANDIDATE_MB_TYPE_FORWARD_I;
1568 }
1569
2/2
✓ Branch 0 taken 4095 times.
✓ Branch 1 taken 392814 times.
396909 if(bimin<score){
1570 4095 score=bimin;
1571 4095 type= CANDIDATE_MB_TYPE_BACKWARD_I;
1572 }
1573
1574 396909 score= ((unsigned)(score*score + 128*256))>>16;
1575 396909 c->mc_mb_var_sum_temp += score;
1576 396909 s->mc_mb_var[mb_y*s->c.mb_stride + mb_x] = score; //FIXME use SSE
1577 }
1578
1579
2/2
✓ Branch 0 taken 218539 times.
✓ Branch 1 taken 178370 times.
396909 if(c->avctx->mb_decision > FF_MB_DECISION_SIMPLE){
1580 218539 type= CANDIDATE_MB_TYPE_FORWARD | CANDIDATE_MB_TYPE_BACKWARD | CANDIDATE_MB_TYPE_BIDIR | CANDIDATE_MB_TYPE_DIRECT;
1581
2/2
✓ Branch 0 taken 30990 times.
✓ Branch 1 taken 187549 times.
218539 if(fimin < INT_MAX)
1582 30990 type |= CANDIDATE_MB_TYPE_FORWARD_I;
1583
2/2
✓ Branch 0 taken 31154 times.
✓ Branch 1 taken 187385 times.
218539 if(bimin < INT_MAX)
1584 31154 type |= CANDIDATE_MB_TYPE_BACKWARD_I;
1585
4/4
✓ Branch 0 taken 30990 times.
✓ Branch 1 taken 187549 times.
✓ Branch 2 taken 26027 times.
✓ Branch 3 taken 4963 times.
218539 if(fimin < INT_MAX && bimin < INT_MAX){
1586 26027 type |= CANDIDATE_MB_TYPE_BIDIR_I;
1587 }
1588 //FIXME something smarter
1589
2/2
✓ Branch 0 taken 76779 times.
✓ Branch 1 taken 141760 times.
218539 if(dmin>256*256*16) type&= ~CANDIDATE_MB_TYPE_DIRECT; //do not try direct mode if it is invalid for this MB
1590
4/4
✓ Branch 0 taken 141835 times.
✓ Branch 1 taken 76704 times.
✓ Branch 2 taken 141760 times.
✓ Branch 3 taken 75 times.
218539 if (s->c.codec_id == AV_CODEC_ID_MPEG4 && type&CANDIDATE_MB_TYPE_DIRECT &&
1591
4/4
✓ Branch 0 taken 65226 times.
✓ Branch 1 taken 76534 times.
✓ Branch 2 taken 36624 times.
✓ Branch 3 taken 28602 times.
141760 s->mpv_flags & FF_MPV_FLAG_MV0 && *(uint32_t*)s->b_direct_mv_table[xy])
1592 36624 type |= CANDIDATE_MB_TYPE_DIRECT0;
1593 }
1594
1595 396909 s->mb_type[mb_y*s->c.mb_stride + mb_x]= type;
1596 }
1597
1598 /* find best f_code for ME which do unlimited searches */
1599 13556 int ff_get_best_fcode(MPVMainEncContext *const m, const int16_t (*mv_table)[2], int type)
1600 {
1601 13556 MPVEncContext *const s = &m->s;
1602 13556 MotionEstContext *const c = &s->me;
1603
1604
1/2
✓ Branch 0 taken 13556 times.
✗ Branch 1 not taken.
13556 if (c->motion_est != FF_ME_ZERO) {
1605 int score[8];
1606
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 13556 times.
13556 int i, range = c->avctx->me_range ? c->avctx->me_range : (INT_MAX/2);
1607 13556 const uint8_t * fcode_tab = m->fcode_tab;
1608 13556 int best_fcode=-1;
1609 13556 int best_score=-10000000;
1610
1611
2/2
✓ Branch 0 taken 742 times.
✓ Branch 1 taken 12814 times.
13556 if (s->c.msmpeg4_version != MSMP4_UNUSED)
1612 742 range= FFMIN(range, 16);
1613
2/2
✓ Branch 0 taken 6625 times.
✓ Branch 1 taken 6189 times.
12814 else if (s->c.codec_id == AV_CODEC_ID_MPEG2VIDEO &&
1614
2/2
✓ Branch 0 taken 6017 times.
✓ Branch 1 taken 608 times.
6625 c->avctx->strict_std_compliance >= FF_COMPLIANCE_NORMAL)
1615 6017 range= FFMIN(range, 256);
1616
1617
2/2
✓ Branch 0 taken 108448 times.
✓ Branch 1 taken 13556 times.
122004 for(i=0; i<8; i++) score[i]= s->c.mb_num*(8-i);
1618
1619
2/2
✓ Branch 0 taken 186113 times.
✓ Branch 1 taken 13556 times.
199669 for (int y = 0; y < s->c.mb_height; y++) {
1620 int x;
1621 186113 int xy= y*s->c.mb_stride;
1622
2/2
✓ Branch 0 taken 4107069 times.
✓ Branch 1 taken 186113 times.
4293182 for(x=0; x<s->c.mb_width; x++, xy++){
1623
2/2
✓ Branch 0 taken 3394424 times.
✓ Branch 1 taken 712645 times.
4107069 if(s->mb_type[xy] & type){
1624 3394424 int mx= mv_table[xy][0];
1625 3394424 int my= mv_table[xy][1];
1626 3394424 int fcode = FFMAX(fcode_tab[mx], fcode_tab[my]);
1627 int j;
1628
1629
6/6
✓ Branch 0 taken 3393463 times.
✓ Branch 1 taken 961 times.
✓ Branch 2 taken 3392663 times.
✓ Branch 3 taken 800 times.
✓ Branch 4 taken 3392004 times.
✓ Branch 5 taken 659 times.
3394424 if (mx >= range || mx < -range ||
1630
2/2
✓ Branch 0 taken 459 times.
✓ Branch 1 taken 3391545 times.
3392004 my >= range || my < -range)
1631 2879 continue;
1632
1633
3/4
✓ Branch 0 taken 3607615 times.
✓ Branch 1 taken 3391545 times.
✓ Branch 2 taken 3607615 times.
✗ Branch 3 not taken.
6999160 for(j=0; j<fcode && j<8; j++){
1634
2/2
✓ Branch 0 taken 2392175 times.
✓ Branch 1 taken 1215440 times.
3607615 if (s->c.pict_type == AV_PICTURE_TYPE_B ||
1635
2/2
✓ Branch 0 taken 2281247 times.
✓ Branch 1 taken 110928 times.
2392175 s->mc_mb_var[xy] < s->mb_var[xy])
1636 3496687 score[j]-= 170;
1637 }
1638 }
1639 }
1640 }
1641
1642
2/2
✓ Branch 0 taken 94892 times.
✓ Branch 1 taken 13556 times.
108448 for(i=1; i<8; i++){
1643
2/2
✓ Branch 0 taken 17586 times.
✓ Branch 1 taken 77306 times.
94892 if(score[i] > best_score){
1644 17586 best_score= score[i];
1645 17586 best_fcode= i;
1646 }
1647 }
1648
1649 13556 return best_fcode;
1650 }else{
1651 return 1;
1652 }
1653 }
1654
1655 8256 void ff_fix_long_p_mvs(MPVEncContext *const s, int type)
1656 {
1657 8256 MotionEstContext *const c = &s->me;
1658 8256 const int f_code= s->f_code;
1659 int y, range;
1660
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 8256 times.
8256 av_assert0(s->c.pict_type == AV_PICTURE_TYPE_P);
1661
1662
4/4
✓ Branch 0 taken 3724 times.
✓ Branch 1 taken 4532 times.
✓ Branch 2 taken 742 times.
✓ Branch 3 taken 2982 times.
8256 range = (((s->c.out_format == FMT_MPEG1 || s->c.msmpeg4_version != MSMP4_UNUSED) ? 8 : 16) << f_code);
1663
1664
3/4
✓ Branch 0 taken 3851 times.
✓ Branch 1 taken 4405 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 3851 times.
8256 av_assert0(range <= 16 || s->c.msmpeg4_version == MSMP4_UNUSED);
1665
1/6
✗ Branch 0 not taken.
✓ Branch 1 taken 8256 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
8256 av_assert0(range <=256 || !(s->c.codec_id == AV_CODEC_ID_MPEG2VIDEO && c->avctx->strict_std_compliance >= FF_COMPLIANCE_NORMAL));
1666
1667
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 8256 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
8256 if(c->avctx->me_range && range > c->avctx->me_range) range= c->avctx->me_range;
1668
1669
2/2
✓ Branch 0 taken 980 times.
✓ Branch 1 taken 7276 times.
8256 if (c->avctx->flags & AV_CODEC_FLAG_4MV) {
1670 980 const int wrap= s->c.b8_stride;
1671
1672 /* clip / convert to intra 8x8 type MVs */
1673
2/2
✓ Branch 0 taken 13800 times.
✓ Branch 1 taken 980 times.
14780 for(y=0; y<s->c.mb_height; y++){
1674 13800 int xy= y*2*wrap;
1675 13800 int i= y*s->c.mb_stride;
1676 int x;
1677
1678
2/2
✓ Branch 0 taken 289008 times.
✓ Branch 1 taken 13800 times.
302808 for(x=0; x<s->c.mb_width; x++){
1679
2/2
✓ Branch 0 taken 221094 times.
✓ Branch 1 taken 67914 times.
289008 if(s->mb_type[i]&CANDIDATE_MB_TYPE_INTER4V){
1680 int block;
1681
2/2
✓ Branch 0 taken 884376 times.
✓ Branch 1 taken 221094 times.
1105470 for(block=0; block<4; block++){
1682 884376 int off= (block& 1) + (block>>1)*wrap;
1683 884376 int mx = s->c.cur_pic.motion_val[0][ xy + off ][0];
1684 884376 int my = s->c.cur_pic.motion_val[0][ xy + off ][1];
1685
1686
4/4
✓ Branch 0 taken 883910 times.
✓ Branch 1 taken 466 times.
✓ Branch 2 taken 883226 times.
✓ Branch 3 taken 684 times.
884376 if( mx >=range || mx <-range
1687
4/4
✓ Branch 0 taken 883067 times.
✓ Branch 1 taken 159 times.
✓ Branch 2 taken 318 times.
✓ Branch 3 taken 882749 times.
883226 || my >=range || my <-range){
1688 1627 s->mb_type[i] &= ~CANDIDATE_MB_TYPE_INTER4V;
1689 1627 s->mb_type[i] |= type;
1690 1627 s->c.cur_pic.mb_type[i] = type;
1691 }
1692 }
1693 }
1694 289008 xy+=2;
1695 289008 i++;
1696 }
1697 }
1698 }
1699 8256 }
1700
1701 /**
1702 * @param truncate 1 for truncation, 0 for using intra
1703 */
1704 17832 void ff_fix_long_mvs(MPVEncContext *const s, uint8_t *field_select_table, int field_select,
1705 int16_t (*mv_table)[2], int f_code, int type, int truncate)
1706 {
1707 17832 MotionEstContext *const c = &s->me;
1708 int y, h_range, v_range;
1709
1710 // RAL: 8 in MPEG-1, 16 in MPEG-4
1711
4/4
✓ Branch 0 taken 6072 times.
✓ Branch 1 taken 11760 times.
✓ Branch 2 taken 742 times.
✓ Branch 3 taken 5330 times.
17832 int range = (((s->c.out_format == FMT_MPEG1 || s->c.msmpeg4_version != MSMP4_UNUSED) ? 8 : 16) << f_code);
1712
1713
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 17832 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
17832 if(c->avctx->me_range && range > c->avctx->me_range) range= c->avctx->me_range;
1714
1715 17832 h_range= range;
1716
2/2
✓ Branch 0 taken 4400 times.
✓ Branch 1 taken 13432 times.
17832 v_range= field_select_table ? range>>1 : range;
1717
1718 /* clip / convert to intra 16x16 type MVs */
1719
2/2
✓ Branch 0 taken 244374 times.
✓ Branch 1 taken 17832 times.
262206 for(y=0; y<s->c.mb_height; y++){
1720 int x;
1721 244374 int xy= y*s->c.mb_stride;
1722
2/2
✓ Branch 0 taken 5292228 times.
✓ Branch 1 taken 244374 times.
5536602 for(x=0; x<s->c.mb_width; x++){
1723
2/2
✓ Branch 0 taken 3766959 times.
✓ Branch 1 taken 1525269 times.
5292228 if (s->mb_type[xy] & type){ // RAL: "type" test added...
1724
4/4
✓ Branch 0 taken 359422 times.
✓ Branch 1 taken 3407537 times.
✓ Branch 2 taken 179813 times.
✓ Branch 3 taken 179609 times.
3766959 if (!field_select_table || field_select_table[xy] == field_select) {
1725
4/4
✓ Branch 0 taken 3584862 times.
✓ Branch 1 taken 2488 times.
✓ Branch 2 taken 3582632 times.
✓ Branch 3 taken 2230 times.
3587350 if( mv_table[xy][0] >=h_range || mv_table[xy][0] <-h_range
1726
4/4
✓ Branch 0 taken 3581096 times.
✓ Branch 1 taken 1536 times.
✓ Branch 2 taken 1234 times.
✓ Branch 3 taken 3579862 times.
3582632 || mv_table[xy][1] >=v_range || mv_table[xy][1] <-v_range){
1727
1728
2/2
✓ Branch 0 taken 1505 times.
✓ Branch 1 taken 5983 times.
7488 if(truncate){
1729
2/2
✓ Branch 0 taken 417 times.
✓ Branch 1 taken 1088 times.
1505 if (mv_table[xy][0] > h_range-1) mv_table[xy][0]= h_range-1;
1730
2/2
✓ Branch 0 taken 468 times.
✓ Branch 1 taken 620 times.
1088 else if(mv_table[xy][0] < -h_range ) mv_table[xy][0]= -h_range;
1731
2/2
✓ Branch 0 taken 342 times.
✓ Branch 1 taken 1163 times.
1505 if (mv_table[xy][1] > v_range-1) mv_table[xy][1]= v_range-1;
1732
2/2
✓ Branch 0 taken 318 times.
✓ Branch 1 taken 845 times.
1163 else if(mv_table[xy][1] < -v_range ) mv_table[xy][1]= -v_range;
1733 }else{
1734 5983 s->mb_type[xy] &= ~type;
1735 5983 s->mb_type[xy] |= CANDIDATE_MB_TYPE_INTRA;
1736 5983 mv_table[xy][0]=
1737 5983 mv_table[xy][1]= 0;
1738 }
1739 }
1740 }
1741 }
1742 5292228 xy++;
1743 }
1744 }
1745 17832 }
1746