Mercurial > libavcodec.hg
annotate motion_est.c @ 2060:d07784fbdad1 libavcodec
optional and disabled by default memalign hack for SSE/SSE2 on that alternative OS
author | michael |
---|---|
date | Sun, 06 Jun 2004 03:45:53 +0000 |
parents | c46e203dd698 |
children | 9e4bebc39ade |
rev | line source |
---|---|
0 | 1 /* |
2 * Motion estimation | |
429 | 3 * Copyright (c) 2000,2001 Fabrice Bellard. |
1739
07a484280a82
copyright year update of the files i touched and remembered, things look annoyingly unmaintained otherwise
michael
parents:
1729
diff
changeset
|
4 * Copyright (c) 2002-2004 Michael Niedermayer |
0 | 5 * |
6 * | |
429 | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Lesser General Public | |
9 * License as published by the Free Software Foundation; either | |
10 * version 2 of the License, or (at your option) any later version. | |
0 | 11 * |
429 | 12 * This library is distributed in the hope that it will be useful, |
0 | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
429 | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 * Lesser General Public License for more details. | |
0 | 16 * |
429 | 17 * You should have received a copy of the GNU Lesser General Public |
18 * License along with this library; if not, write to the Free Software | |
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
20 * |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
21 * new Motion Estimation (X1/EPZS) by Michael Niedermayer <michaelni@gmx.at> |
0 | 22 */ |
1106 | 23 |
24 /** | |
25 * @file motion_est.c | |
26 * Motion estimation. | |
27 */ | |
28 | |
0 | 29 #include <stdlib.h> |
30 #include <stdio.h> | |
1426 | 31 #include <limits.h> |
0 | 32 #include "avcodec.h" |
33 #include "dsputil.h" | |
34 #include "mpegvideo.h" | |
35 | |
1950 | 36 #undef NDEBUG |
37 #include <assert.h> | |
936 | 38 |
455 | 39 #define SQ(a) ((a)*(a)) |
284 | 40 |
455 | 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 | |
936 | 47 static inline int sad_hpel_motion_search(MpegEncContext * s, |
48 int *mx_ptr, int *my_ptr, int dmin, | |
1950 | 49 int src_index, int ref_index, |
50 int size, int h); | |
0 | 51 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
52 static inline int update_map_generation(MotionEstContext *c) |
936 | 53 { |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
54 c->map_generation+= 1<<(ME_MAP_MV_BITS*2); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
55 if(c->map_generation==0){ |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
56 c->map_generation= 1<<(ME_MAP_MV_BITS*2); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
57 memset(c->map, 0, sizeof(uint32_t)*ME_MAP_SIZE); |
936 | 58 } |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
59 return c->map_generation; |
936 | 60 } |
61 | |
948 | 62 /* shape adaptive search stuff */ |
63 typedef struct Minima{ | |
64 int height; | |
65 int x, y; | |
66 int checked; | |
67 }Minima; | |
936 | 68 |
948 | 69 static int minima_cmp(const void *a, const void *b){ |
1057 | 70 const Minima *da = (const Minima *) a; |
71 const Minima *db = (const Minima *) b; | |
948 | 72 |
73 return da->height - db->height; | |
74 } | |
1950 | 75 |
76 #define FLAG_QPEL 1 //must be 1 | |
77 #define FLAG_CHROMA 2 | |
78 #define FLAG_DIRECT 4 | |
936 | 79 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
80 static inline void init_ref(MotionEstContext *c, uint8_t *src[3], uint8_t *ref[3], uint8_t *ref2[3], int x, int y, int ref_index){ |
1950 | 81 const int offset[3]= { |
82 y*c-> stride + x, | |
83 ((y*c->uvstride + x)>>1), | |
84 ((y*c->uvstride + x)>>1), | |
85 }; | |
86 int i; | |
87 for(i=0; i<3; i++){ | |
88 c->src[0][i]= src [i] + offset[i]; | |
89 c->ref[0][i]= ref [i] + offset[i]; | |
90 } | |
91 if(ref_index){ | |
92 for(i=0; i<3; i++){ | |
93 c->ref[ref_index][i]= ref2[i] + offset[i]; | |
94 } | |
95 } | |
936 | 96 } |
97 | |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
98 static int get_flags(MotionEstContext *c, int direct, int chroma){ |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
99 return ((c->avctx->flags&CODEC_FLAG_QPEL) ? FLAG_QPEL : 0) |
1950 | 100 + (direct ? FLAG_DIRECT : 0) |
101 + (chroma ? FLAG_CHROMA : 0); | |
102 } | |
1708 | 103 |
1950 | 104 static always_inline int cmp(MpegEncContext *s, const int x, const int y, const int subx, const int suby, |
105 const int size, const int h, int ref_index, int src_index, | |
106 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){ | |
107 MotionEstContext * const c= &s->me; | |
108 const int stride= c->stride; | |
109 const int uvstride= c->uvstride; | |
110 const int qpel= flags&FLAG_QPEL; | |
111 const int chroma= flags&FLAG_CHROMA; | |
112 const int dxy= subx + (suby<<(1+qpel)); //FIXME log2_subpel? | |
113 const int hx= subx + (x<<(1+qpel)); | |
114 const int hy= suby + (y<<(1+qpel)); | |
115 uint8_t * const * const ref= c->ref[ref_index]; | |
116 uint8_t * const * const src= c->src[src_index]; | |
117 int d; | |
118 //FIXME check chroma 4mv, (no crashes ...) | |
119 if(flags&FLAG_DIRECT){ | |
120 if(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1)){ | |
121 const int time_pp= s->pp_time; | |
122 const int time_pb= s->pb_time; | |
123 const int mask= 2*qpel+1; | |
124 if(s->mv_type==MV_TYPE_8X8){ | |
125 int i; | |
126 for(i=0; i<4; i++){ | |
127 int fx = c->direct_basis_mv[i][0] + hx; | |
128 int fy = c->direct_basis_mv[i][1] + hy; | |
129 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)); | |
130 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)); | |
131 int fxy= (fx&mask) + ((fy&mask)<<(qpel+1)); | |
132 int bxy= (bx&mask) + ((by&mask)<<(qpel+1)); | |
133 | |
134 uint8_t *dst= c->temp + 8*(i&1) + 8*stride*(i>>1); | |
135 if(qpel){ | |
136 c->qpel_put[1][fxy](dst, ref[0] + (fx>>2) + (fy>>2)*stride, stride); | |
137 c->qpel_avg[1][bxy](dst, ref[8] + (bx>>2) + (by>>2)*stride, stride); | |
138 }else{ | |
139 c->hpel_put[1][fxy](dst, ref[0] + (fx>>1) + (fy>>1)*stride, stride, 8); | |
140 c->hpel_avg[1][bxy](dst, ref[8] + (bx>>1) + (by>>1)*stride, stride, 8); | |
141 } | |
142 } | |
143 }else{ | |
144 int fx = c->direct_basis_mv[0][0] + hx; | |
145 int fy = c->direct_basis_mv[0][1] + hy; | |
146 int bx = hx ? fx - c->co_located_mv[0][0] : (c->co_located_mv[0][0]*(time_pb - time_pp)/time_pp); | |
147 int by = hy ? fy - c->co_located_mv[0][1] : (c->co_located_mv[0][1]*(time_pb - time_pp)/time_pp); | |
148 int fxy= (fx&mask) + ((fy&mask)<<(qpel+1)); | |
149 int bxy= (bx&mask) + ((by&mask)<<(qpel+1)); | |
150 | |
151 if(qpel){ | |
152 c->qpel_put[1][fxy](c->temp , ref[0] + (fx>>2) + (fy>>2)*stride , stride); | |
153 c->qpel_put[1][fxy](c->temp + 8 , ref[0] + (fx>>2) + (fy>>2)*stride + 8 , stride); | |
154 c->qpel_put[1][fxy](c->temp + 8*stride, ref[0] + (fx>>2) + (fy>>2)*stride + 8*stride, stride); | |
155 c->qpel_put[1][fxy](c->temp + 8 + 8*stride, ref[0] + (fx>>2) + (fy>>2)*stride + 8 + 8*stride, stride); | |
156 c->qpel_avg[1][bxy](c->temp , ref[8] + (bx>>2) + (by>>2)*stride , stride); | |
157 c->qpel_avg[1][bxy](c->temp + 8 , ref[8] + (bx>>2) + (by>>2)*stride + 8 , stride); | |
158 c->qpel_avg[1][bxy](c->temp + 8*stride, ref[8] + (bx>>2) + (by>>2)*stride + 8*stride, stride); | |
159 c->qpel_avg[1][bxy](c->temp + 8 + 8*stride, ref[8] + (bx>>2) + (by>>2)*stride + 8 + 8*stride, stride); | |
160 }else{ | |
161 assert((fx>>1) + 16*s->mb_x >= -16); | |
162 assert((fy>>1) + 16*s->mb_y >= -16); | |
163 assert((fx>>1) + 16*s->mb_x <= s->width); | |
164 assert((fy>>1) + 16*s->mb_y <= s->height); | |
165 assert((bx>>1) + 16*s->mb_x >= -16); | |
166 assert((by>>1) + 16*s->mb_y >= -16); | |
167 assert((bx>>1) + 16*s->mb_x <= s->width); | |
168 assert((by>>1) + 16*s->mb_y <= s->height); | |
936 | 169 |
1950 | 170 c->hpel_put[0][fxy](c->temp, ref[0] + (fx>>1) + (fy>>1)*stride, stride, 16); |
171 c->hpel_avg[0][bxy](c->temp, ref[8] + (bx>>1) + (by>>1)*stride, stride, 16); | |
172 } | |
173 } | |
174 d = cmp_func(s, c->temp, src[0], stride, 16); | |
175 }else | |
176 d= 256*256*256*32; | |
177 }else{ | |
178 int uvdxy; | |
179 if(dxy){ | |
180 if(qpel){ | |
181 c->qpel_put[size][dxy](c->temp, ref[0] + x + y*stride, stride); //FIXME prototype (add h) | |
182 if(chroma){ | |
183 int cx= hx/2; | |
184 int cy= hy/2; | |
185 cx= (cx>>1)|(cx&1); | |
186 cy= (cy>>1)|(cy&1); | |
187 uvdxy= (cx&1) + 2*(cy&1); | |
188 //FIXME x/y wrong, but mpeg4 qpel is sick anyway, we should drop as much of it as possible in favor for h264 | |
189 } | |
190 }else{ | |
191 c->hpel_put[size][dxy](c->temp, ref[0] + x + y*stride, stride, h); | |
192 if(chroma) | |
193 uvdxy= dxy | (x&1) | (2*(y&1)); | |
194 } | |
195 d = cmp_func(s, c->temp, src[0], stride, h); | |
196 }else{ | |
197 d = cmp_func(s, src[0], ref[0] + x + y*stride, stride, h); | |
198 if(chroma) | |
199 uvdxy= (x&1) + 2*(y&1); | |
200 } | |
201 if(chroma){ | |
202 uint8_t * const uvtemp= c->temp + 16*stride; | |
203 c->hpel_put[size+1][uvdxy](uvtemp , ref[1] + (x>>1) + (y>>1)*uvstride, uvstride, h>>1); | |
204 c->hpel_put[size+1][uvdxy](uvtemp+8, ref[2] + (x>>1) + (y>>1)*uvstride, uvstride, h>>1); | |
205 d += chroma_cmp_func(s, uvtemp , src[1], uvstride, h>>1); | |
206 d += chroma_cmp_func(s, uvtemp+8, src[2], uvstride, h>>1); | |
207 } | |
208 } | |
209 #if 0 | |
210 if(full_pel){ | |
211 const int index= (((y)<<ME_MAP_SHIFT) + (x))&(ME_MAP_SIZE-1); | |
212 score_map[index]= d; | |
213 } | |
936 | 214 |
1950 | 215 d += (c->mv_penalty[hx - c->pred_x] + c->mv_penalty[hy - c->pred_y])*c->penalty_factor; |
216 #endif | |
217 return d; | |
936 | 218 } |
219 | |
220 #include "motion_est_template.c" | |
221 | |
222 static inline int get_penalty_factor(MpegEncContext *s, int type){ | |
1013 | 223 switch(type&0xFF){ |
936 | 224 default: |
225 case FF_CMP_SAD: | |
2053 | 226 return s->lambda>>FF_LAMBDA_SHIFT; |
936 | 227 case FF_CMP_DCT: |
2053 | 228 return (3*s->lambda)>>(FF_LAMBDA_SHIFT+1); |
936 | 229 case FF_CMP_SATD: |
2053 | 230 return (2*s->lambda)>>FF_LAMBDA_SHIFT; |
231 case FF_CMP_RD: | |
232 case FF_CMP_PSNR: | |
1007 | 233 case FF_CMP_SSE: |
2053 | 234 return s->lambda2>>FF_LAMBDA_SHIFT; |
1007 | 235 case FF_CMP_BIT: |
236 return 1; | |
936 | 237 } |
238 } | |
239 | |
240 void ff_init_me(MpegEncContext *s){ | |
1962 | 241 MotionEstContext * const c= &s->me; |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
242 c->avctx= s->avctx; |
1962 | 243 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
244 ff_set_cmp(&s->dsp, s->dsp.me_pre_cmp, c->avctx->me_pre_cmp); |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
245 ff_set_cmp(&s->dsp, s->dsp.me_cmp, c->avctx->me_cmp); |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
246 ff_set_cmp(&s->dsp, s->dsp.me_sub_cmp, c->avctx->me_sub_cmp); |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
247 ff_set_cmp(&s->dsp, s->dsp.mb_cmp, c->avctx->mb_cmp); |
1950 | 248 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
249 c->flags = get_flags(c, 0, c->avctx->me_cmp &FF_CMP_CHROMA); |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
250 c->sub_flags= get_flags(c, 0, c->avctx->me_sub_cmp&FF_CMP_CHROMA); |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
251 c->mb_flags = get_flags(c, 0, c->avctx->mb_cmp &FF_CMP_CHROMA); |
936 | 252 |
1962 | 253 /*FIXME s->no_rounding b_type*/ |
936 | 254 if(s->flags&CODEC_FLAG_QPEL){ |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
255 c->sub_motion_search= qpel_motion_search; |
1962 | 256 c->qpel_avg= s->dsp.avg_qpel_pixels_tab; |
257 if(s->no_rounding) c->qpel_put= s->dsp.put_no_rnd_qpel_pixels_tab; | |
258 else c->qpel_put= s->dsp.put_qpel_pixels_tab; | |
936 | 259 }else{ |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
260 if(c->avctx->me_sub_cmp&FF_CMP_CHROMA) |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
261 c->sub_motion_search= hpel_motion_search; |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
262 else if( c->avctx->me_sub_cmp == FF_CMP_SAD |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
263 && c->avctx-> me_cmp == FF_CMP_SAD |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
264 && c->avctx-> mb_cmp == FF_CMP_SAD) |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
265 c->sub_motion_search= sad_hpel_motion_search; // 2050 vs. 2450 cycles |
936 | 266 else |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
267 c->sub_motion_search= hpel_motion_search; |
1962 | 268 c->hpel_avg= s->dsp.avg_pixels_tab; |
269 if(s->no_rounding) c->hpel_put= s->dsp.put_no_rnd_pixels_tab; | |
270 else c->hpel_put= s->dsp.put_pixels_tab; | |
936 | 271 } |
1950 | 272 if(s->linesize){ |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
273 c->stride = s->linesize; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
274 c->uvstride= s->uvlinesize; |
954 | 275 }else{ |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
276 c->stride = 16*s->mb_width + 32; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
277 c->uvstride= 8*s->mb_width + 16; |
1013 | 278 } |
1962 | 279 |
280 c->temp= c->scratchpad; | |
936 | 281 } |
282 | |
1419 | 283 #if 0 |
1064 | 284 static int pix_dev(uint8_t * pix, int line_size, int mean) |
284 | 285 { |
286 int s, i, j; | |
287 | |
288 s = 0; | |
289 for (i = 0; i < 16; i++) { | |
290 for (j = 0; j < 16; j += 8) { | |
291 s += ABS(pix[0]-mean); | |
292 s += ABS(pix[1]-mean); | |
293 s += ABS(pix[2]-mean); | |
294 s += ABS(pix[3]-mean); | |
295 s += ABS(pix[4]-mean); | |
296 s += ABS(pix[5]-mean); | |
297 s += ABS(pix[6]-mean); | |
298 s += ABS(pix[7]-mean); | |
299 pix += 8; | |
300 } | |
301 pix += line_size - 16; | |
302 } | |
303 return s; | |
304 } | |
1419 | 305 #endif |
284 | 306 |
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
307 static inline void no_motion_search(MpegEncContext * s, |
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
308 int *mx_ptr, int *my_ptr) |
0 | 309 { |
310 *mx_ptr = 16 * s->mb_x; | |
311 *my_ptr = 16 * s->mb_y; | |
312 } | |
313 | |
314 static int full_motion_search(MpegEncContext * s, | |
315 int *mx_ptr, int *my_ptr, int range, | |
324 | 316 int xmin, int ymin, int xmax, int ymax, uint8_t *ref_picture) |
0 | 317 { |
318 int x1, y1, x2, y2, xx, yy, x, y; | |
319 int mx, my, dmin, d; | |
1064 | 320 uint8_t *pix; |
0 | 321 |
322 xx = 16 * s->mb_x; | |
323 yy = 16 * s->mb_y; | |
324 x1 = xx - range + 1; /* we loose one pixel to avoid boundary pb with half pixel pred */ | |
325 if (x1 < xmin) | |
326 x1 = xmin; | |
327 x2 = xx + range - 1; | |
328 if (x2 > xmax) | |
329 x2 = xmax; | |
330 y1 = yy - range + 1; | |
331 if (y1 < ymin) | |
332 y1 = ymin; | |
333 y2 = yy + range - 1; | |
334 if (y2 > ymax) | |
335 y2 = ymax; | |
903 | 336 pix = s->new_picture.data[0] + (yy * s->linesize) + xx; |
0 | 337 dmin = 0x7fffffff; |
338 mx = 0; | |
339 my = 0; | |
340 for (y = y1; y <= y2; y++) { | |
341 for (x = x1; x <= x2; x++) { | |
1708 | 342 d = s->dsp.pix_abs[0][0](NULL, pix, ref_picture + (y * s->linesize) + x, |
343 s->linesize, 16); | |
0 | 344 if (d < dmin || |
345 (d == dmin && | |
346 (abs(x - xx) + abs(y - yy)) < | |
347 (abs(mx - xx) + abs(my - yy)))) { | |
348 dmin = d; | |
349 mx = x; | |
350 my = y; | |
351 } | |
352 } | |
353 } | |
354 | |
355 *mx_ptr = mx; | |
356 *my_ptr = my; | |
357 | |
358 #if 0 | |
359 if (*mx_ptr < -(2 * range) || *mx_ptr >= (2 * range) || | |
360 *my_ptr < -(2 * range) || *my_ptr >= (2 * range)) { | |
361 fprintf(stderr, "error %d %d\n", *mx_ptr, *my_ptr); | |
362 } | |
363 #endif | |
364 return dmin; | |
365 } | |
366 | |
367 | |
368 static int log_motion_search(MpegEncContext * s, | |
369 int *mx_ptr, int *my_ptr, int range, | |
324 | 370 int xmin, int ymin, int xmax, int ymax, uint8_t *ref_picture) |
0 | 371 { |
372 int x1, y1, x2, y2, xx, yy, x, y; | |
373 int mx, my, dmin, d; | |
1064 | 374 uint8_t *pix; |
0 | 375 |
376 xx = s->mb_x << 4; | |
377 yy = s->mb_y << 4; | |
378 | |
379 /* Left limit */ | |
380 x1 = xx - range; | |
381 if (x1 < xmin) | |
382 x1 = xmin; | |
383 | |
384 /* Right limit */ | |
385 x2 = xx + range; | |
386 if (x2 > xmax) | |
387 x2 = xmax; | |
388 | |
389 /* Upper limit */ | |
390 y1 = yy - range; | |
391 if (y1 < ymin) | |
392 y1 = ymin; | |
393 | |
394 /* Lower limit */ | |
395 y2 = yy + range; | |
396 if (y2 > ymax) | |
397 y2 = ymax; | |
398 | |
903 | 399 pix = s->new_picture.data[0] + (yy * s->linesize) + xx; |
0 | 400 dmin = 0x7fffffff; |
401 mx = 0; | |
402 my = 0; | |
403 | |
404 do { | |
405 for (y = y1; y <= y2; y += range) { | |
406 for (x = x1; x <= x2; x += range) { | |
1708 | 407 d = s->dsp.pix_abs[0][0](NULL, pix, ref_picture + (y * s->linesize) + x, s->linesize, 16); |
0 | 408 if (d < dmin || (d == dmin && (abs(x - xx) + abs(y - yy)) < (abs(mx - xx) + abs(my - yy)))) { |
409 dmin = d; | |
410 mx = x; | |
411 my = y; | |
412 } | |
413 } | |
414 } | |
415 | |
416 range = range >> 1; | |
417 | |
418 x1 = mx - range; | |
419 if (x1 < xmin) | |
420 x1 = xmin; | |
421 | |
422 x2 = mx + range; | |
423 if (x2 > xmax) | |
424 x2 = xmax; | |
425 | |
426 y1 = my - range; | |
427 if (y1 < ymin) | |
428 y1 = ymin; | |
429 | |
430 y2 = my + range; | |
431 if (y2 > ymax) | |
432 y2 = ymax; | |
433 | |
434 } while (range >= 1); | |
435 | |
436 #ifdef DEBUG | |
437 fprintf(stderr, "log - MX: %d\tMY: %d\n", mx, my); | |
438 #endif | |
439 *mx_ptr = mx; | |
440 *my_ptr = my; | |
441 return dmin; | |
442 } | |
443 | |
444 static int phods_motion_search(MpegEncContext * s, | |
445 int *mx_ptr, int *my_ptr, int range, | |
324 | 446 int xmin, int ymin, int xmax, int ymax, uint8_t *ref_picture) |
0 | 447 { |
448 int x1, y1, x2, y2, xx, yy, x, y, lastx, d; | |
449 int mx, my, dminx, dminy; | |
1064 | 450 uint8_t *pix; |
0 | 451 |
452 xx = s->mb_x << 4; | |
453 yy = s->mb_y << 4; | |
454 | |
455 /* Left limit */ | |
456 x1 = xx - range; | |
457 if (x1 < xmin) | |
458 x1 = xmin; | |
459 | |
460 /* Right limit */ | |
461 x2 = xx + range; | |
462 if (x2 > xmax) | |
463 x2 = xmax; | |
464 | |
465 /* Upper limit */ | |
466 y1 = yy - range; | |
467 if (y1 < ymin) | |
468 y1 = ymin; | |
469 | |
470 /* Lower limit */ | |
471 y2 = yy + range; | |
472 if (y2 > ymax) | |
473 y2 = ymax; | |
474 | |
903 | 475 pix = s->new_picture.data[0] + (yy * s->linesize) + xx; |
0 | 476 mx = 0; |
477 my = 0; | |
478 | |
479 x = xx; | |
480 y = yy; | |
481 do { | |
482 dminx = 0x7fffffff; | |
483 dminy = 0x7fffffff; | |
484 | |
485 lastx = x; | |
486 for (x = x1; x <= x2; x += range) { | |
1708 | 487 d = s->dsp.pix_abs[0][0](NULL, pix, ref_picture + (y * s->linesize) + x, s->linesize, 16); |
0 | 488 if (d < dminx || (d == dminx && (abs(x - xx) + abs(y - yy)) < (abs(mx - xx) + abs(my - yy)))) { |
489 dminx = d; | |
490 mx = x; | |
491 } | |
492 } | |
493 | |
494 x = lastx; | |
495 for (y = y1; y <= y2; y += range) { | |
1708 | 496 d = s->dsp.pix_abs[0][0](NULL, pix, ref_picture + (y * s->linesize) + x, s->linesize, 16); |
0 | 497 if (d < dminy || (d == dminy && (abs(x - xx) + abs(y - yy)) < (abs(mx - xx) + abs(my - yy)))) { |
498 dminy = d; | |
499 my = y; | |
500 } | |
501 } | |
502 | |
503 range = range >> 1; | |
504 | |
505 x = mx; | |
506 y = my; | |
507 x1 = mx - range; | |
508 if (x1 < xmin) | |
509 x1 = xmin; | |
510 | |
511 x2 = mx + range; | |
512 if (x2 > xmax) | |
513 x2 = xmax; | |
514 | |
515 y1 = my - range; | |
516 if (y1 < ymin) | |
517 y1 = ymin; | |
518 | |
519 y2 = my + range; | |
520 if (y2 > ymax) | |
521 y2 = ymax; | |
522 | |
523 } while (range >= 1); | |
524 | |
525 #ifdef DEBUG | |
526 fprintf(stderr, "phods - MX: %d\tMY: %d\n", mx, my); | |
527 #endif | |
528 | |
529 /* half pixel search */ | |
530 *mx_ptr = mx; | |
531 *my_ptr = my; | |
532 return dminy; | |
533 } | |
534 | |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
535 |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
536 #define Z_THRESHOLD 256 |
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
537 |
936 | 538 #define CHECK_SAD_HALF_MV(suffix, x, y) \ |
455 | 539 {\ |
1708 | 540 d= s->dsp.pix_abs[size][(x?1:0)+(y?2:0)](NULL, pix, ptr+((x)>>1), stride, h);\ |
936 | 541 d += (mv_penalty[pen_x + x] + mv_penalty[pen_y + y])*penalty_factor;\ |
455 | 542 COPY3_IF_LT(dminh, d, dx, x, dy, y)\ |
543 } | |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
544 |
936 | 545 static inline int sad_hpel_motion_search(MpegEncContext * s, |
0 | 546 int *mx_ptr, int *my_ptr, int dmin, |
1950 | 547 int src_index, int ref_index, |
548 int size, int h) | |
0 | 549 { |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
550 MotionEstContext * const c= &s->me; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
551 const int penalty_factor= c->sub_penalty_factor; |
1708 | 552 int mx, my, dminh; |
1064 | 553 uint8_t *pix, *ptr; |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
554 int stride= c->stride; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
555 const int flags= c->sub_flags; |
1950 | 556 LOAD_COMMON |
557 | |
558 assert(flags == 0); | |
455 | 559 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
560 if(c->skip){ |
455 | 561 // printf("S"); |
562 *mx_ptr = 0; | |
563 *my_ptr = 0; | |
564 return dmin; | |
565 } | |
566 // printf("N"); | |
567 | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
568 pix = c->src[src_index][0]; |
455 | 569 |
294 | 570 mx = *mx_ptr; |
571 my = *my_ptr; | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
572 ptr = c->ref[ref_index][0] + (my * stride) + mx; |
455 | 573 |
294 | 574 dminh = dmin; |
575 | |
576 if (mx > xmin && mx < xmax && | |
577 my > ymin && my < ymax) { | |
455 | 578 int dx=0, dy=0; |
579 int d, pen_x, pen_y; | |
580 const int index= (my<<ME_MAP_SHIFT) + mx; | |
581 const int t= score_map[(index-(1<<ME_MAP_SHIFT))&(ME_MAP_SIZE-1)]; | |
582 const int l= score_map[(index- 1 )&(ME_MAP_SIZE-1)]; | |
583 const int r= score_map[(index+ 1 )&(ME_MAP_SIZE-1)]; | |
584 const int b= score_map[(index+(1<<ME_MAP_SHIFT))&(ME_MAP_SIZE-1)]; | |
585 mx<<=1; | |
586 my<<=1; | |
294 | 587 |
588 | |
589 pen_x= pred_x + mx; | |
590 pen_y= pred_y + my; | |
591 | |
1708 | 592 ptr-= stride; |
455 | 593 if(t<=b){ |
936 | 594 CHECK_SAD_HALF_MV(y2 , 0, -1) |
455 | 595 if(l<=r){ |
936 | 596 CHECK_SAD_HALF_MV(xy2, -1, -1) |
455 | 597 if(t+r<=b+l){ |
936 | 598 CHECK_SAD_HALF_MV(xy2, +1, -1) |
1708 | 599 ptr+= stride; |
455 | 600 }else{ |
1708 | 601 ptr+= stride; |
936 | 602 CHECK_SAD_HALF_MV(xy2, -1, +1) |
455 | 603 } |
936 | 604 CHECK_SAD_HALF_MV(x2 , -1, 0) |
455 | 605 }else{ |
936 | 606 CHECK_SAD_HALF_MV(xy2, +1, -1) |
455 | 607 if(t+l<=b+r){ |
936 | 608 CHECK_SAD_HALF_MV(xy2, -1, -1) |
1708 | 609 ptr+= stride; |
455 | 610 }else{ |
1708 | 611 ptr+= stride; |
936 | 612 CHECK_SAD_HALF_MV(xy2, +1, +1) |
455 | 613 } |
936 | 614 CHECK_SAD_HALF_MV(x2 , +1, 0) |
455 | 615 } |
616 }else{ | |
617 if(l<=r){ | |
618 if(t+l<=b+r){ | |
936 | 619 CHECK_SAD_HALF_MV(xy2, -1, -1) |
1708 | 620 ptr+= stride; |
455 | 621 }else{ |
1708 | 622 ptr+= stride; |
936 | 623 CHECK_SAD_HALF_MV(xy2, +1, +1) |
455 | 624 } |
936 | 625 CHECK_SAD_HALF_MV(x2 , -1, 0) |
626 CHECK_SAD_HALF_MV(xy2, -1, +1) | |
455 | 627 }else{ |
628 if(t+r<=b+l){ | |
936 | 629 CHECK_SAD_HALF_MV(xy2, +1, -1) |
1708 | 630 ptr+= stride; |
455 | 631 }else{ |
1708 | 632 ptr+= stride; |
936 | 633 CHECK_SAD_HALF_MV(xy2, -1, +1) |
455 | 634 } |
936 | 635 CHECK_SAD_HALF_MV(x2 , +1, 0) |
636 CHECK_SAD_HALF_MV(xy2, +1, +1) | |
455 | 637 } |
936 | 638 CHECK_SAD_HALF_MV(y2 , 0, +1) |
455 | 639 } |
640 mx+=dx; | |
641 my+=dy; | |
294 | 642 |
643 }else{ | |
455 | 644 mx<<=1; |
645 my<<=1; | |
294 | 646 } |
647 | |
648 *mx_ptr = mx; | |
649 *my_ptr = my; | |
455 | 650 return dminh; |
294 | 651 } |
652 | |
455 | 653 static inline void set_p_mv_tables(MpegEncContext * s, int mx, int my, int mv4) |
294 | 654 { |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
655 const int xy= s->mb_x + s->mb_y*s->mb_stride; |
294 | 656 |
324 | 657 s->p_mv_table[xy][0] = mx; |
658 s->p_mv_table[xy][1] = my; | |
294 | 659 |
660 /* has allready been set to the 4 MV if 4MV is done */ | |
455 | 661 if(mv4){ |
294 | 662 int mot_xy= s->block_index[0]; |
663 | |
1668
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
664 s->current_picture.motion_val[0][mot_xy ][0]= mx; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
665 s->current_picture.motion_val[0][mot_xy ][1]= my; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
666 s->current_picture.motion_val[0][mot_xy+1][0]= mx; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
667 s->current_picture.motion_val[0][mot_xy+1][1]= my; |
294 | 668 |
1938
e2501e6e7ff7
unify table indexing (motion_val,dc_val,ac_val,coded_block changed)
michael
parents:
1904
diff
changeset
|
669 mot_xy += s->b8_stride; |
1668
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
670 s->current_picture.motion_val[0][mot_xy ][0]= mx; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
671 s->current_picture.motion_val[0][mot_xy ][1]= my; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
672 s->current_picture.motion_val[0][mot_xy+1][0]= mx; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
673 s->current_picture.motion_val[0][mot_xy+1][1]= my; |
294 | 674 } |
675 } | |
676 | |
1086 | 677 /** |
678 * get fullpel ME search limits. | |
679 */ | |
1708 | 680 static inline void get_limits(MpegEncContext *s, int x, int y) |
324 | 681 { |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
682 MotionEstContext * const c= &s->me; |
1708 | 683 /* |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
684 if(c->avctx->me_range) c->range= c->avctx->me_range >> 1; |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
685 else c->range= 16; |
1708 | 686 */ |
324 | 687 if (s->unrestricted_mv) { |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
688 c->xmin = - x - 16; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
689 c->ymin = - y - 16; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
690 c->xmax = - x + s->mb_width *16; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
691 c->ymax = - y + s->mb_height*16; |
324 | 692 } else { |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
693 c->xmin = - x; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
694 c->ymin = - y; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
695 c->xmax = - x + s->mb_width *16 - 16; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
696 c->ymax = - y + s->mb_height*16 - 16; |
324 | 697 } |
698 } | |
699 | |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
700 static inline void init_mv4_ref(MotionEstContext *c){ |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
701 const int stride= c->stride; |
1962 | 702 |
703 c->ref[1][0] = c->ref[0][0] + 8; | |
704 c->ref[2][0] = c->ref[0][0] + 8*stride; | |
705 c->ref[3][0] = c->ref[2][0] + 8; | |
706 c->src[1][0] = c->src[0][0] + 8; | |
707 c->src[2][0] = c->src[0][0] + 8*stride; | |
708 c->src[3][0] = c->src[2][0] + 8; | |
709 } | |
710 | |
1708 | 711 static inline int h263_mv4_search(MpegEncContext *s, int mx, int my, int shift) |
455 | 712 { |
1950 | 713 MotionEstContext * const c= &s->me; |
1708 | 714 const int size= 1; |
715 const int h=8; | |
455 | 716 int block; |
717 int P[10][2]; | |
1013 | 718 int dmin_sum=0, mx4_sum=0, my4_sum=0; |
1494
3ee63c12ea30
optionally try to encode each MB with MV=<0,0> and choose the one with better RD
michaelni
parents:
1426
diff
changeset
|
719 int same=1; |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
720 const int stride= c->stride; |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
721 const int uvstride= c->uvstride; |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
722 uint8_t *mv_penalty= c->current_mv_penalty; |
455 | 723 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
724 init_mv4_ref(c); |
1950 | 725 |
455 | 726 for(block=0; block<4; block++){ |
727 int mx4, my4; | |
728 int pred_x4, pred_y4; | |
729 int dmin4; | |
730 static const int off[4]= {2, 1, 1, -1}; | |
1938
e2501e6e7ff7
unify table indexing (motion_val,dc_val,ac_val,coded_block changed)
michael
parents:
1904
diff
changeset
|
731 const int mot_stride = s->b8_stride; |
455 | 732 const int mot_xy = s->block_index[block]; |
1708 | 733 |
1668
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
734 P_LEFT[0] = s->current_picture.motion_val[0][mot_xy - 1][0]; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
735 P_LEFT[1] = s->current_picture.motion_val[0][mot_xy - 1][1]; |
455 | 736 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
737 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift); |
455 | 738 |
739 /* special case for first line */ | |
1799 | 740 if (s->first_slice_line && block<2) { |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
741 c->pred_x= pred_x4= P_LEFT[0]; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
742 c->pred_y= pred_y4= P_LEFT[1]; |
455 | 743 } else { |
1668
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
744 P_TOP[0] = s->current_picture.motion_val[0][mot_xy - mot_stride ][0]; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
745 P_TOP[1] = s->current_picture.motion_val[0][mot_xy - mot_stride ][1]; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
746 P_TOPRIGHT[0] = s->current_picture.motion_val[0][mot_xy - mot_stride + off[block]][0]; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
747 P_TOPRIGHT[1] = s->current_picture.motion_val[0][mot_xy - mot_stride + off[block]][1]; |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
748 if(P_TOP[1] > (c->ymax<<shift)) P_TOP[1] = (c->ymax<<shift); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
749 if(P_TOPRIGHT[0] < (c->xmin<<shift)) P_TOPRIGHT[0]= (c->xmin<<shift); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
750 if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
751 if(P_TOPRIGHT[1] > (c->ymax<<shift)) P_TOPRIGHT[1]= (c->ymax<<shift); |
455 | 752 |
753 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); | |
754 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
755 | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
756 c->pred_x= pred_x4 = P_MEDIAN[0]; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
757 c->pred_y= pred_y4 = P_MEDIAN[1]; |
455 | 758 } |
759 P_MV1[0]= mx; | |
760 P_MV1[1]= my; | |
761 | |
1950 | 762 dmin4 = epzs_motion_search4(s, &mx4, &my4, P, block, block, s->p_mv_table, (1<<16)>>shift); |
455 | 763 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
764 dmin4= c->sub_motion_search(s, &mx4, &my4, dmin4, block, block, size, h); |
1038 | 765 |
1950 | 766 if(s->dsp.me_sub_cmp[0] != s->dsp.mb_cmp[0]){ |
1013 | 767 int dxy; |
1708 | 768 const int offset= ((block&1) + (block>>1)*stride)*8; |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
769 uint8_t *dest_y = c->scratchpad + offset; |
1013 | 770 if(s->quarter_sample){ |
1950 | 771 uint8_t *ref= c->ref[block][0] + (mx4>>2) + (my4>>2)*stride; |
1013 | 772 dxy = ((my4 & 3) << 2) | (mx4 & 3); |
773 | |
774 if(s->no_rounding) | |
1799 | 775 s->dsp.put_no_rnd_qpel_pixels_tab[1][dxy](dest_y , ref , stride); |
1013 | 776 else |
1708 | 777 s->dsp.put_qpel_pixels_tab [1][dxy](dest_y , ref , stride); |
1013 | 778 }else{ |
1950 | 779 uint8_t *ref= c->ref[block][0] + (mx4>>1) + (my4>>1)*stride; |
1013 | 780 dxy = ((my4 & 1) << 1) | (mx4 & 1); |
781 | |
782 if(s->no_rounding) | |
1708 | 783 s->dsp.put_no_rnd_pixels_tab[1][dxy](dest_y , ref , stride, h); |
1013 | 784 else |
1708 | 785 s->dsp.put_pixels_tab [1][dxy](dest_y , ref , stride, h); |
1013 | 786 } |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
787 dmin_sum+= (mv_penalty[mx4-pred_x4] + mv_penalty[my4-pred_y4])*c->mb_penalty_factor; |
1013 | 788 }else |
789 dmin_sum+= dmin4; | |
790 | |
791 if(s->quarter_sample){ | |
792 mx4_sum+= mx4/2; | |
793 my4_sum+= my4/2; | |
794 }else{ | |
795 mx4_sum+= mx4; | |
796 my4_sum+= my4; | |
797 } | |
798 | |
1668
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
799 s->current_picture.motion_val[0][ s->block_index[block] ][0]= mx4; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
800 s->current_picture.motion_val[0][ s->block_index[block] ][1]= my4; |
1494
3ee63c12ea30
optionally try to encode each MB with MV=<0,0> and choose the one with better RD
michaelni
parents:
1426
diff
changeset
|
801 |
3ee63c12ea30
optionally try to encode each MB with MV=<0,0> and choose the one with better RD
michaelni
parents:
1426
diff
changeset
|
802 if(mx4 != mx || my4 != my) same=0; |
1013 | 803 } |
804 | |
1494
3ee63c12ea30
optionally try to encode each MB with MV=<0,0> and choose the one with better RD
michaelni
parents:
1426
diff
changeset
|
805 if(same) |
3ee63c12ea30
optionally try to encode each MB with MV=<0,0> and choose the one with better RD
michaelni
parents:
1426
diff
changeset
|
806 return INT_MAX; |
3ee63c12ea30
optionally try to encode each MB with MV=<0,0> and choose the one with better RD
michaelni
parents:
1426
diff
changeset
|
807 |
1038 | 808 if(s->dsp.me_sub_cmp[0] != s->dsp.mb_cmp[0]){ |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
809 dmin_sum += s->dsp.mb_cmp[0](s, s->new_picture.data[0] + s->mb_x*16 + s->mb_y*16*stride, c->scratchpad, stride, 16); |
455 | 810 } |
1013 | 811 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
812 if(c->avctx->mb_cmp&FF_CMP_CHROMA){ |
1013 | 813 int dxy; |
814 int mx, my; | |
815 int offset; | |
816 | |
817 mx= ff_h263_round_chroma(mx4_sum); | |
818 my= ff_h263_round_chroma(my4_sum); | |
819 dxy = ((my & 1) << 1) | (mx & 1); | |
820 | |
821 offset= (s->mb_x*8 + (mx>>1)) + (s->mb_y*8 + (my>>1))*s->uvlinesize; | |
822 | |
823 if(s->no_rounding){ | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
824 s->dsp.put_no_rnd_pixels_tab[1][dxy](c->scratchpad , s->last_picture.data[1] + offset, s->uvlinesize, 8); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
825 s->dsp.put_no_rnd_pixels_tab[1][dxy](c->scratchpad+8 , s->last_picture.data[2] + offset, s->uvlinesize, 8); |
1013 | 826 }else{ |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
827 s->dsp.put_pixels_tab [1][dxy](c->scratchpad , s->last_picture.data[1] + offset, s->uvlinesize, 8); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
828 s->dsp.put_pixels_tab [1][dxy](c->scratchpad+8 , s->last_picture.data[2] + offset, s->uvlinesize, 8); |
1013 | 829 } |
830 | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
831 dmin_sum += s->dsp.mb_cmp[1](s, s->new_picture.data[1] + s->mb_x*8 + s->mb_y*8*s->uvlinesize, c->scratchpad , s->uvlinesize, 8); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
832 dmin_sum += s->dsp.mb_cmp[1](s, s->new_picture.data[2] + s->mb_x*8 + s->mb_y*8*s->uvlinesize, c->scratchpad+8, s->uvlinesize, 8); |
1013 | 833 } |
1950 | 834 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
835 c->pred_x= mx; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
836 c->pred_y= my; |
1013 | 837 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
838 switch(c->avctx->mb_cmp&0xFF){ |
1013 | 839 /*case FF_CMP_SSE: |
840 return dmin_sum+ 32*s->qscale*s->qscale;*/ | |
841 case FF_CMP_RD: | |
842 return dmin_sum; | |
843 default: | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
844 return dmin_sum+ 11*c->mb_penalty_factor; |
1013 | 845 } |
455 | 846 } |
847 | |
1962 | 848 static inline void init_interlaced_ref(MpegEncContext *s, int ref_index){ |
849 MotionEstContext * const c= &s->me; | |
850 | |
851 c->ref[1+ref_index][0] = c->ref[0+ref_index][0] + s->linesize; | |
852 c->src[1][0] = c->src[0][0] + s->linesize; | |
853 if(c->flags & FLAG_CHROMA){ | |
854 c->ref[1+ref_index][1] = c->ref[0+ref_index][1] + s->uvlinesize; | |
855 c->ref[1+ref_index][2] = c->ref[0+ref_index][2] + s->uvlinesize; | |
856 c->src[1][1] = c->src[0][1] + s->uvlinesize; | |
857 c->src[1][2] = c->src[0][2] + s->uvlinesize; | |
858 } | |
859 } | |
860 | |
1950 | 861 static int interlaced_search(MpegEncContext *s, int ref_index, |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
862 int16_t (*mv_tables[2][2])[2], uint8_t *field_select_tables[2], int mx, int my, int user_field_select) |
1708 | 863 { |
1950 | 864 MotionEstContext * const c= &s->me; |
1708 | 865 const int size=0; |
866 const int h=8; | |
867 int block; | |
868 int P[10][2]; | |
1950 | 869 uint8_t * const mv_penalty= c->current_mv_penalty; |
1708 | 870 int same=1; |
871 const int stride= 2*s->linesize; | |
872 const int uvstride= 2*s->uvlinesize; | |
873 int dmin_sum= 0; | |
874 const int mot_stride= s->mb_stride; | |
875 const int xy= s->mb_x + s->mb_y*mot_stride; | |
876 | |
1950 | 877 c->ymin>>=1; |
878 c->ymax>>=1; | |
879 c->stride<<=1; | |
880 c->uvstride<<=1; | |
1962 | 881 init_interlaced_ref(s, ref_index); |
1708 | 882 |
883 for(block=0; block<2; block++){ | |
884 int field_select; | |
885 int best_dmin= INT_MAX; | |
886 int best_field= -1; | |
887 | |
888 for(field_select=0; field_select<2; field_select++){ | |
1950 | 889 int dmin, mx_i, my_i; |
1708 | 890 int16_t (*mv_table)[2]= mv_tables[block][field_select]; |
891 | |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
892 if(user_field_select){ |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
893 if(field_select_tables[block][xy] != field_select) |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
894 continue; |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
895 } |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
896 |
1708 | 897 P_LEFT[0] = mv_table[xy - 1][0]; |
898 P_LEFT[1] = mv_table[xy - 1][1]; | |
1950 | 899 if(P_LEFT[0] > (c->xmax<<1)) P_LEFT[0] = (c->xmax<<1); |
1708 | 900 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
901 c->pred_x= P_LEFT[0]; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
902 c->pred_y= P_LEFT[1]; |
1708 | 903 |
1799 | 904 if(!s->first_slice_line){ |
1708 | 905 P_TOP[0] = mv_table[xy - mot_stride][0]; |
906 P_TOP[1] = mv_table[xy - mot_stride][1]; | |
907 P_TOPRIGHT[0] = mv_table[xy - mot_stride + 1][0]; | |
908 P_TOPRIGHT[1] = mv_table[xy - mot_stride + 1][1]; | |
1950 | 909 if(P_TOP[1] > (c->ymax<<1)) P_TOP[1] = (c->ymax<<1); |
910 if(P_TOPRIGHT[0] < (c->xmin<<1)) P_TOPRIGHT[0]= (c->xmin<<1); | |
911 if(P_TOPRIGHT[0] > (c->xmax<<1)) P_TOPRIGHT[0]= (c->xmax<<1); | |
912 if(P_TOPRIGHT[1] > (c->ymax<<1)) P_TOPRIGHT[1]= (c->ymax<<1); | |
1708 | 913 |
914 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); | |
915 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
916 } | |
917 P_MV1[0]= mx; //FIXME not correct if block != field_select | |
918 P_MV1[1]= my / 2; | |
919 | |
1950 | 920 dmin = epzs_motion_search2(s, &mx_i, &my_i, P, block, field_select+ref_index, mv_table, (1<<16)>>1); |
1708 | 921 |
1950 | 922 dmin= c->sub_motion_search(s, &mx_i, &my_i, dmin, block, field_select+ref_index, size, h); |
1708 | 923 |
924 mv_table[xy][0]= mx_i; | |
925 mv_table[xy][1]= my_i; | |
926 | |
1950 | 927 if(s->dsp.me_sub_cmp[0] != s->dsp.mb_cmp[0]){ |
1708 | 928 int dxy; |
929 | |
930 //FIXME chroma ME | |
1950 | 931 uint8_t *ref= c->ref[field_select+ref_index][0] + (mx_i>>1) + (my_i>>1)*stride; |
1708 | 932 dxy = ((my_i & 1) << 1) | (mx_i & 1); |
933 | |
934 if(s->no_rounding){ | |
1950 | 935 s->dsp.put_no_rnd_pixels_tab[size][dxy](c->scratchpad, ref , stride, h); |
1708 | 936 }else{ |
1950 | 937 s->dsp.put_pixels_tab [size][dxy](c->scratchpad, ref , stride, h); |
1708 | 938 } |
1950 | 939 dmin= s->dsp.mb_cmp[size](s, c->src[block][0], c->scratchpad, stride, h); |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
940 dmin+= (mv_penalty[mx_i-c->pred_x] + mv_penalty[my_i-c->pred_y] + 1)*c->mb_penalty_factor; |
1708 | 941 }else |
1950 | 942 dmin+= c->mb_penalty_factor; //field_select bits |
1708 | 943 |
944 dmin += field_select != block; //slightly prefer same field | |
945 | |
946 if(dmin < best_dmin){ | |
947 best_dmin= dmin; | |
948 best_field= field_select; | |
949 } | |
950 } | |
951 { | |
952 int16_t (*mv_table)[2]= mv_tables[block][best_field]; | |
953 | |
954 if(mv_table[xy][0] != mx) same=0; //FIXME check if these checks work and are any good at all | |
955 if(mv_table[xy][1]&1) same=0; | |
956 if(mv_table[xy][1]*2 != my) same=0; | |
957 if(best_field != block) same=0; | |
958 } | |
959 | |
960 field_select_tables[block][xy]= best_field; | |
961 dmin_sum += best_dmin; | |
962 } | |
963 | |
1950 | 964 c->ymin<<=1; |
965 c->ymax<<=1; | |
966 c->stride>>=1; | |
967 c->uvstride>>=1; | |
1708 | 968 |
969 if(same) | |
970 return INT_MAX; | |
971 | |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
972 switch(c->avctx->mb_cmp&0xFF){ |
1708 | 973 /*case FF_CMP_SSE: |
974 return dmin_sum+ 32*s->qscale*s->qscale;*/ | |
975 case FF_CMP_RD: | |
976 return dmin_sum; | |
977 default: | |
1950 | 978 return dmin_sum+ 11*c->mb_penalty_factor; |
1708 | 979 } |
980 } | |
981 | |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
982 static inline int check_input_motion(MpegEncContext * s, int mb_x, int mb_y, int p_type){ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
983 MotionEstContext * const c= &s->me; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
984 Picture *p= s->current_picture_ptr; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
985 int mb_xy= mb_x + mb_y*s->mb_stride; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
986 int xy= 2*mb_x + 2*mb_y*s->b8_stride; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
987 int mb_type= s->current_picture.mb_type[mb_xy]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
988 int flags= c->flags; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
989 int shift= (flags&FLAG_QPEL) + 1; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
990 int mask= (1<<shift)-1; |
1962 | 991 int x, y, i; |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
992 int d=0; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
993 me_cmp_func cmpf= s->dsp.sse[0]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
994 me_cmp_func chroma_cmpf= s->dsp.sse[1]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
995 |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
996 assert(p_type==0 || !USES_LIST(mb_type, 1)); |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
997 assert(IS_INTRA(mb_type) || USES_LIST(mb_type,0) || USES_LIST(mb_type,1)); |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
998 |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
999 if(IS_INTERLACED(mb_type)){ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1000 int xy2= xy + s->b8_stride; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1001 s->mb_type[mb_xy]=CANDIDATE_MB_TYPE_INTRA; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1002 c->stride<<=1; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1003 c->uvstride<<=1; |
1963 | 1004 |
1995 | 1005 if(!(s->flags & CODEC_FLAG_INTERLACED_ME)){ |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1006 av_log(c->avctx, AV_LOG_ERROR, "Interlaced macroblock selected but interlaced motion estimation disabled\n"); |
1995 | 1007 return -1; |
1008 } | |
1962 | 1009 |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1010 if(USES_LIST(mb_type, 0)){ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1011 int field_select0= p->ref_index[0][xy ]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1012 int field_select1= p->ref_index[0][xy2]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1013 assert(field_select0==0 ||field_select0==1); |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1014 assert(field_select1==0 ||field_select1==1); |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1015 init_interlaced_ref(s, 0); |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1016 |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1017 if(p_type){ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1018 s->p_field_select_table[0][mb_xy]= field_select0; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1019 s->p_field_select_table[1][mb_xy]= field_select1; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1020 *(uint32_t*)s->p_field_mv_table[0][field_select0][mb_xy]= *(uint32_t*)p->motion_val[0][xy ]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1021 *(uint32_t*)s->p_field_mv_table[1][field_select1][mb_xy]= *(uint32_t*)p->motion_val[0][xy2]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1022 s->mb_type[mb_xy]=CANDIDATE_MB_TYPE_INTER_I; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1023 }else{ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1024 s->b_field_select_table[0][0][mb_xy]= field_select0; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1025 s->b_field_select_table[0][1][mb_xy]= field_select1; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1026 *(uint32_t*)s->b_field_mv_table[0][0][field_select0][mb_xy]= *(uint32_t*)p->motion_val[0][xy ]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1027 *(uint32_t*)s->b_field_mv_table[0][1][field_select1][mb_xy]= *(uint32_t*)p->motion_val[0][xy2]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1028 s->mb_type[mb_xy]= CANDIDATE_MB_TYPE_FORWARD_I; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1029 } |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1030 |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1031 x= p->motion_val[0][xy ][0]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1032 y= p->motion_val[0][xy ][1]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1033 d = cmp(s, x>>shift, y>>shift, x&mask, y&mask, 0, 8, field_select0, 0, cmpf, chroma_cmpf, flags); |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1034 x= p->motion_val[0][xy2][0]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1035 y= p->motion_val[0][xy2][1]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1036 d+= cmp(s, x>>shift, y>>shift, x&mask, y&mask, 0, 8, field_select1, 1, cmpf, chroma_cmpf, flags); |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1037 } |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1038 if(USES_LIST(mb_type, 1)){ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1039 int field_select0= p->ref_index[1][xy ]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1040 int field_select1= p->ref_index[1][xy2]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1041 assert(field_select0==0 ||field_select0==1); |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1042 assert(field_select1==0 ||field_select1==1); |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1043 init_interlaced_ref(s, 2); |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1044 |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1045 s->b_field_select_table[1][0][mb_xy]= field_select0; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1046 s->b_field_select_table[1][1][mb_xy]= field_select1; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1047 *(uint32_t*)s->b_field_mv_table[1][0][field_select0][mb_xy]= *(uint32_t*)p->motion_val[1][xy ]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1048 *(uint32_t*)s->b_field_mv_table[1][1][field_select1][mb_xy]= *(uint32_t*)p->motion_val[1][xy2]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1049 if(USES_LIST(mb_type, 0)){ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1050 s->mb_type[mb_xy]= CANDIDATE_MB_TYPE_BIDIR_I; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1051 }else{ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1052 s->mb_type[mb_xy]= CANDIDATE_MB_TYPE_BACKWARD_I; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1053 } |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1054 |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1055 x= p->motion_val[1][xy ][0]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1056 y= p->motion_val[1][xy ][1]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1057 d = cmp(s, x>>shift, y>>shift, x&mask, y&mask, 0, 8, field_select0+2, 0, cmpf, chroma_cmpf, flags); |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1058 x= p->motion_val[1][xy2][0]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1059 y= p->motion_val[1][xy2][1]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1060 d+= cmp(s, x>>shift, y>>shift, x&mask, y&mask, 0, 8, field_select1+2, 1, cmpf, chroma_cmpf, flags); |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1061 //FIXME bidir scores |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1062 } |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1063 c->stride>>=1; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1064 c->uvstride>>=1; |
1962 | 1065 }else if(IS_8X8(mb_type)){ |
1995 | 1066 if(!(s->flags & CODEC_FLAG_4MV)){ |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1067 av_log(c->avctx, AV_LOG_ERROR, "4MV macroblock selected but 4MV encoding disabled\n"); |
1995 | 1068 return -1; |
1069 } | |
1962 | 1070 cmpf= s->dsp.sse[1]; |
1071 chroma_cmpf= s->dsp.sse[1]; | |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1072 init_mv4_ref(c); |
1962 | 1073 for(i=0; i<4; i++){ |
1074 xy= s->block_index[i]; | |
1075 x= p->motion_val[0][xy][0]; | |
1076 y= p->motion_val[0][xy][1]; | |
1077 d+= cmp(s, x>>shift, y>>shift, x&mask, y&mask, 1, 8, i, i, cmpf, chroma_cmpf, flags); | |
1078 } | |
1079 s->mb_type[mb_xy]=CANDIDATE_MB_TYPE_INTER4V; | |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1080 }else{ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1081 if(USES_LIST(mb_type, 0)){ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1082 if(p_type){ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1083 *(uint32_t*)s->p_mv_table[mb_xy]= *(uint32_t*)p->motion_val[0][xy]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1084 s->mb_type[mb_xy]=CANDIDATE_MB_TYPE_INTER; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1085 }else if(USES_LIST(mb_type, 1)){ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1086 *(uint32_t*)s->b_bidir_forw_mv_table[mb_xy]= *(uint32_t*)p->motion_val[0][xy]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1087 *(uint32_t*)s->b_bidir_back_mv_table[mb_xy]= *(uint32_t*)p->motion_val[1][xy]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1088 s->mb_type[mb_xy]=CANDIDATE_MB_TYPE_BIDIR; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1089 }else{ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1090 *(uint32_t*)s->b_forw_mv_table[mb_xy]= *(uint32_t*)p->motion_val[0][xy]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1091 s->mb_type[mb_xy]=CANDIDATE_MB_TYPE_FORWARD; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1092 } |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1093 x= p->motion_val[0][xy][0]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1094 y= p->motion_val[0][xy][1]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1095 d = cmp(s, x>>shift, y>>shift, x&mask, y&mask, 0, 16, 0, 0, cmpf, chroma_cmpf, flags); |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1096 }else if(USES_LIST(mb_type, 1)){ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1097 *(uint32_t*)s->b_back_mv_table[mb_xy]= *(uint32_t*)p->motion_val[1][xy]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1098 s->mb_type[mb_xy]=CANDIDATE_MB_TYPE_BACKWARD; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1099 |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1100 x= p->motion_val[1][xy][0]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1101 y= p->motion_val[1][xy][1]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1102 d = cmp(s, x>>shift, y>>shift, x&mask, y&mask, 0, 16, 2, 0, cmpf, chroma_cmpf, flags); |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1103 }else |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1104 s->mb_type[mb_xy]=CANDIDATE_MB_TYPE_INTRA; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1105 } |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1106 return d; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1107 } |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1108 |
324 | 1109 void ff_estimate_p_frame_motion(MpegEncContext * s, |
1110 int mb_x, int mb_y) | |
0 | 1111 { |
1950 | 1112 MotionEstContext * const c= &s->me; |
1064 | 1113 uint8_t *pix, *ppix; |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1114 int sum, varc, vard, mx, my, dmin; |
455 | 1115 int P[10][2]; |
280 | 1116 const int shift= 1+s->quarter_sample; |
294 | 1117 int mb_type=0; |
903 | 1118 Picture * const pic= &s->current_picture; |
1950 | 1119 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1120 init_ref(c, s->new_picture.data, s->last_picture.data, NULL, 16*mb_x, 16*mb_y, 0); |
1708 | 1121 |
936 | 1122 assert(s->quarter_sample==0 || s->quarter_sample==1); |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1123 assert(s->linesize == c->stride); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1124 assert(s->uvlinesize == c->uvstride); |
936 | 1125 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1126 c->penalty_factor = get_penalty_factor(s, c->avctx->me_cmp); |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1127 c->sub_penalty_factor= get_penalty_factor(s, c->avctx->me_sub_cmp); |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1128 c->mb_penalty_factor = get_penalty_factor(s, c->avctx->mb_cmp); |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1129 c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_MV; |
0 | 1130 |
1708 | 1131 get_limits(s, 16*mb_x, 16*mb_y); |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1132 c->skip=0; |
324 | 1133 |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1134 /* intra / predictive decision */ |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1135 pix = c->src[0][0]; |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1136 sum = s->dsp.pix_sum(pix, s->linesize); |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1137 varc = (s->dsp.pix_norm1(pix, s->linesize) - (((unsigned)(sum*sum))>>8) + 500 + 128)>>8; |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1138 |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1139 pic->mb_mean[s->mb_stride * mb_y + mb_x] = (sum+128)>>8; |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1140 pic->mb_var [s->mb_stride * mb_y + mb_x] = varc; |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1141 c->mb_var_sum_temp += varc; |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1142 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1143 if(c->avctx->me_threshold){ |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1144 vard= (check_input_motion(s, mb_x, mb_y, 1)+128)>>8; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1145 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1146 if(vard<c->avctx->me_threshold){ |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1147 pic->mc_mb_var[s->mb_stride * mb_y + mb_x] = vard; |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1148 c->mc_mb_var_sum_temp += vard; |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1149 if (vard <= 64 || vard < varc) { //FIXME |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1150 c->scene_change_score+= ff_sqrt(vard) - ff_sqrt(varc); |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1151 }else{ |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1152 c->scene_change_score+= s->qscale; |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1153 } |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1154 return; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1155 } |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1156 if(vard<c->avctx->mb_threshold) |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1157 mb_type= s->mb_type[mb_x + mb_y*s->mb_stride]; |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1158 } |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1159 |
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1160 switch(s->me_method) { |
0 | 1161 case ME_ZERO: |
1162 default: | |
1163 no_motion_search(s, &mx, &my); | |
455 | 1164 mx-= mb_x*16; |
1165 my-= mb_y*16; | |
0 | 1166 dmin = 0; |
1167 break; | |
1708 | 1168 #if 0 |
0 | 1169 case ME_FULL: |
1708 | 1170 dmin = full_motion_search(s, &mx, &my, range, ref_picture); |
455 | 1171 mx-= mb_x*16; |
1172 my-= mb_y*16; | |
0 | 1173 break; |
1174 case ME_LOG: | |
1708 | 1175 dmin = log_motion_search(s, &mx, &my, range / 2, ref_picture); |
455 | 1176 mx-= mb_x*16; |
1177 my-= mb_y*16; | |
0 | 1178 break; |
1179 case ME_PHODS: | |
1708 | 1180 dmin = phods_motion_search(s, &mx, &my, range / 2, ref_picture); |
455 | 1181 mx-= mb_x*16; |
1182 my-= mb_y*16; | |
0 | 1183 break; |
1708 | 1184 #endif |
288 | 1185 case ME_X1: |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
1186 case ME_EPZS: |
288 | 1187 { |
1938
e2501e6e7ff7
unify table indexing (motion_val,dc_val,ac_val,coded_block changed)
michael
parents:
1904
diff
changeset
|
1188 const int mot_stride = s->b8_stride; |
294 | 1189 const int mot_xy = s->block_index[0]; |
288 | 1190 |
1668
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
1191 P_LEFT[0] = s->current_picture.motion_val[0][mot_xy - 1][0]; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
1192 P_LEFT[1] = s->current_picture.motion_val[0][mot_xy - 1][1]; |
288 | 1193 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1194 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift); |
280 | 1195 |
1799 | 1196 if(!s->first_slice_line) { |
1668
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
1197 P_TOP[0] = s->current_picture.motion_val[0][mot_xy - mot_stride ][0]; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
1198 P_TOP[1] = s->current_picture.motion_val[0][mot_xy - mot_stride ][1]; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
1199 P_TOPRIGHT[0] = s->current_picture.motion_val[0][mot_xy - mot_stride + 2][0]; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
1200 P_TOPRIGHT[1] = s->current_picture.motion_val[0][mot_xy - mot_stride + 2][1]; |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1201 if(P_TOP[1] > (c->ymax<<shift)) P_TOP[1] = (c->ymax<<shift); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1202 if(P_TOPRIGHT[0] < (c->xmin<<shift)) P_TOPRIGHT[0]= (c->xmin<<shift); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1203 if(P_TOPRIGHT[1] > (c->ymax<<shift)) P_TOPRIGHT[1]= (c->ymax<<shift); |
280 | 1204 |
455 | 1205 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); |
1206 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
1207 | |
1208 if(s->out_format == FMT_H263){ | |
1950 | 1209 c->pred_x = P_MEDIAN[0]; |
1210 c->pred_y = P_MEDIAN[1]; | |
455 | 1211 }else { /* mpeg1 at least */ |
1950 | 1212 c->pred_x= P_LEFT[0]; |
1213 c->pred_y= P_LEFT[1]; | |
455 | 1214 } |
952 | 1215 }else{ |
1950 | 1216 c->pred_x= P_LEFT[0]; |
1217 c->pred_y= P_LEFT[1]; | |
288 | 1218 } |
952 | 1219 |
280 | 1220 } |
1950 | 1221 dmin = epzs_motion_search(s, &mx, &my, P, 0, 0, s->p_mv_table, (1<<16)>>shift); |
1222 | |
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
1223 break; |
0 | 1224 } |
1225 | |
455 | 1226 /* At this point (mx,my) are full-pell and the relative displacement */ |
1950 | 1227 ppix = c->ref[0][0] + (my * s->linesize) + mx; |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1228 |
1708 | 1229 vard = (s->dsp.sse[0](NULL, pix, ppix, s->linesize, 16)+128)>>8; |
608 | 1230 |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1231 pic->mc_mb_var[s->mb_stride * mb_y + mb_x] = vard; |
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1232 // pic->mb_cmp_score[s->mb_stride * mb_y + mb_x] = dmin; |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1233 c->mc_mb_var_sum_temp += vard; |
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1234 |
0 | 1235 #if 0 |
233
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
1236 printf("varc=%4d avg_var=%4d (sum=%4d) vard=%4d mx=%2d my=%2d\n", |
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
1237 varc, s->avg_mb_var, sum, vard, mx - xx, my - yy); |
0 | 1238 #endif |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1239 if(mb_type){ |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1240 if (vard <= 64 || vard < varc) |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1241 c->scene_change_score+= ff_sqrt(vard) - ff_sqrt(varc); |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1242 else |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1243 c->scene_change_score+= s->qscale; |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1244 |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1245 if(mb_type == CANDIDATE_MB_TYPE_INTER){ |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1246 c->sub_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16); |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1247 set_p_mv_tables(s, mx, my, 1); |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1248 }else{ |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1249 mx <<=shift; |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1250 my <<=shift; |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1251 } |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1252 if(mb_type == CANDIDATE_MB_TYPE_INTER4V){ |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1253 h263_mv4_search(s, mx, my, shift); |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1254 |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1255 set_p_mv_tables(s, mx, my, 0); |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1256 } |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1257 if(mb_type == CANDIDATE_MB_TYPE_INTER_I){ |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1258 interlaced_search(s, 0, s->p_field_mv_table, s->p_field_select_table, mx, my, 1); |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1259 } |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1260 }else if(c->avctx->mb_decision > FF_MB_DECISION_SIMPLE){ |
608 | 1261 if (vard <= 64 || vard < varc) |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1262 c->scene_change_score+= ff_sqrt(vard) - ff_sqrt(varc); |
608 | 1263 else |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1264 c->scene_change_score+= s->qscale; |
608 | 1265 |
294 | 1266 if (vard*2 + 200 > varc) |
1708 | 1267 mb_type|= CANDIDATE_MB_TYPE_INTRA; |
294 | 1268 if (varc*2 + 200 > vard){ |
1708 | 1269 mb_type|= CANDIDATE_MB_TYPE_INTER; |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1270 c->sub_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16); |
1494
3ee63c12ea30
optionally try to encode each MB with MV=<0,0> and choose the one with better RD
michaelni
parents:
1426
diff
changeset
|
1271 if(s->flags&CODEC_FLAG_MV0) |
3ee63c12ea30
optionally try to encode each MB with MV=<0,0> and choose the one with better RD
michaelni
parents:
1426
diff
changeset
|
1272 if(mx || my) |
1708 | 1273 mb_type |= CANDIDATE_MB_TYPE_SKIPED; //FIXME check difference |
304 | 1274 }else{ |
936 | 1275 mx <<=shift; |
1276 my <<=shift; | |
0 | 1277 } |
455 | 1278 if((s->flags&CODEC_FLAG_4MV) |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1279 && !c->skip && varc>50 && vard>10){ |
1708 | 1280 if(h263_mv4_search(s, mx, my, shift) < INT_MAX) |
1281 mb_type|=CANDIDATE_MB_TYPE_INTER4V; | |
455 | 1282 |
1283 set_p_mv_tables(s, mx, my, 0); | |
1284 }else | |
1285 set_p_mv_tables(s, mx, my, 1); | |
1708 | 1286 if((s->flags&CODEC_FLAG_INTERLACED_ME) |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1287 && !c->skip){ //FIXME varc/d checks |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1288 if(interlaced_search(s, 0, s->p_field_mv_table, s->p_field_select_table, mx, my, 0) < INT_MAX) |
1708 | 1289 mb_type |= CANDIDATE_MB_TYPE_INTER_I; |
1290 } | |
294 | 1291 }else{ |
1633 | 1292 int intra_score, i; |
1708 | 1293 mb_type= CANDIDATE_MB_TYPE_INTER; |
1013 | 1294 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1295 dmin= c->sub_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16); |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1296 if(c->avctx->me_sub_cmp != c->avctx->mb_cmp && !c->skip) |
1950 | 1297 dmin= get_mb_score(s, mx, my, 0, 0); |
1013 | 1298 |
1299 if((s->flags&CODEC_FLAG_4MV) | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1300 && !c->skip && varc>50 && vard>10){ |
1708 | 1301 int dmin4= h263_mv4_search(s, mx, my, shift); |
1013 | 1302 if(dmin4 < dmin){ |
1708 | 1303 mb_type= CANDIDATE_MB_TYPE_INTER4V; |
1013 | 1304 dmin=dmin4; |
1305 } | |
1306 } | |
1708 | 1307 if((s->flags&CODEC_FLAG_INTERLACED_ME) |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1308 && !c->skip){ //FIXME varc/d checks |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1309 int dmin_i= interlaced_search(s, 0, s->p_field_mv_table, s->p_field_select_table, mx, my, 0); |
1708 | 1310 if(dmin_i < dmin){ |
1311 mb_type = CANDIDATE_MB_TYPE_INTER_I; | |
1312 dmin= dmin_i; | |
1313 } | |
1314 } | |
1633 | 1315 |
1316 // pic->mb_cmp_score[s->mb_stride * mb_y + mb_x] = dmin; | |
1708 | 1317 set_p_mv_tables(s, mx, my, mb_type!=CANDIDATE_MB_TYPE_INTER4V); |
1633 | 1318 |
1319 /* get intra luma score */ | |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1320 if((c->avctx->mb_cmp&0xFF)==FF_CMP_SSE){ |
1633 | 1321 intra_score= (varc<<8) - 500; //FIXME dont scale it down so we dont have to fix it |
1322 }else{ | |
1323 int mean= (sum+128)>>8; | |
1324 mean*= 0x01010101; | |
1325 | |
1326 for(i=0; i<16; i++){ | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1327 *(uint32_t*)(&c->scratchpad[i*s->linesize+ 0]) = mean; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1328 *(uint32_t*)(&c->scratchpad[i*s->linesize+ 4]) = mean; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1329 *(uint32_t*)(&c->scratchpad[i*s->linesize+ 8]) = mean; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1330 *(uint32_t*)(&c->scratchpad[i*s->linesize+12]) = mean; |
1633 | 1331 } |
1332 | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1333 intra_score= s->dsp.mb_cmp[0](s, c->scratchpad, pix, s->linesize, 16); |
1633 | 1334 } |
1335 #if 0 //FIXME | |
1336 /* get chroma score */ | |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1337 if(c->avctx->mb_cmp&FF_CMP_CHROMA){ |
1633 | 1338 for(i=1; i<3; i++){ |
1339 uint8_t *dest_c; | |
1340 int mean; | |
1341 | |
1342 if(s->out_format == FMT_H263){ | |
1938
e2501e6e7ff7
unify table indexing (motion_val,dc_val,ac_val,coded_block changed)
michael
parents:
1904
diff
changeset
|
1343 mean= (s->dc_val[i][mb_x + mb_y*s->b8_stride] + 4)>>3; //FIXME not exact but simple ;) |
1633 | 1344 }else{ |
1345 mean= (s->last_dc[i] + 4)>>3; | |
1346 } | |
1347 dest_c = s->new_picture.data[i] + (mb_y * 8 * (s->uvlinesize)) + mb_x * 8; | |
1348 | |
1349 mean*= 0x01010101; | |
1350 for(i=0; i<8; i++){ | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1351 *(uint32_t*)(&c->scratchpad[i*s->uvlinesize+ 0]) = mean; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1352 *(uint32_t*)(&c->scratchpad[i*s->uvlinesize+ 4]) = mean; |
1633 | 1353 } |
1354 | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1355 intra_score+= s->dsp.mb_cmp[1](s, c->scratchpad, dest_c, s->uvlinesize); |
1633 | 1356 } |
1357 } | |
1358 #endif | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1359 intra_score += c->mb_penalty_factor*16; |
1013 | 1360 |
1633 | 1361 if(intra_score < dmin){ |
1708 | 1362 mb_type= CANDIDATE_MB_TYPE_INTRA; |
1363 s->current_picture.mb_type[mb_y*s->mb_stride + mb_x]= CANDIDATE_MB_TYPE_INTRA; //FIXME cleanup | |
1633 | 1364 }else |
1365 s->current_picture.mb_type[mb_y*s->mb_stride + mb_x]= 0; | |
1366 | |
1367 if (vard <= 64 || vard < varc) { //FIXME | |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1368 c->scene_change_score+= ff_sqrt(vard) - ff_sqrt(varc); |
294 | 1369 }else{ |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1370 c->scene_change_score+= s->qscale; |
294 | 1371 } |
1372 } | |
284 | 1373 |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1374 s->mb_type[mb_y*s->mb_stride + mb_x]= mb_type; |
0 | 1375 } |
1376 | |
951 | 1377 int ff_pre_estimate_p_frame_motion(MpegEncContext * s, |
1378 int mb_x, int mb_y) | |
1379 { | |
1950 | 1380 MotionEstContext * const c= &s->me; |
1708 | 1381 int mx, my, dmin; |
951 | 1382 int P[10][2]; |
1383 const int shift= 1+s->quarter_sample; | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1384 const int xy= mb_x + mb_y*s->mb_stride; |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1385 init_ref(c, s->new_picture.data, s->last_picture.data, NULL, 16*mb_x, 16*mb_y, 0); |
951 | 1386 |
1387 assert(s->quarter_sample==0 || s->quarter_sample==1); | |
1388 | |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1389 c->pre_penalty_factor = get_penalty_factor(s, c->avctx->me_pre_cmp); |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1390 c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_MV; |
951 | 1391 |
1708 | 1392 get_limits(s, 16*mb_x, 16*mb_y); |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1393 c->skip=0; |
951 | 1394 |
1395 P_LEFT[0] = s->p_mv_table[xy + 1][0]; | |
1396 P_LEFT[1] = s->p_mv_table[xy + 1][1]; | |
1397 | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1398 if(P_LEFT[0] < (c->xmin<<shift)) P_LEFT[0] = (c->xmin<<shift); |
951 | 1399 |
1400 /* special case for first line */ | |
1799 | 1401 if (s->first_slice_line) { |
1950 | 1402 c->pred_x= P_LEFT[0]; |
1403 c->pred_y= P_LEFT[1]; | |
952 | 1404 P_TOP[0]= P_TOPRIGHT[0]= P_MEDIAN[0]= |
1405 P_TOP[1]= P_TOPRIGHT[1]= P_MEDIAN[1]= 0; //FIXME | |
951 | 1406 } else { |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1407 P_TOP[0] = s->p_mv_table[xy + s->mb_stride ][0]; |
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1408 P_TOP[1] = s->p_mv_table[xy + s->mb_stride ][1]; |
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1409 P_TOPRIGHT[0] = s->p_mv_table[xy + s->mb_stride - 1][0]; |
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1410 P_TOPRIGHT[1] = s->p_mv_table[xy + s->mb_stride - 1][1]; |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1411 if(P_TOP[1] < (c->ymin<<shift)) P_TOP[1] = (c->ymin<<shift); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1412 if(P_TOPRIGHT[0] > (c->xmax<<shift)) P_TOPRIGHT[0]= (c->xmax<<shift); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1413 if(P_TOPRIGHT[1] < (c->ymin<<shift)) P_TOPRIGHT[1]= (c->ymin<<shift); |
951 | 1414 |
1415 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); | |
1416 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
1417 | |
1950 | 1418 c->pred_x = P_MEDIAN[0]; |
1419 c->pred_y = P_MEDIAN[1]; | |
951 | 1420 } |
1950 | 1421 |
1422 dmin = epzs_motion_search(s, &mx, &my, P, 0, 0, s->p_mv_table, (1<<16)>>shift); | |
952 | 1423 |
951 | 1424 s->p_mv_table[xy][0] = mx<<shift; |
1425 s->p_mv_table[xy][1] = my<<shift; | |
1426 | |
1427 return dmin; | |
1428 } | |
1429 | |
1057 | 1430 static int ff_estimate_motion_b(MpegEncContext * s, |
1950 | 1431 int mb_x, int mb_y, int16_t (*mv_table)[2], int ref_index, int f_code) |
0 | 1432 { |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1433 MotionEstContext * const c= &s->me; |
1708 | 1434 int mx, my, dmin; |
455 | 1435 int P[10][2]; |
324 | 1436 const int shift= 1+s->quarter_sample; |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1437 const int mot_stride = s->mb_stride; |
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1438 const int mot_xy = mb_y*mot_stride + mb_x; |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1439 uint8_t * const mv_penalty= c->mv_penalty[f_code] + MAX_MV; |
948 | 1440 int mv_scale; |
936 | 1441 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1442 c->penalty_factor = get_penalty_factor(s, c->avctx->me_cmp); |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1443 c->sub_penalty_factor= get_penalty_factor(s, c->avctx->me_sub_cmp); |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1444 c->mb_penalty_factor = get_penalty_factor(s, c->avctx->mb_cmp); |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1445 c->current_mv_penalty= mv_penalty; |
936 | 1446 |
1708 | 1447 get_limits(s, 16*mb_x, 16*mb_y); |
324 | 1448 |
1449 switch(s->me_method) { | |
1450 case ME_ZERO: | |
1451 default: | |
1452 no_motion_search(s, &mx, &my); | |
1453 dmin = 0; | |
455 | 1454 mx-= mb_x*16; |
1455 my-= mb_y*16; | |
324 | 1456 break; |
1708 | 1457 #if 0 |
324 | 1458 case ME_FULL: |
1708 | 1459 dmin = full_motion_search(s, &mx, &my, range, ref_picture); |
455 | 1460 mx-= mb_x*16; |
1461 my-= mb_y*16; | |
324 | 1462 break; |
1463 case ME_LOG: | |
1708 | 1464 dmin = log_motion_search(s, &mx, &my, range / 2, ref_picture); |
455 | 1465 mx-= mb_x*16; |
1466 my-= mb_y*16; | |
324 | 1467 break; |
1468 case ME_PHODS: | |
1708 | 1469 dmin = phods_motion_search(s, &mx, &my, range / 2, ref_picture); |
455 | 1470 mx-= mb_x*16; |
1471 my-= mb_y*16; | |
324 | 1472 break; |
1708 | 1473 #endif |
324 | 1474 case ME_X1: |
1475 case ME_EPZS: | |
1476 { | |
455 | 1477 P_LEFT[0] = mv_table[mot_xy - 1][0]; |
1478 P_LEFT[1] = mv_table[mot_xy - 1][1]; | |
324 | 1479 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1480 if(P_LEFT[0] > (c->xmax<<shift)) P_LEFT[0] = (c->xmax<<shift); |
324 | 1481 |
1482 /* special case for first line */ | |
1799 | 1483 if (!s->first_slice_line) { |
455 | 1484 P_TOP[0] = mv_table[mot_xy - mot_stride ][0]; |
1485 P_TOP[1] = mv_table[mot_xy - mot_stride ][1]; | |
1486 P_TOPRIGHT[0] = mv_table[mot_xy - mot_stride + 1 ][0]; | |
1487 P_TOPRIGHT[1] = mv_table[mot_xy - mot_stride + 1 ][1]; | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1488 if(P_TOP[1] > (c->ymax<<shift)) P_TOP[1]= (c->ymax<<shift); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1489 if(P_TOPRIGHT[0] < (c->xmin<<shift)) P_TOPRIGHT[0]= (c->xmin<<shift); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1490 if(P_TOPRIGHT[1] > (c->ymax<<shift)) P_TOPRIGHT[1]= (c->ymax<<shift); |
324 | 1491 |
455 | 1492 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); |
1493 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
324 | 1494 } |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1495 c->pred_x= P_LEFT[0]; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1496 c->pred_y= P_LEFT[1]; |
324 | 1497 } |
948 | 1498 |
1499 if(mv_table == s->b_forw_mv_table){ | |
1500 mv_scale= (s->pb_time<<16) / (s->pp_time<<shift); | |
1501 }else{ | |
1502 mv_scale= ((s->pb_time - s->pp_time)<<16) / (s->pp_time<<shift); | |
1503 } | |
1504 | |
1950 | 1505 dmin = epzs_motion_search(s, &mx, &my, P, 0, ref_index, s->p_mv_table, mv_scale); |
324 | 1506 |
1507 break; | |
1508 } | |
1509 | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1510 dmin= c->sub_motion_search(s, &mx, &my, dmin, 0, ref_index, 0, 16); |
1013 | 1511 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1512 if(c->avctx->me_sub_cmp != c->avctx->mb_cmp && !c->skip) |
1950 | 1513 dmin= get_mb_score(s, mx, my, 0, ref_index); |
1013 | 1514 |
455 | 1515 //printf("%d %d %d %d//", s->mb_x, s->mb_y, mx, my); |
324 | 1516 // s->mb_type[mb_y*s->mb_width + mb_x]= mb_type; |
1517 mv_table[mot_xy][0]= mx; | |
1518 mv_table[mot_xy][1]= my; | |
936 | 1519 |
327 | 1520 return dmin; |
324 | 1521 } |
1522 | |
1950 | 1523 static inline int check_bidir_mv(MpegEncContext * s, |
327 | 1524 int motion_fx, int motion_fy, |
1525 int motion_bx, int motion_by, | |
1526 int pred_fx, int pred_fy, | |
1708 | 1527 int pred_bx, int pred_by, |
1528 int size, int h) | |
327 | 1529 { |
1530 //FIXME optimize? | |
936 | 1531 //FIXME better f_code prediction (max mv & distance) |
1708 | 1532 //FIXME pointers |
1950 | 1533 MotionEstContext * const c= &s->me; |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1534 uint8_t * const mv_penalty= c->mv_penalty[s->f_code] + MAX_MV; // f_code of the prev frame |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1535 int stride= c->stride; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1536 int uvstride= c->uvstride; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1537 uint8_t *dest_y = c->scratchpad; |
327 | 1538 uint8_t *ptr; |
1539 int dxy; | |
1540 int src_x, src_y; | |
1541 int fbmin; | |
1950 | 1542 uint8_t **src_data= c->src[0]; |
1543 uint8_t **ref_data= c->ref[0]; | |
1544 uint8_t **ref2_data= c->ref[2]; | |
327 | 1545 |
936 | 1546 if(s->quarter_sample){ |
1547 dxy = ((motion_fy & 3) << 2) | (motion_fx & 3); | |
1708 | 1548 src_x = motion_fx >> 2; |
1549 src_y = motion_fy >> 2; | |
327 | 1550 |
1708 | 1551 ptr = ref_data[0] + (src_y * stride) + src_x; |
1552 s->dsp.put_qpel_pixels_tab[0][dxy](dest_y , ptr , stride); | |
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1553 |
936 | 1554 dxy = ((motion_by & 3) << 2) | (motion_bx & 3); |
1708 | 1555 src_x = motion_bx >> 2; |
1556 src_y = motion_by >> 2; | |
936 | 1557 |
1950 | 1558 ptr = ref2_data[0] + (src_y * stride) + src_x; |
1708 | 1559 s->dsp.avg_qpel_pixels_tab[size][dxy](dest_y , ptr , stride); |
936 | 1560 }else{ |
1561 dxy = ((motion_fy & 1) << 1) | (motion_fx & 1); | |
1708 | 1562 src_x = motion_fx >> 1; |
1563 src_y = motion_fy >> 1; | |
327 | 1564 |
1708 | 1565 ptr = ref_data[0] + (src_y * stride) + src_x; |
1566 s->dsp.put_pixels_tab[size][dxy](dest_y , ptr , stride, h); | |
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1567 |
936 | 1568 dxy = ((motion_by & 1) << 1) | (motion_bx & 1); |
1708 | 1569 src_x = motion_bx >> 1; |
1570 src_y = motion_by >> 1; | |
936 | 1571 |
1950 | 1572 ptr = ref2_data[0] + (src_y * stride) + src_x; |
1708 | 1573 s->dsp.avg_pixels_tab[size][dxy](dest_y , ptr , stride, h); |
936 | 1574 } |
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1575 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1576 fbmin = (mv_penalty[motion_fx-pred_fx] + mv_penalty[motion_fy-pred_fy])*c->mb_penalty_factor |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1577 +(mv_penalty[motion_bx-pred_bx] + mv_penalty[motion_by-pred_by])*c->mb_penalty_factor |
1708 | 1578 + s->dsp.mb_cmp[size](s, src_data[0], dest_y, stride, h); //FIXME new_pic |
1013 | 1579 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1580 if(c->avctx->mb_cmp&FF_CMP_CHROMA){ |
1013 | 1581 } |
1582 //FIXME CHROMA !!! | |
1583 | |
327 | 1584 return fbmin; |
1585 } | |
1586 | |
1587 /* refine the bidir vectors in hq mode and return the score in both lq & hq mode*/ | |
1950 | 1588 static inline int bidir_refine(MpegEncContext * s, int mb_x, int mb_y) |
327 | 1589 { |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1590 const int mot_stride = s->mb_stride; |
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1591 const int xy = mb_y *mot_stride + mb_x; |
327 | 1592 int fbmin; |
1593 int pred_fx= s->b_bidir_forw_mv_table[xy-1][0]; | |
1594 int pred_fy= s->b_bidir_forw_mv_table[xy-1][1]; | |
1595 int pred_bx= s->b_bidir_back_mv_table[xy-1][0]; | |
1596 int pred_by= s->b_bidir_back_mv_table[xy-1][1]; | |
1597 int motion_fx= s->b_bidir_forw_mv_table[xy][0]= s->b_forw_mv_table[xy][0]; | |
1598 int motion_fy= s->b_bidir_forw_mv_table[xy][1]= s->b_forw_mv_table[xy][1]; | |
1599 int motion_bx= s->b_bidir_back_mv_table[xy][0]= s->b_back_mv_table[xy][0]; | |
1600 int motion_by= s->b_bidir_back_mv_table[xy][1]= s->b_back_mv_table[xy][1]; | |
1601 | |
1602 //FIXME do refinement and add flag | |
1603 | |
1950 | 1604 fbmin= check_bidir_mv(s, motion_fx, motion_fy, |
327 | 1605 motion_bx, motion_by, |
1606 pred_fx, pred_fy, | |
1708 | 1607 pred_bx, pred_by, |
1608 0, 16); | |
327 | 1609 |
1610 return fbmin; | |
1611 } | |
1612 | |
1950 | 1613 static inline int direct_search(MpegEncContext * s, int mb_x, int mb_y) |
324 | 1614 { |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1615 MotionEstContext * const c= &s->me; |
455 | 1616 int P[10][2]; |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1617 const int mot_stride = s->mb_stride; |
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1618 const int mot_xy = mb_y*mot_stride + mb_x; |
936 | 1619 const int shift= 1+s->quarter_sample; |
1620 int dmin, i; | |
327 | 1621 const int time_pp= s->pp_time; |
664 | 1622 const int time_pb= s->pb_time; |
936 | 1623 int mx, my, xmin, xmax, ymin, ymax; |
327 | 1624 int16_t (*mv_table)[2]= s->b_direct_mv_table; |
936 | 1625 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1626 c->current_mv_penalty= c->mv_penalty[1] + MAX_MV; |
936 | 1627 ymin= xmin=(-32)>>shift; |
1628 ymax= xmax= 31>>shift; | |
1629 | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1630 if(IS_8X8(s->next_picture.mb_type[mot_xy])){ |
936 | 1631 s->mv_type= MV_TYPE_8X8; |
1632 }else{ | |
1633 s->mv_type= MV_TYPE_16X16; | |
327 | 1634 } |
936 | 1635 |
1636 for(i=0; i<4; i++){ | |
1637 int index= s->block_index[i]; | |
1638 int min, max; | |
1639 | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1640 c->co_located_mv[i][0]= s->next_picture.motion_val[0][index][0]; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1641 c->co_located_mv[i][1]= s->next_picture.motion_val[0][index][1]; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1642 c->direct_basis_mv[i][0]= c->co_located_mv[i][0]*time_pb/time_pp + ((i& 1)<<(shift+3)); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1643 c->direct_basis_mv[i][1]= c->co_located_mv[i][1]*time_pb/time_pp + ((i>>1)<<(shift+3)); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1644 // c->direct_basis_mv[1][i][0]= c->co_located_mv[i][0]*(time_pb - time_pp)/time_pp + ((i &1)<<(shift+3); |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1645 // c->direct_basis_mv[1][i][1]= c->co_located_mv[i][1]*(time_pb - time_pp)/time_pp + ((i>>1)<<(shift+3); |
936 | 1646 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1647 max= FFMAX(c->direct_basis_mv[i][0], c->direct_basis_mv[i][0] - c->co_located_mv[i][0])>>shift; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1648 min= FFMIN(c->direct_basis_mv[i][0], c->direct_basis_mv[i][0] - c->co_located_mv[i][0])>>shift; |
1764 | 1649 max+= 16*mb_x + 1; // +-1 is for the simpler rounding |
1650 min+= 16*mb_x - 1; | |
960 | 1651 xmax= FFMIN(xmax, s->width - max); |
1652 xmin= FFMAX(xmin, - 16 - min); | |
936 | 1653 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1654 max= FFMAX(c->direct_basis_mv[i][1], c->direct_basis_mv[i][1] - c->co_located_mv[i][1])>>shift; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1655 min= FFMIN(c->direct_basis_mv[i][1], c->direct_basis_mv[i][1] - c->co_located_mv[i][1])>>shift; |
1764 | 1656 max+= 16*mb_y + 1; // +-1 is for the simpler rounding |
1657 min+= 16*mb_y - 1; | |
960 | 1658 ymax= FFMIN(ymax, s->height - max); |
1659 ymin= FFMAX(ymin, - 16 - min); | |
936 | 1660 |
1661 if(s->mv_type == MV_TYPE_16X16) break; | |
327 | 1662 } |
936 | 1663 |
1664 assert(xmax <= 15 && ymax <= 15 && xmin >= -16 && ymin >= -16); | |
1665 | |
1666 if(xmax < 0 || xmin >0 || ymax < 0 || ymin > 0){ | |
1667 s->b_direct_mv_table[mot_xy][0]= 0; | |
1668 s->b_direct_mv_table[mot_xy][1]= 0; | |
1669 | |
1670 return 256*256*256*64; | |
1671 } | |
1708 | 1672 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1673 c->xmin= xmin; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1674 c->ymin= ymin; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1675 c->xmax= xmax; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1676 c->ymax= ymax; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1677 c->flags |= FLAG_DIRECT; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1678 c->sub_flags |= FLAG_DIRECT; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1679 c->pred_x=0; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1680 c->pred_y=0; |
936 | 1681 |
950 | 1682 P_LEFT[0] = clip(mv_table[mot_xy - 1][0], xmin<<shift, xmax<<shift); |
1683 P_LEFT[1] = clip(mv_table[mot_xy - 1][1], ymin<<shift, ymax<<shift); | |
1684 | |
1685 /* special case for first line */ | |
1799 | 1686 if (!s->first_slice_line) { //FIXME maybe allow this over thread boundary as its cliped |
950 | 1687 P_TOP[0] = clip(mv_table[mot_xy - mot_stride ][0], xmin<<shift, xmax<<shift); |
1688 P_TOP[1] = clip(mv_table[mot_xy - mot_stride ][1], ymin<<shift, ymax<<shift); | |
1689 P_TOPRIGHT[0] = clip(mv_table[mot_xy - mot_stride + 1 ][0], xmin<<shift, xmax<<shift); | |
1690 P_TOPRIGHT[1] = clip(mv_table[mot_xy - mot_stride + 1 ][1], ymin<<shift, ymax<<shift); | |
1691 | |
1692 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); | |
1693 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
1694 } | |
1013 | 1695 |
1950 | 1696 dmin = epzs_motion_search(s, &mx, &my, P, 0, 0, mv_table, 1<<(16-shift)); |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1697 if(c->sub_flags&FLAG_QPEL) |
1950 | 1698 dmin = qpel_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16); |
1699 else | |
1700 dmin = hpel_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16); | |
1701 | |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1702 if(c->avctx->me_sub_cmp != c->avctx->mb_cmp && !c->skip) |
1950 | 1703 dmin= get_mb_score(s, mx, my, 0, 0); |
1708 | 1704 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1705 get_limits(s, 16*mb_x, 16*mb_y); //restore c->?min/max, maybe not needed |
327 | 1706 |
1707 s->b_direct_mv_table[mot_xy][0]= mx; | |
1708 s->b_direct_mv_table[mot_xy][1]= my; | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1709 c->flags &= ~FLAG_DIRECT; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1710 c->sub_flags &= ~FLAG_DIRECT; |
1950 | 1711 |
327 | 1712 return dmin; |
324 | 1713 } |
1714 | |
1715 void ff_estimate_b_frame_motion(MpegEncContext * s, | |
1716 int mb_x, int mb_y) | |
1717 { | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1718 MotionEstContext * const c= &s->me; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1719 const int penalty_factor= c->mb_penalty_factor; |
1708 | 1720 int fmin, bmin, dmin, fbmin, bimin, fimin; |
327 | 1721 int type=0; |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1722 const int xy = mb_y*s->mb_stride + mb_x; |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1723 init_ref(c, s->new_picture.data, s->last_picture.data, s->next_picture.data, 16*mb_x, 16*mb_y, 2); |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1724 |
327 | 1725 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1726 c->skip=0; |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1727 if(c->avctx->me_threshold){ |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1728 int vard= (check_input_motion(s, mb_x, mb_y, 0)+128)>>8; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1729 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1730 if(vard<c->avctx->me_threshold){ |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1731 // pix = c->src[0][0]; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1732 // sum = s->dsp.pix_sum(pix, s->linesize); |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1733 // varc = (s->dsp.pix_norm1(pix, s->linesize) - (((unsigned)(sum*sum))>>8) + 500 + 128)>>8; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1734 |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1735 // pic->mb_var [s->mb_stride * mb_y + mb_x] = varc; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1736 s->current_picture.mc_mb_var[s->mb_stride * mb_y + mb_x] = vard; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1737 /* pic->mb_mean [s->mb_stride * mb_y + mb_x] = (sum+128)>>8; |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1738 c->mb_var_sum_temp += varc;*/ |
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1739 c->mc_mb_var_sum_temp += vard; |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1740 /* if (vard <= 64 || vard < varc) { |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1741 c->scene_change_score+= ff_sqrt(vard) - ff_sqrt(varc); |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1742 }else{ |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1743 c->scene_change_score+= s->qscale; |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1744 }*/ |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1745 return; |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1746 } |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1747 if(vard<c->avctx->mb_threshold){ |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1748 type= s->mb_type[mb_y*s->mb_stride + mb_x]; |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1749 if(type == CANDIDATE_MB_TYPE_DIRECT){ |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1750 direct_search(s, mb_x, mb_y); |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1751 } |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1752 if(type == CANDIDATE_MB_TYPE_FORWARD || type == CANDIDATE_MB_TYPE_BIDIR){ |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1753 c->skip=0; |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1754 ff_estimate_motion_b(s, mb_x, mb_y, s->b_forw_mv_table, 0, s->f_code); |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1755 } |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1756 if(type == CANDIDATE_MB_TYPE_BACKWARD || type == CANDIDATE_MB_TYPE_BIDIR){ |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1757 c->skip=0; |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1758 ff_estimate_motion_b(s, mb_x, mb_y, s->b_back_mv_table, 2, s->b_code); |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1759 } |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1760 if(type == CANDIDATE_MB_TYPE_FORWARD_I || type == CANDIDATE_MB_TYPE_BIDIR_I){ |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1761 c->skip=0; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1762 c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_MV; |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1763 interlaced_search(s, 0, |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1764 s->b_field_mv_table[0], s->b_field_select_table[0], |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1765 s->b_forw_mv_table[xy][0], s->b_forw_mv_table[xy][1], 1); |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1766 } |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1767 if(type == CANDIDATE_MB_TYPE_BACKWARD_I || type == CANDIDATE_MB_TYPE_BIDIR_I){ |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1768 c->skip=0; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1769 c->current_mv_penalty= c->mv_penalty[s->b_code] + MAX_MV; |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1770 interlaced_search(s, 2, |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1771 s->b_field_mv_table[1], s->b_field_select_table[1], |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1772 s->b_back_mv_table[xy][0], s->b_back_mv_table[xy][1], 1); |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1773 } |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1774 return; |
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1775 } |
1955
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1776 } |
5dafb10e0252
reuse motion vectors/mb types/field select values of the source video, if the SSE for a macroblock which is predicted with these values is below me_threshold
michael
parents:
1950
diff
changeset
|
1777 |
1426 | 1778 if (s->codec_id == CODEC_ID_MPEG4) |
1950 | 1779 dmin= direct_search(s, mb_x, mb_y); |
1426 | 1780 else |
1781 dmin= INT_MAX; | |
1708 | 1782 //FIXME penalty stuff for non mpeg4 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1783 c->skip=0; |
1950 | 1784 fmin= ff_estimate_motion_b(s, mb_x, mb_y, s->b_forw_mv_table, 0, s->f_code) + 3*penalty_factor; |
1426 | 1785 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1786 c->skip=0; |
1950 | 1787 bmin= ff_estimate_motion_b(s, mb_x, mb_y, s->b_back_mv_table, 2, s->b_code) + 2*penalty_factor; |
324 | 1788 //printf(" %d %d ", s->b_forw_mv_table[xy][0], s->b_forw_mv_table[xy][1]); |
327 | 1789 |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1790 c->skip=0; |
1950 | 1791 fbmin= bidir_refine(s, mb_x, mb_y) + penalty_factor; |
1013 | 1792 //printf("%d %d %d %d\n", dmin, fmin, bmin, fbmin); |
1708 | 1793 |
1794 if(s->flags & CODEC_FLAG_INTERLACED_ME){ | |
1795 //FIXME mb type penalty | |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1796 c->skip=0; |
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1797 c->current_mv_penalty= c->mv_penalty[s->f_code] + MAX_MV; |
1950 | 1798 fimin= interlaced_search(s, 0, |
1799 s->b_field_mv_table[0], s->b_field_select_table[0], | |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1800 s->b_forw_mv_table[xy][0], s->b_forw_mv_table[xy][1], 0); |
2014
15c885db82a8
reduce dependancy between motion estimation and MpegEncContext
michael
parents:
1995
diff
changeset
|
1801 c->current_mv_penalty= c->mv_penalty[s->b_code] + MAX_MV; |
1950 | 1802 bimin= interlaced_search(s, 2, |
1803 s->b_field_mv_table[1], s->b_field_select_table[1], | |
1968
19c2344e800a
support reusing mb types and field select values of the source file, but use motion vectors just as additional predictors
michael
parents:
1963
diff
changeset
|
1804 s->b_back_mv_table[xy][0], s->b_back_mv_table[xy][1], 0); |
1708 | 1805 }else |
1806 fimin= bimin= INT_MAX; | |
1807 | |
612 | 1808 { |
1051
e5a9dbf597d4
mpeg1 bframe encoding patch by (Rapha¸«³l LEGRAND) with some modifications by me
michaelni
parents:
1050
diff
changeset
|
1809 int score= fmin; |
1708 | 1810 type = CANDIDATE_MB_TYPE_FORWARD; |
327 | 1811 |
1426 | 1812 if (dmin <= score){ |
1051
e5a9dbf597d4
mpeg1 bframe encoding patch by (Rapha¸«³l LEGRAND) with some modifications by me
michaelni
parents:
1050
diff
changeset
|
1813 score = dmin; |
1708 | 1814 type = CANDIDATE_MB_TYPE_DIRECT; |
327 | 1815 } |
1816 if(bmin<score){ | |
1817 score=bmin; | |
1708 | 1818 type= CANDIDATE_MB_TYPE_BACKWARD; |
327 | 1819 } |
1820 if(fbmin<score){ | |
1821 score=fbmin; | |
1708 | 1822 type= CANDIDATE_MB_TYPE_BIDIR; |
1823 } | |
1824 if(fimin<score){ | |
1825 score=fimin; | |
1826 type= CANDIDATE_MB_TYPE_FORWARD_I; | |
1827 } | |
1828 if(bimin<score){ | |
1829 score=bimin; | |
1830 type= CANDIDATE_MB_TYPE_BACKWARD_I; | |
327 | 1831 } |
1013 | 1832 |
807
0e1d375c537f
fixing q>0.0 assert failure caused by overflow of variance for b frames
michaelni
parents:
765
diff
changeset
|
1833 score= ((unsigned)(score*score + 128*256))>>16; |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1834 c->mc_mb_var_sum_temp += score; |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1835 s->current_picture.mc_mb_var[mb_y*s->mb_stride + mb_x] = score; //FIXME use SSE |
327 | 1836 } |
612 | 1837 |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1838 if(c->avctx->mb_decision > FF_MB_DECISION_SIMPLE){ |
1708 | 1839 type= CANDIDATE_MB_TYPE_FORWARD | CANDIDATE_MB_TYPE_BACKWARD | CANDIDATE_MB_TYPE_BIDIR | CANDIDATE_MB_TYPE_DIRECT; |
1840 if(fimin < INT_MAX) | |
1841 type |= CANDIDATE_MB_TYPE_FORWARD_I; | |
1842 if(bimin < INT_MAX) | |
1843 type |= CANDIDATE_MB_TYPE_BACKWARD_I; | |
1844 if(fimin < INT_MAX && bimin < INT_MAX){ | |
1845 type |= CANDIDATE_MB_TYPE_BIDIR_I; | |
1846 } | |
1847 //FIXME something smarter | |
1848 if(dmin>256*256*16) type&= ~CANDIDATE_MB_TYPE_DIRECT; //dont try direct mode if its invalid for this MB | |
1729 | 1849 #if 0 |
1850 if(s->out_format == FMT_MPEG1) | |
1851 type |= CANDIDATE_MB_TYPE_INTRA; | |
1852 #endif | |
612 | 1853 } |
1854 | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1855 s->mb_type[mb_y*s->mb_stride + mb_x]= type; |
324 | 1856 } |
0 | 1857 |
324 | 1858 /* find best f_code for ME which do unlimited searches */ |
1859 int ff_get_best_fcode(MpegEncContext * s, int16_t (*mv_table)[2], int type) | |
1860 { | |
1861 if(s->me_method>=ME_EPZS){ | |
455 | 1862 int score[8]; |
324 | 1863 int i, y; |
1064 | 1864 uint8_t * fcode_tab= s->fcode_tab; |
455 | 1865 int best_fcode=-1; |
1866 int best_score=-10000000; | |
324 | 1867 |
936 | 1868 for(i=0; i<8; i++) score[i]= s->mb_num*(8-i); |
324 | 1869 |
1870 for(y=0; y<s->mb_height; y++){ | |
1871 int x; | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1872 int xy= y*s->mb_stride; |
324 | 1873 for(x=0; x<s->mb_width; x++){ |
1634 | 1874 if(s->mb_type[xy] & type){ |
847 | 1875 int fcode= FFMAX(fcode_tab[mv_table[xy][0] + MAX_MV], |
1876 fcode_tab[mv_table[xy][1] + MAX_MV]); | |
455 | 1877 int j; |
1878 | |
1879 for(j=0; j<fcode && j<8; j++){ | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1880 if(s->pict_type==B_TYPE || s->current_picture.mc_mb_var[xy] < s->current_picture.mb_var[xy]) |
455 | 1881 score[j]-= 170; |
1882 } | |
324 | 1883 } |
1884 xy++; | |
1885 } | |
1886 } | |
455 | 1887 |
1888 for(i=1; i<8; i++){ | |
1889 if(score[i] > best_score){ | |
1890 best_score= score[i]; | |
1891 best_fcode= i; | |
1892 } | |
1893 // printf("%d %d\n", i, score[i]); | |
1894 } | |
327 | 1895 |
324 | 1896 // printf("fcode: %d type: %d\n", i, s->pict_type); |
455 | 1897 return best_fcode; |
324 | 1898 /* for(i=0; i<=MAX_FCODE; i++){ |
1899 printf("%d ", mv_num[i]); | |
1900 } | |
1901 printf("\n");*/ | |
1902 }else{ | |
1903 return 1; | |
0 | 1904 } |
1905 } | |
1906 | |
324 | 1907 void ff_fix_long_p_mvs(MpegEncContext * s) |
1908 { | |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1909 MotionEstContext * const c= &s->me; |
324 | 1910 const int f_code= s->f_code; |
1086 | 1911 int y, range; |
1421 | 1912 assert(s->pict_type==P_TYPE); |
1086 | 1913 |
1421 | 1914 range = (((s->out_format == FMT_MPEG1) ? 8 : 16) << f_code); |
1086 | 1915 |
1916 if(s->msmpeg4_version) range= 16; | |
1917 | |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1918 if(c->avctx->me_range && range > c->avctx->me_range) range= c->avctx->me_range; |
1086 | 1919 |
455 | 1920 //printf("%d no:%d %d//\n", clip, noclip, f_code); |
324 | 1921 if(s->flags&CODEC_FLAG_4MV){ |
1938
e2501e6e7ff7
unify table indexing (motion_val,dc_val,ac_val,coded_block changed)
michael
parents:
1904
diff
changeset
|
1922 const int wrap= s->b8_stride; |
324 | 1923 |
1924 /* clip / convert to intra 8x8 type MVs */ | |
1925 for(y=0; y<s->mb_height; y++){ | |
1938
e2501e6e7ff7
unify table indexing (motion_val,dc_val,ac_val,coded_block changed)
michael
parents:
1904
diff
changeset
|
1926 int xy= y*2*wrap; |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1927 int i= y*s->mb_stride; |
324 | 1928 int x; |
1929 | |
1930 for(x=0; x<s->mb_width; x++){ | |
1708 | 1931 if(s->mb_type[i]&CANDIDATE_MB_TYPE_INTER4V){ |
324 | 1932 int block; |
1933 for(block=0; block<4; block++){ | |
1934 int off= (block& 1) + (block>>1)*wrap; | |
1668
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
1935 int mx= s->current_picture.motion_val[0][ xy + off ][0]; |
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
1936 int my= s->current_picture.motion_val[0][ xy + off ][1]; |
324 | 1937 |
1086 | 1938 if( mx >=range || mx <-range |
1939 || my >=range || my <-range){ | |
1708 | 1940 s->mb_type[i] &= ~CANDIDATE_MB_TYPE_INTER4V; |
1941 s->mb_type[i] |= CANDIDATE_MB_TYPE_INTRA; | |
1942 s->current_picture.mb_type[i]= CANDIDATE_MB_TYPE_INTRA; | |
324 | 1943 } |
1944 } | |
1945 } | |
502 | 1946 xy+=2; |
1947 i++; | |
324 | 1948 } |
1949 } | |
1950 } | |
1951 } | |
1952 | |
1708 | 1953 /** |
1954 * | |
1955 * @param truncate 1 for truncation, 0 for using intra | |
1956 */ | |
1957 void ff_fix_long_mvs(MpegEncContext * s, uint8_t *field_select_table, int field_select, | |
1958 int16_t (*mv_table)[2], int f_code, int type, int truncate) | |
324 | 1959 { |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1960 MotionEstContext * const c= &s->me; |
1708 | 1961 int y, h_range, v_range; |
324 | 1962 |
1051
e5a9dbf597d4
mpeg1 bframe encoding patch by (Rapha¸«³l LEGRAND) with some modifications by me
michaelni
parents:
1050
diff
changeset
|
1963 // RAL: 8 in MPEG-1, 16 in MPEG-4 |
1421 | 1964 int range = (((s->out_format == FMT_MPEG1) ? 8 : 16) << f_code); |
1708 | 1965 |
1966 if(s->msmpeg4_version) range= 16; | |
2015
3ab8f3e2ae6a
moving motion estimation specific variables from MpegEncContext -> MotionEstContext
michael
parents:
2014
diff
changeset
|
1967 if(c->avctx->me_range && range > c->avctx->me_range) range= c->avctx->me_range; |
1051
e5a9dbf597d4
mpeg1 bframe encoding patch by (Rapha¸«³l LEGRAND) with some modifications by me
michaelni
parents:
1050
diff
changeset
|
1968 |
1708 | 1969 h_range= range; |
1970 v_range= field_select_table ? range>>1 : range; | |
1971 | |
324 | 1972 /* clip / convert to intra 16x16 type MVs */ |
1973 for(y=0; y<s->mb_height; y++){ | |
1974 int x; | |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1975 int xy= y*s->mb_stride; |
1086 | 1976 for(x=0; x<s->mb_width; x++){ |
1177
fea03d2c4946
simplified adressing of most mb based arrays (mb_x + mb_y*s->mb_stride) now instead of mb_x + mb_y*mb_width and 1+mb_x + (1+mb_y)*(mb_width+2) and ... mixture
michaelni
parents:
1162
diff
changeset
|
1977 if (s->mb_type[xy] & type){ // RAL: "type" test added... |
1708 | 1978 if(field_select_table==NULL || field_select_table[xy] == field_select){ |
1979 if( mv_table[xy][0] >=h_range || mv_table[xy][0] <-h_range | |
1980 || mv_table[xy][1] >=v_range || mv_table[xy][1] <-v_range){ | |
1086 | 1981 |
1708 | 1982 if(truncate){ |
1983 if (mv_table[xy][0] > h_range-1) mv_table[xy][0]= h_range-1; | |
1984 else if(mv_table[xy][0] < -h_range ) mv_table[xy][0]= -h_range; | |
1985 if (mv_table[xy][1] > v_range-1) mv_table[xy][1]= v_range-1; | |
1986 else if(mv_table[xy][1] < -v_range ) mv_table[xy][1]= -v_range; | |
1987 }else{ | |
1988 s->mb_type[xy] &= ~type; | |
1989 s->mb_type[xy] |= CANDIDATE_MB_TYPE_INTRA; | |
1990 mv_table[xy][0]= | |
1991 mv_table[xy][1]= 0; | |
1992 } | |
1051
e5a9dbf597d4
mpeg1 bframe encoding patch by (Rapha¸«³l LEGRAND) with some modifications by me
michaelni
parents:
1050
diff
changeset
|
1993 } |
1086 | 1994 } |
324 | 1995 } |
1996 xy++; | |
1997 } | |
1998 } | |
1999 } |