Mercurial > libavcodec.hg
annotate motion_est.c @ 1963:2fd0c3f311bf libavcodec
sanity checks
| author | michael |
|---|---|
| date | Sat, 24 Apr 2004 03:43:43 +0000 |
| parents | 1d5abf80fa41 |
| children | 19c2344e800a |
| 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 |
| 936 | 52 static inline int update_map_generation(MpegEncContext * s) |
| 53 { | |
| 54 s->me.map_generation+= 1<<(ME_MAP_MV_BITS*2); | |
| 55 if(s->me.map_generation==0){ | |
| 56 s->me.map_generation= 1<<(ME_MAP_MV_BITS*2); | |
| 57 memset(s->me.map, 0, sizeof(uint32_t)*ME_MAP_SIZE); | |
| 58 } | |
| 59 return s->me.map_generation; | |
| 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 |
| 1950 | 80 static inline void init_ref(MpegEncContext *s, uint8_t *src[3], uint8_t *ref[3], uint8_t *ref2[3], int x, int y, int ref_index){ |
| 81 MotionEstContext * const c= &s->me; | |
| 82 const int offset[3]= { | |
| 83 y*c-> stride + x, | |
| 84 ((y*c->uvstride + x)>>1), | |
| 85 ((y*c->uvstride + x)>>1), | |
| 86 }; | |
| 87 int i; | |
| 88 for(i=0; i<3; i++){ | |
| 89 c->src[0][i]= src [i] + offset[i]; | |
| 90 c->ref[0][i]= ref [i] + offset[i]; | |
| 91 } | |
| 92 if(ref_index){ | |
| 93 for(i=0; i<3; i++){ | |
| 94 c->ref[ref_index][i]= ref2[i] + offset[i]; | |
| 95 } | |
| 96 } | |
| 936 | 97 } |
| 98 | |
| 1950 | 99 static int get_flags(MpegEncContext *s, int direct, int chroma){ |
| 100 return ((s->flags&CODEC_FLAG_QPEL) ? FLAG_QPEL : 0) | |
| 101 + (direct ? FLAG_DIRECT : 0) | |
| 102 + (chroma ? FLAG_CHROMA : 0); | |
| 103 } | |
| 1708 | 104 |
| 1950 | 105 static always_inline int cmp(MpegEncContext *s, const int x, const int y, const int subx, const int suby, |
| 106 const int size, const int h, int ref_index, int src_index, | |
| 107 me_cmp_func cmp_func, me_cmp_func chroma_cmp_func, const int flags){ | |
| 108 MotionEstContext * const c= &s->me; | |
| 109 const int stride= c->stride; | |
| 110 const int uvstride= c->uvstride; | |
| 111 const int qpel= flags&FLAG_QPEL; | |
| 112 const int chroma= flags&FLAG_CHROMA; | |
| 113 const int dxy= subx + (suby<<(1+qpel)); //FIXME log2_subpel? | |
| 114 const int hx= subx + (x<<(1+qpel)); | |
| 115 const int hy= suby + (y<<(1+qpel)); | |
| 116 uint8_t * const * const ref= c->ref[ref_index]; | |
| 117 uint8_t * const * const src= c->src[src_index]; | |
| 118 int d; | |
| 119 //FIXME check chroma 4mv, (no crashes ...) | |
| 120 if(flags&FLAG_DIRECT){ | |
| 121 if(x >= c->xmin && hx <= c->xmax<<(qpel+1) && y >= c->ymin && hy <= c->ymax<<(qpel+1)){ | |
| 122 const int time_pp= s->pp_time; | |
| 123 const int time_pb= s->pb_time; | |
| 124 const int mask= 2*qpel+1; | |
| 125 if(s->mv_type==MV_TYPE_8X8){ | |
| 126 int i; | |
| 127 for(i=0; i<4; i++){ | |
| 128 int fx = c->direct_basis_mv[i][0] + hx; | |
| 129 int fy = c->direct_basis_mv[i][1] + hy; | |
| 130 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)); | |
| 131 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)); | |
| 132 int fxy= (fx&mask) + ((fy&mask)<<(qpel+1)); | |
| 133 int bxy= (bx&mask) + ((by&mask)<<(qpel+1)); | |
| 134 | |
| 135 uint8_t *dst= c->temp + 8*(i&1) + 8*stride*(i>>1); | |
| 136 if(qpel){ | |
| 137 c->qpel_put[1][fxy](dst, ref[0] + (fx>>2) + (fy>>2)*stride, stride); | |
| 138 c->qpel_avg[1][bxy](dst, ref[8] + (bx>>2) + (by>>2)*stride, stride); | |
| 139 }else{ | |
| 140 c->hpel_put[1][fxy](dst, ref[0] + (fx>>1) + (fy>>1)*stride, stride, 8); | |
| 141 c->hpel_avg[1][bxy](dst, ref[8] + (bx>>1) + (by>>1)*stride, stride, 8); | |
| 142 } | |
| 143 } | |
| 144 }else{ | |
| 145 int fx = c->direct_basis_mv[0][0] + hx; | |
| 146 int fy = c->direct_basis_mv[0][1] + hy; | |
| 147 int bx = hx ? fx - c->co_located_mv[0][0] : (c->co_located_mv[0][0]*(time_pb - time_pp)/time_pp); | |
| 148 int by = hy ? fy - c->co_located_mv[0][1] : (c->co_located_mv[0][1]*(time_pb - time_pp)/time_pp); | |
| 149 int fxy= (fx&mask) + ((fy&mask)<<(qpel+1)); | |
| 150 int bxy= (bx&mask) + ((by&mask)<<(qpel+1)); | |
| 151 | |
| 152 if(qpel){ | |
| 153 c->qpel_put[1][fxy](c->temp , ref[0] + (fx>>2) + (fy>>2)*stride , stride); | |
| 154 c->qpel_put[1][fxy](c->temp + 8 , ref[0] + (fx>>2) + (fy>>2)*stride + 8 , stride); | |
| 155 c->qpel_put[1][fxy](c->temp + 8*stride, ref[0] + (fx>>2) + (fy>>2)*stride + 8*stride, stride); | |
| 156 c->qpel_put[1][fxy](c->temp + 8 + 8*stride, ref[0] + (fx>>2) + (fy>>2)*stride + 8 + 8*stride, stride); | |
| 157 c->qpel_avg[1][bxy](c->temp , ref[8] + (bx>>2) + (by>>2)*stride , stride); | |
| 158 c->qpel_avg[1][bxy](c->temp + 8 , ref[8] + (bx>>2) + (by>>2)*stride + 8 , stride); | |
| 159 c->qpel_avg[1][bxy](c->temp + 8*stride, ref[8] + (bx>>2) + (by>>2)*stride + 8*stride, stride); | |
| 160 c->qpel_avg[1][bxy](c->temp + 8 + 8*stride, ref[8] + (bx>>2) + (by>>2)*stride + 8 + 8*stride, stride); | |
| 161 }else{ | |
| 162 assert((fx>>1) + 16*s->mb_x >= -16); | |
| 163 assert((fy>>1) + 16*s->mb_y >= -16); | |
| 164 assert((fx>>1) + 16*s->mb_x <= s->width); | |
| 165 assert((fy>>1) + 16*s->mb_y <= s->height); | |
| 166 assert((bx>>1) + 16*s->mb_x >= -16); | |
| 167 assert((by>>1) + 16*s->mb_y >= -16); | |
| 168 assert((bx>>1) + 16*s->mb_x <= s->width); | |
| 169 assert((by>>1) + 16*s->mb_y <= s->height); | |
| 936 | 170 |
| 1950 | 171 c->hpel_put[0][fxy](c->temp, ref[0] + (fx>>1) + (fy>>1)*stride, stride, 16); |
| 172 c->hpel_avg[0][bxy](c->temp, ref[8] + (bx>>1) + (by>>1)*stride, stride, 16); | |
| 173 } | |
| 174 } | |
| 175 d = cmp_func(s, c->temp, src[0], stride, 16); | |
| 176 }else | |
| 177 d= 256*256*256*32; | |
| 178 }else{ | |
| 179 int uvdxy; | |
| 180 if(dxy){ | |
| 181 if(qpel){ | |
| 182 c->qpel_put[size][dxy](c->temp, ref[0] + x + y*stride, stride); //FIXME prototype (add h) | |
| 183 if(chroma){ | |
| 184 int cx= hx/2; | |
| 185 int cy= hy/2; | |
| 186 cx= (cx>>1)|(cx&1); | |
| 187 cy= (cy>>1)|(cy&1); | |
| 188 uvdxy= (cx&1) + 2*(cy&1); | |
| 189 //FIXME x/y wrong, but mpeg4 qpel is sick anyway, we should drop as much of it as possible in favor for h264 | |
| 190 } | |
| 191 }else{ | |
| 192 c->hpel_put[size][dxy](c->temp, ref[0] + x + y*stride, stride, h); | |
| 193 if(chroma) | |
| 194 uvdxy= dxy | (x&1) | (2*(y&1)); | |
| 195 } | |
| 196 d = cmp_func(s, c->temp, src[0], stride, h); | |
| 197 }else{ | |
| 198 d = cmp_func(s, src[0], ref[0] + x + y*stride, stride, h); | |
| 199 if(chroma) | |
| 200 uvdxy= (x&1) + 2*(y&1); | |
| 201 } | |
| 202 if(chroma){ | |
| 203 uint8_t * const uvtemp= c->temp + 16*stride; | |
| 204 c->hpel_put[size+1][uvdxy](uvtemp , ref[1] + (x>>1) + (y>>1)*uvstride, uvstride, h>>1); | |
| 205 c->hpel_put[size+1][uvdxy](uvtemp+8, ref[2] + (x>>1) + (y>>1)*uvstride, uvstride, h>>1); | |
| 206 d += chroma_cmp_func(s, uvtemp , src[1], uvstride, h>>1); | |
| 207 d += chroma_cmp_func(s, uvtemp+8, src[2], uvstride, h>>1); | |
| 208 } | |
| 209 } | |
| 210 #if 0 | |
| 211 if(full_pel){ | |
| 212 const int index= (((y)<<ME_MAP_SHIFT) + (x))&(ME_MAP_SIZE-1); | |
| 213 score_map[index]= d; | |
| 214 } | |
| 936 | 215 |
| 1950 | 216 d += (c->mv_penalty[hx - c->pred_x] + c->mv_penalty[hy - c->pred_y])*c->penalty_factor; |
| 217 #endif | |
| 218 return d; | |
| 936 | 219 } |
| 220 | |
| 221 #include "motion_est_template.c" | |
| 222 | |
| 223 static inline int get_penalty_factor(MpegEncContext *s, int type){ | |
| 1013 | 224 switch(type&0xFF){ |
| 936 | 225 default: |
| 226 case FF_CMP_SAD: | |
| 1013 | 227 return s->qscale*2; |
| 936 | 228 case FF_CMP_DCT: |
| 1013 | 229 return s->qscale*3; |
| 936 | 230 case FF_CMP_SATD: |
| 1013 | 231 return s->qscale*6; |
| 1007 | 232 case FF_CMP_SSE: |
| 1013 | 233 return s->qscale*s->qscale*2; |
| 1007 | 234 case FF_CMP_BIT: |
| 235 return 1; | |
| 236 case FF_CMP_RD: | |
| 1013 | 237 case FF_CMP_PSNR: |
| 238 return (s->qscale*s->qscale*185 + 64)>>7; | |
| 936 | 239 } |
| 240 } | |
| 241 | |
| 242 void ff_init_me(MpegEncContext *s){ | |
| 1962 | 243 MotionEstContext * const c= &s->me; |
| 244 | |
| 1729 | 245 ff_set_cmp(&s->dsp, s->dsp.me_pre_cmp, s->avctx->me_pre_cmp); |
| 246 ff_set_cmp(&s->dsp, s->dsp.me_cmp, s->avctx->me_cmp); | |
| 247 ff_set_cmp(&s->dsp, s->dsp.me_sub_cmp, s->avctx->me_sub_cmp); | |
| 248 ff_set_cmp(&s->dsp, s->dsp.mb_cmp, s->avctx->mb_cmp); | |
| 1950 | 249 |
| 250 s->me.flags = get_flags(s, 0, s->avctx->me_cmp &FF_CMP_CHROMA); | |
| 251 s->me.sub_flags= get_flags(s, 0, s->avctx->me_sub_cmp&FF_CMP_CHROMA); | |
| 252 s->me.mb_flags = get_flags(s, 0, s->avctx->mb_cmp &FF_CMP_CHROMA); | |
| 936 | 253 |
| 1962 | 254 /*FIXME s->no_rounding b_type*/ |
| 936 | 255 if(s->flags&CODEC_FLAG_QPEL){ |
| 1950 | 256 s->me.sub_motion_search= qpel_motion_search; |
| 1962 | 257 c->qpel_avg= s->dsp.avg_qpel_pixels_tab; |
| 258 if(s->no_rounding) c->qpel_put= s->dsp.put_no_rnd_qpel_pixels_tab; | |
| 259 else c->qpel_put= s->dsp.put_qpel_pixels_tab; | |
| 936 | 260 }else{ |
| 261 if(s->avctx->me_sub_cmp&FF_CMP_CHROMA) | |
| 1950 | 262 s->me.sub_motion_search= hpel_motion_search; |
| 1013 | 263 else if( s->avctx->me_sub_cmp == FF_CMP_SAD |
| 264 && s->avctx-> me_cmp == FF_CMP_SAD | |
| 265 && s->avctx-> mb_cmp == FF_CMP_SAD) | |
| 1708 | 266 s->me.sub_motion_search= sad_hpel_motion_search; // 2050 vs. 2450 cycles |
| 936 | 267 else |
| 1950 | 268 s->me.sub_motion_search= hpel_motion_search; |
| 1962 | 269 c->hpel_avg= s->dsp.avg_pixels_tab; |
| 270 if(s->no_rounding) c->hpel_put= s->dsp.put_no_rnd_pixels_tab; | |
| 271 else c->hpel_put= s->dsp.put_pixels_tab; | |
| 936 | 272 } |
| 1950 | 273 if(s->linesize){ |
| 274 s->me.stride = s->linesize; | |
| 275 s->me.uvstride= s->uvlinesize; | |
| 954 | 276 }else{ |
| 1950 | 277 s->me.stride = 16*s->mb_width + 32; |
| 278 s->me.uvstride= 8*s->mb_width + 16; | |
| 1013 | 279 } |
| 1962 | 280 |
| 281 c->temp= c->scratchpad; | |
| 936 | 282 } |
| 283 | |
| 1419 | 284 #if 0 |
| 1064 | 285 static int pix_dev(uint8_t * pix, int line_size, int mean) |
| 284 | 286 { |
| 287 int s, i, j; | |
| 288 | |
| 289 s = 0; | |
| 290 for (i = 0; i < 16; i++) { | |
| 291 for (j = 0; j < 16; j += 8) { | |
| 292 s += ABS(pix[0]-mean); | |
| 293 s += ABS(pix[1]-mean); | |
| 294 s += ABS(pix[2]-mean); | |
| 295 s += ABS(pix[3]-mean); | |
| 296 s += ABS(pix[4]-mean); | |
| 297 s += ABS(pix[5]-mean); | |
| 298 s += ABS(pix[6]-mean); | |
| 299 s += ABS(pix[7]-mean); | |
| 300 pix += 8; | |
| 301 } | |
| 302 pix += line_size - 16; | |
| 303 } | |
| 304 return s; | |
| 305 } | |
| 1419 | 306 #endif |
| 284 | 307 |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
308 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
|
309 int *mx_ptr, int *my_ptr) |
| 0 | 310 { |
| 311 *mx_ptr = 16 * s->mb_x; | |
| 312 *my_ptr = 16 * s->mb_y; | |
| 313 } | |
| 314 | |
| 315 static int full_motion_search(MpegEncContext * s, | |
| 316 int *mx_ptr, int *my_ptr, int range, | |
| 324 | 317 int xmin, int ymin, int xmax, int ymax, uint8_t *ref_picture) |
| 0 | 318 { |
| 319 int x1, y1, x2, y2, xx, yy, x, y; | |
| 320 int mx, my, dmin, d; | |
| 1064 | 321 uint8_t *pix; |
| 0 | 322 |
| 323 xx = 16 * s->mb_x; | |
| 324 yy = 16 * s->mb_y; | |
| 325 x1 = xx - range + 1; /* we loose one pixel to avoid boundary pb with half pixel pred */ | |
| 326 if (x1 < xmin) | |
| 327 x1 = xmin; | |
| 328 x2 = xx + range - 1; | |
| 329 if (x2 > xmax) | |
| 330 x2 = xmax; | |
| 331 y1 = yy - range + 1; | |
| 332 if (y1 < ymin) | |
| 333 y1 = ymin; | |
| 334 y2 = yy + range - 1; | |
| 335 if (y2 > ymax) | |
| 336 y2 = ymax; | |
| 903 | 337 pix = s->new_picture.data[0] + (yy * s->linesize) + xx; |
| 0 | 338 dmin = 0x7fffffff; |
| 339 mx = 0; | |
| 340 my = 0; | |
| 341 for (y = y1; y <= y2; y++) { | |
| 342 for (x = x1; x <= x2; x++) { | |
| 1708 | 343 d = s->dsp.pix_abs[0][0](NULL, pix, ref_picture + (y * s->linesize) + x, |
| 344 s->linesize, 16); | |
| 0 | 345 if (d < dmin || |
| 346 (d == dmin && | |
| 347 (abs(x - xx) + abs(y - yy)) < | |
| 348 (abs(mx - xx) + abs(my - yy)))) { | |
| 349 dmin = d; | |
| 350 mx = x; | |
| 351 my = y; | |
| 352 } | |
| 353 } | |
| 354 } | |
| 355 | |
| 356 *mx_ptr = mx; | |
| 357 *my_ptr = my; | |
| 358 | |
| 359 #if 0 | |
| 360 if (*mx_ptr < -(2 * range) || *mx_ptr >= (2 * range) || | |
| 361 *my_ptr < -(2 * range) || *my_ptr >= (2 * range)) { | |
| 362 fprintf(stderr, "error %d %d\n", *mx_ptr, *my_ptr); | |
| 363 } | |
| 364 #endif | |
| 365 return dmin; | |
| 366 } | |
| 367 | |
| 368 | |
| 369 static int log_motion_search(MpegEncContext * s, | |
| 370 int *mx_ptr, int *my_ptr, int range, | |
| 324 | 371 int xmin, int ymin, int xmax, int ymax, uint8_t *ref_picture) |
| 0 | 372 { |
| 373 int x1, y1, x2, y2, xx, yy, x, y; | |
| 374 int mx, my, dmin, d; | |
| 1064 | 375 uint8_t *pix; |
| 0 | 376 |
| 377 xx = s->mb_x << 4; | |
| 378 yy = s->mb_y << 4; | |
| 379 | |
| 380 /* Left limit */ | |
| 381 x1 = xx - range; | |
| 382 if (x1 < xmin) | |
| 383 x1 = xmin; | |
| 384 | |
| 385 /* Right limit */ | |
| 386 x2 = xx + range; | |
| 387 if (x2 > xmax) | |
| 388 x2 = xmax; | |
| 389 | |
| 390 /* Upper limit */ | |
| 391 y1 = yy - range; | |
| 392 if (y1 < ymin) | |
| 393 y1 = ymin; | |
| 394 | |
| 395 /* Lower limit */ | |
| 396 y2 = yy + range; | |
| 397 if (y2 > ymax) | |
| 398 y2 = ymax; | |
| 399 | |
| 903 | 400 pix = s->new_picture.data[0] + (yy * s->linesize) + xx; |
| 0 | 401 dmin = 0x7fffffff; |
| 402 mx = 0; | |
| 403 my = 0; | |
| 404 | |
| 405 do { | |
| 406 for (y = y1; y <= y2; y += range) { | |
| 407 for (x = x1; x <= x2; x += range) { | |
| 1708 | 408 d = s->dsp.pix_abs[0][0](NULL, pix, ref_picture + (y * s->linesize) + x, s->linesize, 16); |
| 0 | 409 if (d < dmin || (d == dmin && (abs(x - xx) + abs(y - yy)) < (abs(mx - xx) + abs(my - yy)))) { |
| 410 dmin = d; | |
| 411 mx = x; | |
| 412 my = y; | |
| 413 } | |
| 414 } | |
| 415 } | |
| 416 | |
| 417 range = range >> 1; | |
| 418 | |
| 419 x1 = mx - range; | |
| 420 if (x1 < xmin) | |
| 421 x1 = xmin; | |
| 422 | |
| 423 x2 = mx + range; | |
| 424 if (x2 > xmax) | |
| 425 x2 = xmax; | |
| 426 | |
| 427 y1 = my - range; | |
| 428 if (y1 < ymin) | |
| 429 y1 = ymin; | |
| 430 | |
| 431 y2 = my + range; | |
| 432 if (y2 > ymax) | |
| 433 y2 = ymax; | |
| 434 | |
| 435 } while (range >= 1); | |
| 436 | |
| 437 #ifdef DEBUG | |
| 438 fprintf(stderr, "log - MX: %d\tMY: %d\n", mx, my); | |
| 439 #endif | |
| 440 *mx_ptr = mx; | |
| 441 *my_ptr = my; | |
| 442 return dmin; | |
| 443 } | |
| 444 | |
| 445 static int phods_motion_search(MpegEncContext * s, | |
| 446 int *mx_ptr, int *my_ptr, int range, | |
| 324 | 447 int xmin, int ymin, int xmax, int ymax, uint8_t *ref_picture) |
| 0 | 448 { |
| 449 int x1, y1, x2, y2, xx, yy, x, y, lastx, d; | |
| 450 int mx, my, dminx, dminy; | |
| 1064 | 451 uint8_t *pix; |
| 0 | 452 |
| 453 xx = s->mb_x << 4; | |
| 454 yy = s->mb_y << 4; | |
| 455 | |
| 456 /* Left limit */ | |
| 457 x1 = xx - range; | |
| 458 if (x1 < xmin) | |
| 459 x1 = xmin; | |
| 460 | |
| 461 /* Right limit */ | |
| 462 x2 = xx + range; | |
| 463 if (x2 > xmax) | |
| 464 x2 = xmax; | |
| 465 | |
| 466 /* Upper limit */ | |
| 467 y1 = yy - range; | |
| 468 if (y1 < ymin) | |
| 469 y1 = ymin; | |
| 470 | |
| 471 /* Lower limit */ | |
| 472 y2 = yy + range; | |
| 473 if (y2 > ymax) | |
| 474 y2 = ymax; | |
| 475 | |
| 903 | 476 pix = s->new_picture.data[0] + (yy * s->linesize) + xx; |
| 0 | 477 mx = 0; |
| 478 my = 0; | |
| 479 | |
| 480 x = xx; | |
| 481 y = yy; | |
| 482 do { | |
| 483 dminx = 0x7fffffff; | |
| 484 dminy = 0x7fffffff; | |
| 485 | |
| 486 lastx = x; | |
| 487 for (x = x1; x <= x2; x += range) { | |
| 1708 | 488 d = s->dsp.pix_abs[0][0](NULL, pix, ref_picture + (y * s->linesize) + x, s->linesize, 16); |
| 0 | 489 if (d < dminx || (d == dminx && (abs(x - xx) + abs(y - yy)) < (abs(mx - xx) + abs(my - yy)))) { |
| 490 dminx = d; | |
| 491 mx = x; | |
| 492 } | |
| 493 } | |
| 494 | |
| 495 x = lastx; | |
| 496 for (y = y1; y <= y2; y += range) { | |
| 1708 | 497 d = s->dsp.pix_abs[0][0](NULL, pix, ref_picture + (y * s->linesize) + x, s->linesize, 16); |
| 0 | 498 if (d < dminy || (d == dminy && (abs(x - xx) + abs(y - yy)) < (abs(mx - xx) + abs(my - yy)))) { |
| 499 dminy = d; | |
| 500 my = y; | |
| 501 } | |
| 502 } | |
| 503 | |
| 504 range = range >> 1; | |
| 505 | |
| 506 x = mx; | |
| 507 y = my; | |
| 508 x1 = mx - range; | |
| 509 if (x1 < xmin) | |
| 510 x1 = xmin; | |
| 511 | |
| 512 x2 = mx + range; | |
| 513 if (x2 > xmax) | |
| 514 x2 = xmax; | |
| 515 | |
| 516 y1 = my - range; | |
| 517 if (y1 < ymin) | |
| 518 y1 = ymin; | |
| 519 | |
| 520 y2 = my + range; | |
| 521 if (y2 > ymax) | |
| 522 y2 = ymax; | |
| 523 | |
| 524 } while (range >= 1); | |
| 525 | |
| 526 #ifdef DEBUG | |
| 527 fprintf(stderr, "phods - MX: %d\tMY: %d\n", mx, my); | |
| 528 #endif | |
| 529 | |
| 530 /* half pixel search */ | |
| 531 *mx_ptr = mx; | |
| 532 *my_ptr = my; | |
| 533 return dminy; | |
| 534 } | |
| 535 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
536 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
537 #define Z_THRESHOLD 256 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
538 |
| 936 | 539 #define CHECK_SAD_HALF_MV(suffix, x, y) \ |
| 455 | 540 {\ |
| 1708 | 541 d= s->dsp.pix_abs[size][(x?1:0)+(y?2:0)](NULL, pix, ptr+((x)>>1), stride, h);\ |
| 936 | 542 d += (mv_penalty[pen_x + x] + mv_penalty[pen_y + y])*penalty_factor;\ |
| 455 | 543 COPY3_IF_LT(dminh, d, dx, x, dy, y)\ |
| 544 } | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
545 |
| 936 | 546 static inline int sad_hpel_motion_search(MpegEncContext * s, |
| 0 | 547 int *mx_ptr, int *my_ptr, int dmin, |
| 1950 | 548 int src_index, int ref_index, |
| 549 int size, int h) | |
| 0 | 550 { |
| 936 | 551 const int penalty_factor= s->me.sub_penalty_factor; |
| 1708 | 552 int mx, my, dminh; |
| 1064 | 553 uint8_t *pix, *ptr; |
| 1950 | 554 int stride= s->me.stride; |
| 555 const int flags= s->me.sub_flags; | |
| 556 LOAD_COMMON | |
| 557 | |
| 558 assert(flags == 0); | |
| 455 | 559 |
| 936 | 560 if(s->me.skip){ |
| 455 | 561 // printf("S"); |
| 562 *mx_ptr = 0; | |
| 563 *my_ptr = 0; | |
| 564 return dmin; | |
| 565 } | |
| 566 // printf("N"); | |
| 567 | |
| 1950 | 568 pix = s->me.src[src_index][0]; |
| 455 | 569 |
| 294 | 570 mx = *mx_ptr; |
| 571 my = *my_ptr; | |
| 1950 | 572 ptr = s->me.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 { |
| 1708 | 682 /* |
| 683 if(s->avctx->me_range) s->me.range= s->avctx->me_range >> 1; | |
| 684 else s->me.range= 16; | |
| 685 */ | |
| 324 | 686 if (s->unrestricted_mv) { |
| 1708 | 687 s->me.xmin = - x - 16; |
| 688 s->me.ymin = - y - 16; | |
| 689 s->me.xmax = - x + s->mb_width *16; | |
| 690 s->me.ymax = - y + s->mb_height*16; | |
| 324 | 691 } else { |
| 1708 | 692 s->me.xmin = - x; |
| 693 s->me.ymin = - y; | |
| 694 s->me.xmax = - x + s->mb_width *16 - 16; | |
| 695 s->me.ymax = - y + s->mb_height*16 - 16; | |
| 324 | 696 } |
| 697 } | |
| 698 | |
| 1962 | 699 static inline void init_mv4_ref(MpegEncContext *s){ |
| 700 MotionEstContext * const c= &s->me; | |
| 701 const int stride= s->linesize; | |
| 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; |
| 1708 | 720 const int stride= s->linesize; |
| 721 const int uvstride= s->uvlinesize; | |
| 1950 | 722 uint8_t *mv_penalty= s->me.current_mv_penalty; |
| 455 | 723 |
| 1962 | 724 init_mv4_ref(s); |
| 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 |
| 1708 | 737 if(P_LEFT[0] > (s->me.xmax<<shift)) P_LEFT[0] = (s->me.xmax<<shift); |
| 455 | 738 |
| 739 /* special case for first line */ | |
| 1799 | 740 if (s->first_slice_line && block<2) { |
| 1950 | 741 s->me.pred_x= pred_x4= P_LEFT[0]; |
| 742 s->me.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]; |
| 1708 | 748 if(P_TOP[1] > (s->me.ymax<<shift)) P_TOP[1] = (s->me.ymax<<shift); |
| 749 if(P_TOPRIGHT[0] < (s->me.xmin<<shift)) P_TOPRIGHT[0]= (s->me.xmin<<shift); | |
| 750 if(P_TOPRIGHT[0] > (s->me.xmax<<shift)) P_TOPRIGHT[0]= (s->me.xmax<<shift); | |
| 751 if(P_TOPRIGHT[1] > (s->me.ymax<<shift)) P_TOPRIGHT[1]= (s->me.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 | |
| 1950 | 756 s->me.pred_x= pred_x4 = P_MEDIAN[0]; |
| 757 s->me.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 |
| 1950 | 764 dmin4= s->me.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; |
| 1013 | 769 uint8_t *dest_y = s->me.scratchpad + offset; |
| 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 } |
| 787 dmin_sum+= (mv_penalty[mx4-pred_x4] + mv_penalty[my4-pred_y4])*s->me.mb_penalty_factor; | |
| 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]){ |
| 1708 | 809 dmin_sum += s->dsp.mb_cmp[0](s, s->new_picture.data[0] + s->mb_x*16 + s->mb_y*16*stride, s->me.scratchpad, stride, 16); |
| 455 | 810 } |
| 1013 | 811 |
| 812 if(s->avctx->mb_cmp&FF_CMP_CHROMA){ | |
| 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){ | |
| 824 s->dsp.put_no_rnd_pixels_tab[1][dxy](s->me.scratchpad , s->last_picture.data[1] + offset, s->uvlinesize, 8); | |
| 825 s->dsp.put_no_rnd_pixels_tab[1][dxy](s->me.scratchpad+8 , s->last_picture.data[2] + offset, s->uvlinesize, 8); | |
| 826 }else{ | |
| 827 s->dsp.put_pixels_tab [1][dxy](s->me.scratchpad , s->last_picture.data[1] + offset, s->uvlinesize, 8); | |
| 828 s->dsp.put_pixels_tab [1][dxy](s->me.scratchpad+8 , s->last_picture.data[2] + offset, s->uvlinesize, 8); | |
| 829 } | |
| 830 | |
| 1708 | 831 dmin_sum += s->dsp.mb_cmp[1](s, s->new_picture.data[1] + s->mb_x*8 + s->mb_y*8*s->uvlinesize, s->me.scratchpad , s->uvlinesize, 8); |
| 832 dmin_sum += s->dsp.mb_cmp[1](s, s->new_picture.data[2] + s->mb_x*8 + s->mb_y*8*s->uvlinesize, s->me.scratchpad+8, s->uvlinesize, 8); | |
| 1013 | 833 } |
| 1950 | 834 |
| 835 s->me.pred_x= mx; | |
| 836 s->me.pred_y= my; | |
| 1013 | 837 |
| 838 switch(s->avctx->mb_cmp&0xFF){ | |
| 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: | |
| 844 return dmin_sum+ 11*s->me.mb_penalty_factor; | |
| 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, |
| 862 int16_t (*mv_tables[2][2])[2], uint8_t *field_select_tables[2], int mx, int my) | |
| 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 | |
| 892 P_LEFT[0] = mv_table[xy - 1][0]; | |
| 893 P_LEFT[1] = mv_table[xy - 1][1]; | |
| 1950 | 894 if(P_LEFT[0] > (c->xmax<<1)) P_LEFT[0] = (c->xmax<<1); |
| 1708 | 895 |
| 1950 | 896 s->me.pred_x= P_LEFT[0]; |
| 897 s->me.pred_y= P_LEFT[1]; | |
| 1708 | 898 |
| 1799 | 899 if(!s->first_slice_line){ |
| 1708 | 900 P_TOP[0] = mv_table[xy - mot_stride][0]; |
| 901 P_TOP[1] = mv_table[xy - mot_stride][1]; | |
| 902 P_TOPRIGHT[0] = mv_table[xy - mot_stride + 1][0]; | |
| 903 P_TOPRIGHT[1] = mv_table[xy - mot_stride + 1][1]; | |
| 1950 | 904 if(P_TOP[1] > (c->ymax<<1)) P_TOP[1] = (c->ymax<<1); |
| 905 if(P_TOPRIGHT[0] < (c->xmin<<1)) P_TOPRIGHT[0]= (c->xmin<<1); | |
| 906 if(P_TOPRIGHT[0] > (c->xmax<<1)) P_TOPRIGHT[0]= (c->xmax<<1); | |
| 907 if(P_TOPRIGHT[1] > (c->ymax<<1)) P_TOPRIGHT[1]= (c->ymax<<1); | |
| 1708 | 908 |
| 909 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); | |
| 910 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
| 911 } | |
| 912 P_MV1[0]= mx; //FIXME not correct if block != field_select | |
| 913 P_MV1[1]= my / 2; | |
| 914 | |
| 1950 | 915 dmin = epzs_motion_search2(s, &mx_i, &my_i, P, block, field_select+ref_index, mv_table, (1<<16)>>1); |
| 1708 | 916 |
| 1950 | 917 dmin= c->sub_motion_search(s, &mx_i, &my_i, dmin, block, field_select+ref_index, size, h); |
| 1708 | 918 |
| 919 mv_table[xy][0]= mx_i; | |
| 920 mv_table[xy][1]= my_i; | |
| 921 | |
| 1950 | 922 if(s->dsp.me_sub_cmp[0] != s->dsp.mb_cmp[0]){ |
| 1708 | 923 int dxy; |
| 924 | |
| 925 //FIXME chroma ME | |
| 1950 | 926 uint8_t *ref= c->ref[field_select+ref_index][0] + (mx_i>>1) + (my_i>>1)*stride; |
| 1708 | 927 dxy = ((my_i & 1) << 1) | (mx_i & 1); |
| 928 | |
| 929 if(s->no_rounding){ | |
| 1950 | 930 s->dsp.put_no_rnd_pixels_tab[size][dxy](c->scratchpad, ref , stride, h); |
| 1708 | 931 }else{ |
| 1950 | 932 s->dsp.put_pixels_tab [size][dxy](c->scratchpad, ref , stride, h); |
| 1708 | 933 } |
| 1950 | 934 dmin= s->dsp.mb_cmp[size](s, c->src[block][0], c->scratchpad, stride, h); |
| 935 dmin+= (mv_penalty[mx_i-s->me.pred_x] + mv_penalty[my_i-s->me.pred_y] + 1)*c->mb_penalty_factor; | |
| 1708 | 936 }else |
| 1950 | 937 dmin+= c->mb_penalty_factor; //field_select bits |
| 1708 | 938 |
| 939 dmin += field_select != block; //slightly prefer same field | |
| 940 | |
| 941 if(dmin < best_dmin){ | |
| 942 best_dmin= dmin; | |
| 943 best_field= field_select; | |
| 944 } | |
| 945 } | |
| 946 { | |
| 947 int16_t (*mv_table)[2]= mv_tables[block][best_field]; | |
| 948 | |
| 949 if(mv_table[xy][0] != mx) same=0; //FIXME check if these checks work and are any good at all | |
| 950 if(mv_table[xy][1]&1) same=0; | |
| 951 if(mv_table[xy][1]*2 != my) same=0; | |
| 952 if(best_field != block) same=0; | |
| 953 } | |
| 954 | |
| 955 field_select_tables[block][xy]= best_field; | |
| 956 dmin_sum += best_dmin; | |
| 957 } | |
| 958 | |
| 1950 | 959 c->ymin<<=1; |
| 960 c->ymax<<=1; | |
| 961 c->stride>>=1; | |
| 962 c->uvstride>>=1; | |
| 1708 | 963 |
| 964 if(same) | |
| 965 return INT_MAX; | |
| 966 | |
| 967 switch(s->avctx->mb_cmp&0xFF){ | |
| 968 /*case FF_CMP_SSE: | |
| 969 return dmin_sum+ 32*s->qscale*s->qscale;*/ | |
| 970 case FF_CMP_RD: | |
| 971 return dmin_sum; | |
| 972 default: | |
| 1950 | 973 return dmin_sum+ 11*c->mb_penalty_factor; |
| 1708 | 974 } |
| 975 } | |
| 976 | |
|
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
|
977 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
|
978 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
|
979 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
|
980 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
|
981 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
|
982 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
|
983 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
|
984 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
|
985 int mask= (1<<shift)-1; |
| 1962 | 986 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
|
987 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
|
988 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
|
989 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
|
990 |
|
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
|
991 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
|
992 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
|
993 |
|
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 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
|
995 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
|
996 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
|
997 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
|
998 c->uvstride<<=1; |
| 1962 | 999 init_interlaced_ref(s, 2); |
| 1963 | 1000 |
| 1001 assert(s->flags & CODEC_FLAG_INTERLACED_ME); | |
| 1962 | 1002 |
|
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
|
1003 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
|
1004 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
|
1005 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
|
1006 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
|
1007 assert(field_select1==0 ||field_select1==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
|
1008 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
|
1009 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
|
1010 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
|
1011 *(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
|
1012 *(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
|
1013 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
|
1014 }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
|
1015 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
|
1016 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
|
1017 *(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
|
1018 *(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
|
1019 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
|
1020 } |
|
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 |
|
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 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
|
1023 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
|
1024 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
|
1025 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
|
1026 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
|
1027 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
|
1028 } |
|
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 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
|
1030 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
|
1031 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
|
1032 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
|
1033 assert(field_select1==0 ||field_select1==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
|
1034 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
|
1035 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
|
1036 *(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
|
1037 *(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
|
1038 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
|
1039 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
|
1040 }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
|
1041 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
|
1042 } |
|
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
|
1043 |
|
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
|
1044 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
|
1045 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
|
1046 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
|
1047 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
|
1048 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
|
1049 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
|
1050 //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
|
1051 } |
|
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 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
|
1053 c->uvstride>>=1; |
| 1962 | 1054 }else if(IS_8X8(mb_type)){ |
| 1963 | 1055 assert(s->flags & CODEC_FLAG_4MV); |
| 1962 | 1056 cmpf= s->dsp.sse[1]; |
| 1057 chroma_cmpf= s->dsp.sse[1]; | |
| 1058 init_mv4_ref(s); | |
| 1059 for(i=0; i<4; i++){ | |
| 1060 xy= s->block_index[i]; | |
| 1061 x= p->motion_val[0][xy][0]; | |
| 1062 y= p->motion_val[0][xy][1]; | |
| 1063 d+= cmp(s, x>>shift, y>>shift, x&mask, y&mask, 1, 8, i, i, cmpf, chroma_cmpf, flags); | |
| 1064 } | |
| 1065 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
|
1066 }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
|
1067 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
|
1068 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
|
1069 *(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
|
1070 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
|
1071 }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
|
1072 *(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
|
1073 *(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
|
1074 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
|
1075 }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
|
1076 *(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
|
1077 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
|
1078 } |
|
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
|
1079 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
|
1080 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
|
1081 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
|
1082 }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
|
1083 *(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
|
1084 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
|
1085 |
|
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 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
|
1087 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
|
1088 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
|
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 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
|
1091 } |
|
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 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
|
1093 } |
|
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 |
| 324 | 1095 void ff_estimate_p_frame_motion(MpegEncContext * s, |
| 1096 int mb_x, int mb_y) | |
| 0 | 1097 { |
| 1950 | 1098 MotionEstContext * const c= &s->me; |
| 1064 | 1099 uint8_t *pix, *ppix; |
| 1708 | 1100 int sum, varc, vard, mx, my, dmin, xx, yy; |
| 455 | 1101 int P[10][2]; |
| 280 | 1102 const int shift= 1+s->quarter_sample; |
| 294 | 1103 int mb_type=0; |
| 903 | 1104 Picture * const pic= &s->current_picture; |
| 1950 | 1105 |
| 1106 init_ref(s, s->new_picture.data, s->last_picture.data, NULL, 16*mb_x, 16*mb_y, 0); | |
| 1708 | 1107 |
| 936 | 1108 assert(s->quarter_sample==0 || s->quarter_sample==1); |
| 1950 | 1109 assert(s->linesize == s->me.stride); |
| 1110 assert(s->uvlinesize == s->me.uvstride); | |
| 936 | 1111 |
| 1112 s->me.penalty_factor = get_penalty_factor(s, s->avctx->me_cmp); | |
| 1113 s->me.sub_penalty_factor= get_penalty_factor(s, s->avctx->me_sub_cmp); | |
| 1013 | 1114 s->me.mb_penalty_factor = get_penalty_factor(s, s->avctx->mb_cmp); |
| 1950 | 1115 s->me.current_mv_penalty= s->me.mv_penalty[s->f_code] + MAX_MV; |
| 0 | 1116 |
| 1708 | 1117 get_limits(s, 16*mb_x, 16*mb_y); |
| 936 | 1118 s->me.skip=0; |
| 324 | 1119 |
|
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
|
1120 if(s->avctx->me_threshold){ |
|
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
|
1121 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
|
1122 |
|
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
|
1123 if(vard<s->avctx->me_threshold){ |
|
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
|
1124 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
|
1125 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
|
1126 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
|
1127 |
|
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
|
1128 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
|
1129 pic->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
|
1130 pic->mb_mean [s->mb_stride * mb_y + mb_x] = (sum+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
|
1131 s->mb_var_sum_temp += 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
|
1132 s->mc_mb_var_sum_temp += 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
|
1133 if (vard <= 64 || vard < varc) { //FIXME |
|
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
|
1134 s->scene_change_score+= ff_sqrt(vard) - ff_sqrt(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
|
1135 }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
|
1136 s->scene_change_score+= s->qscale; |
|
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
|
1137 } |
|
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
|
1138 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
|
1139 } |
|
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
|
1140 } |
|
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
|
1141 |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1142 switch(s->me_method) { |
| 0 | 1143 case ME_ZERO: |
| 1144 default: | |
| 1145 no_motion_search(s, &mx, &my); | |
| 455 | 1146 mx-= mb_x*16; |
| 1147 my-= mb_y*16; | |
| 0 | 1148 dmin = 0; |
| 1149 break; | |
| 1708 | 1150 #if 0 |
| 0 | 1151 case ME_FULL: |
| 1708 | 1152 dmin = full_motion_search(s, &mx, &my, range, ref_picture); |
| 455 | 1153 mx-= mb_x*16; |
| 1154 my-= mb_y*16; | |
| 0 | 1155 break; |
| 1156 case ME_LOG: | |
| 1708 | 1157 dmin = log_motion_search(s, &mx, &my, range / 2, ref_picture); |
| 455 | 1158 mx-= mb_x*16; |
| 1159 my-= mb_y*16; | |
| 0 | 1160 break; |
| 1161 case ME_PHODS: | |
| 1708 | 1162 dmin = phods_motion_search(s, &mx, &my, range / 2, ref_picture); |
| 455 | 1163 mx-= mb_x*16; |
| 1164 my-= mb_y*16; | |
| 0 | 1165 break; |
| 1708 | 1166 #endif |
| 288 | 1167 case ME_X1: |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
1168 case ME_EPZS: |
| 288 | 1169 { |
|
1938
e2501e6e7ff7
unify table indexing (motion_val,dc_val,ac_val,coded_block changed)
michael
parents:
1904
diff
changeset
|
1170 const int mot_stride = s->b8_stride; |
| 294 | 1171 const int mot_xy = s->block_index[0]; |
| 288 | 1172 |
|
1668
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
1173 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
|
1174 P_LEFT[1] = s->current_picture.motion_val[0][mot_xy - 1][1]; |
| 288 | 1175 |
| 1708 | 1176 if(P_LEFT[0] > (s->me.xmax<<shift)) P_LEFT[0] = (s->me.xmax<<shift); |
| 280 | 1177 |
| 1799 | 1178 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
|
1179 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
|
1180 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
|
1181 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
|
1182 P_TOPRIGHT[1] = s->current_picture.motion_val[0][mot_xy - mot_stride + 2][1]; |
| 1708 | 1183 if(P_TOP[1] > (s->me.ymax<<shift)) P_TOP[1] = (s->me.ymax<<shift); |
| 1184 if(P_TOPRIGHT[0] < (s->me.xmin<<shift)) P_TOPRIGHT[0]= (s->me.xmin<<shift); | |
| 1185 if(P_TOPRIGHT[1] > (s->me.ymax<<shift)) P_TOPRIGHT[1]= (s->me.ymax<<shift); | |
| 280 | 1186 |
| 455 | 1187 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); |
| 1188 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
| 1189 | |
| 1190 if(s->out_format == FMT_H263){ | |
| 1950 | 1191 c->pred_x = P_MEDIAN[0]; |
| 1192 c->pred_y = P_MEDIAN[1]; | |
| 455 | 1193 }else { /* mpeg1 at least */ |
| 1950 | 1194 c->pred_x= P_LEFT[0]; |
| 1195 c->pred_y= P_LEFT[1]; | |
| 455 | 1196 } |
| 952 | 1197 }else{ |
| 1950 | 1198 c->pred_x= P_LEFT[0]; |
| 1199 c->pred_y= P_LEFT[1]; | |
| 288 | 1200 } |
| 952 | 1201 |
| 280 | 1202 } |
| 1950 | 1203 dmin = epzs_motion_search(s, &mx, &my, P, 0, 0, s->p_mv_table, (1<<16)>>shift); |
| 1204 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
1205 break; |
| 0 | 1206 } |
| 1207 | |
| 1208 /* intra / predictive decision */ | |
| 1209 xx = mb_x * 16; | |
| 1210 yy = mb_y * 16; | |
| 1211 | |
| 1950 | 1212 pix = c->src[0][0]; |
| 455 | 1213 /* At this point (mx,my) are full-pell and the relative displacement */ |
| 1950 | 1214 ppix = c->ref[0][0] + (my * s->linesize) + mx; |
|
289
648e9245546d
seems the old intra/inter decission is slightly better with a threshold, than the new one
michaelni
parents:
288
diff
changeset
|
1215 |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1216 sum = s->dsp.pix_sum(pix, s->linesize); |
| 455 | 1217 |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1218 varc = (s->dsp.pix_norm1(pix, s->linesize) - (((unsigned)(sum*sum))>>8) + 500 + 128)>>8; |
| 1708 | 1219 vard = (s->dsp.sse[0](NULL, pix, ppix, s->linesize, 16)+128)>>8; |
| 608 | 1220 |
| 455 | 1221 //printf("%d %d %d %X %X %X\n", s->mb_width, mb_x, mb_y,(int)s, (int)s->mb_var, (int)s->mc_mb_var); fflush(stdout); |
|
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
|
1222 pic->mb_var [s->mb_stride * mb_y + mb_x] = varc; |
|
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
|
1223 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
|
1224 pic->mb_mean [s->mb_stride * mb_y + mb_x] = (sum+128)>>8; |
|
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
|
1225 // pic->mb_cmp_score[s->mb_stride * mb_y + mb_x] = dmin; |
| 1799 | 1226 s->mb_var_sum_temp += varc; |
| 1227 s->mc_mb_var_sum_temp += vard; | |
| 455 | 1228 //printf("E%d %d %d %X %X %X\n", s->mb_width, mb_x, mb_y,(int)s, (int)s->mb_var, (int)s->mc_mb_var); fflush(stdout); |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1229 |
| 0 | 1230 #if 0 |
|
233
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
1231 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
|
1232 varc, s->avg_mb_var, sum, vard, mx - xx, my - yy); |
| 0 | 1233 #endif |
| 1389 | 1234 if(s->avctx->mb_decision > FF_MB_DECISION_SIMPLE){ |
| 608 | 1235 if (vard <= 64 || vard < varc) |
| 1236 s->scene_change_score+= ff_sqrt(vard) - ff_sqrt(varc); | |
| 1237 else | |
| 913 | 1238 s->scene_change_score+= s->qscale; |
| 608 | 1239 |
| 294 | 1240 if (vard*2 + 200 > varc) |
| 1708 | 1241 mb_type|= CANDIDATE_MB_TYPE_INTRA; |
| 294 | 1242 if (varc*2 + 200 > vard){ |
| 1708 | 1243 mb_type|= CANDIDATE_MB_TYPE_INTER; |
| 1950 | 1244 s->me.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
|
1245 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
|
1246 if(mx || my) |
| 1708 | 1247 mb_type |= CANDIDATE_MB_TYPE_SKIPED; //FIXME check difference |
| 304 | 1248 }else{ |
| 936 | 1249 mx <<=shift; |
| 1250 my <<=shift; | |
| 0 | 1251 } |
| 455 | 1252 if((s->flags&CODEC_FLAG_4MV) |
| 936 | 1253 && !s->me.skip && varc>50 && vard>10){ |
| 1708 | 1254 if(h263_mv4_search(s, mx, my, shift) < INT_MAX) |
| 1255 mb_type|=CANDIDATE_MB_TYPE_INTER4V; | |
| 455 | 1256 |
| 1257 set_p_mv_tables(s, mx, my, 0); | |
| 1258 }else | |
| 1259 set_p_mv_tables(s, mx, my, 1); | |
| 1708 | 1260 if((s->flags&CODEC_FLAG_INTERLACED_ME) |
| 1261 && !s->me.skip){ //FIXME varc/d checks | |
| 1950 | 1262 if(interlaced_search(s, 0, s->p_field_mv_table, s->p_field_select_table, mx, my) < INT_MAX) |
| 1708 | 1263 mb_type |= CANDIDATE_MB_TYPE_INTER_I; |
| 1264 } | |
| 294 | 1265 }else{ |
| 1633 | 1266 int intra_score, i; |
| 1708 | 1267 mb_type= CANDIDATE_MB_TYPE_INTER; |
| 1013 | 1268 |
| 1950 | 1269 dmin= s->me.sub_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16); |
| 1013 | 1270 if(s->avctx->me_sub_cmp != s->avctx->mb_cmp && !s->me.skip) |
| 1950 | 1271 dmin= get_mb_score(s, mx, my, 0, 0); |
| 1013 | 1272 |
| 1273 if((s->flags&CODEC_FLAG_4MV) | |
| 1274 && !s->me.skip && varc>50 && vard>10){ | |
| 1708 | 1275 int dmin4= h263_mv4_search(s, mx, my, shift); |
| 1013 | 1276 if(dmin4 < dmin){ |
| 1708 | 1277 mb_type= CANDIDATE_MB_TYPE_INTER4V; |
| 1013 | 1278 dmin=dmin4; |
| 1279 } | |
| 1280 } | |
| 1708 | 1281 if((s->flags&CODEC_FLAG_INTERLACED_ME) |
| 1282 && !s->me.skip){ //FIXME varc/d checks | |
| 1950 | 1283 int dmin_i= interlaced_search(s, 0, s->p_field_mv_table, s->p_field_select_table, mx, my); |
| 1708 | 1284 if(dmin_i < dmin){ |
| 1285 mb_type = CANDIDATE_MB_TYPE_INTER_I; | |
| 1286 dmin= dmin_i; | |
| 1287 } | |
| 1288 } | |
| 1633 | 1289 |
| 1290 // pic->mb_cmp_score[s->mb_stride * mb_y + mb_x] = dmin; | |
| 1708 | 1291 set_p_mv_tables(s, mx, my, mb_type!=CANDIDATE_MB_TYPE_INTER4V); |
| 1633 | 1292 |
| 1293 /* get intra luma score */ | |
| 1294 if((s->avctx->mb_cmp&0xFF)==FF_CMP_SSE){ | |
| 1295 intra_score= (varc<<8) - 500; //FIXME dont scale it down so we dont have to fix it | |
| 1296 }else{ | |
| 1297 int mean= (sum+128)>>8; | |
| 1298 mean*= 0x01010101; | |
| 1299 | |
| 1300 for(i=0; i<16; i++){ | |
| 1301 *(uint32_t*)(&s->me.scratchpad[i*s->linesize+ 0]) = mean; | |
| 1302 *(uint32_t*)(&s->me.scratchpad[i*s->linesize+ 4]) = mean; | |
| 1303 *(uint32_t*)(&s->me.scratchpad[i*s->linesize+ 8]) = mean; | |
| 1304 *(uint32_t*)(&s->me.scratchpad[i*s->linesize+12]) = mean; | |
| 1305 } | |
| 1306 | |
| 1708 | 1307 intra_score= s->dsp.mb_cmp[0](s, s->me.scratchpad, pix, s->linesize, 16); |
| 1633 | 1308 } |
| 1309 #if 0 //FIXME | |
| 1310 /* get chroma score */ | |
| 1311 if(s->avctx->mb_cmp&FF_CMP_CHROMA){ | |
| 1312 for(i=1; i<3; i++){ | |
| 1313 uint8_t *dest_c; | |
| 1314 int mean; | |
| 1315 | |
| 1316 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
|
1317 mean= (s->dc_val[i][mb_x + mb_y*s->b8_stride] + 4)>>3; //FIXME not exact but simple ;) |
| 1633 | 1318 }else{ |
| 1319 mean= (s->last_dc[i] + 4)>>3; | |
| 1320 } | |
| 1321 dest_c = s->new_picture.data[i] + (mb_y * 8 * (s->uvlinesize)) + mb_x * 8; | |
| 1322 | |
| 1323 mean*= 0x01010101; | |
| 1324 for(i=0; i<8; i++){ | |
| 1325 *(uint32_t*)(&s->me.scratchpad[i*s->uvlinesize+ 0]) = mean; | |
| 1326 *(uint32_t*)(&s->me.scratchpad[i*s->uvlinesize+ 4]) = mean; | |
| 1327 } | |
| 1328 | |
| 1329 intra_score+= s->dsp.mb_cmp[1](s, s->me.scratchpad, dest_c, s->uvlinesize); | |
| 1330 } | |
| 1331 } | |
| 1332 #endif | |
| 1333 intra_score += s->me.mb_penalty_factor*16; | |
| 1013 | 1334 |
| 1633 | 1335 if(intra_score < dmin){ |
| 1708 | 1336 mb_type= CANDIDATE_MB_TYPE_INTRA; |
| 1337 s->current_picture.mb_type[mb_y*s->mb_stride + mb_x]= CANDIDATE_MB_TYPE_INTRA; //FIXME cleanup | |
| 1633 | 1338 }else |
| 1339 s->current_picture.mb_type[mb_y*s->mb_stride + mb_x]= 0; | |
| 1340 | |
| 1341 if (vard <= 64 || vard < varc) { //FIXME | |
| 608 | 1342 s->scene_change_score+= ff_sqrt(vard) - ff_sqrt(varc); |
| 294 | 1343 }else{ |
| 1011 | 1344 s->scene_change_score+= s->qscale; |
| 294 | 1345 } |
| 1346 } | |
| 284 | 1347 |
|
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
|
1348 s->mb_type[mb_y*s->mb_stride + mb_x]= mb_type; |
| 0 | 1349 } |
| 1350 | |
| 951 | 1351 int ff_pre_estimate_p_frame_motion(MpegEncContext * s, |
| 1352 int mb_x, int mb_y) | |
| 1353 { | |
| 1950 | 1354 MotionEstContext * const c= &s->me; |
| 1708 | 1355 int mx, my, dmin; |
| 951 | 1356 int P[10][2]; |
| 1357 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
|
1358 const int xy= mb_x + mb_y*s->mb_stride; |
| 1950 | 1359 init_ref(s, s->new_picture.data, s->last_picture.data, NULL, 16*mb_x, 16*mb_y, 0); |
| 951 | 1360 |
| 1361 assert(s->quarter_sample==0 || s->quarter_sample==1); | |
| 1362 | |
| 954 | 1363 s->me.pre_penalty_factor = get_penalty_factor(s, s->avctx->me_pre_cmp); |
| 1950 | 1364 s->me.current_mv_penalty= s->me.mv_penalty[s->f_code] + MAX_MV; |
| 951 | 1365 |
| 1708 | 1366 get_limits(s, 16*mb_x, 16*mb_y); |
| 951 | 1367 s->me.skip=0; |
| 1368 | |
| 1369 P_LEFT[0] = s->p_mv_table[xy + 1][0]; | |
| 1370 P_LEFT[1] = s->p_mv_table[xy + 1][1]; | |
| 1371 | |
| 1708 | 1372 if(P_LEFT[0] < (s->me.xmin<<shift)) P_LEFT[0] = (s->me.xmin<<shift); |
| 951 | 1373 |
| 1374 /* special case for first line */ | |
| 1799 | 1375 if (s->first_slice_line) { |
| 1950 | 1376 c->pred_x= P_LEFT[0]; |
| 1377 c->pred_y= P_LEFT[1]; | |
| 952 | 1378 P_TOP[0]= P_TOPRIGHT[0]= P_MEDIAN[0]= |
| 1379 P_TOP[1]= P_TOPRIGHT[1]= P_MEDIAN[1]= 0; //FIXME | |
| 951 | 1380 } 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
|
1381 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
|
1382 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
|
1383 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
|
1384 P_TOPRIGHT[1] = s->p_mv_table[xy + s->mb_stride - 1][1]; |
| 1708 | 1385 if(P_TOP[1] < (s->me.ymin<<shift)) P_TOP[1] = (s->me.ymin<<shift); |
| 1386 if(P_TOPRIGHT[0] > (s->me.xmax<<shift)) P_TOPRIGHT[0]= (s->me.xmax<<shift); | |
| 1387 if(P_TOPRIGHT[1] < (s->me.ymin<<shift)) P_TOPRIGHT[1]= (s->me.ymin<<shift); | |
| 951 | 1388 |
| 1389 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); | |
| 1390 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
| 1391 | |
| 1950 | 1392 c->pred_x = P_MEDIAN[0]; |
| 1393 c->pred_y = P_MEDIAN[1]; | |
| 951 | 1394 } |
| 1950 | 1395 |
| 1396 dmin = epzs_motion_search(s, &mx, &my, P, 0, 0, s->p_mv_table, (1<<16)>>shift); | |
| 952 | 1397 |
| 951 | 1398 s->p_mv_table[xy][0] = mx<<shift; |
| 1399 s->p_mv_table[xy][1] = my<<shift; | |
| 1400 | |
| 1401 return dmin; | |
| 1402 } | |
| 1403 | |
| 1057 | 1404 static int ff_estimate_motion_b(MpegEncContext * s, |
| 1950 | 1405 int mb_x, int mb_y, int16_t (*mv_table)[2], int ref_index, int f_code) |
| 0 | 1406 { |
| 1708 | 1407 int mx, my, dmin; |
| 455 | 1408 int P[10][2]; |
| 324 | 1409 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
|
1410 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
|
1411 const int mot_xy = mb_y*mot_stride + mb_x; |
| 1162 | 1412 uint8_t * const mv_penalty= s->me.mv_penalty[f_code] + MAX_MV; |
| 948 | 1413 int mv_scale; |
| 936 | 1414 |
| 1415 s->me.penalty_factor = get_penalty_factor(s, s->avctx->me_cmp); | |
| 1416 s->me.sub_penalty_factor= get_penalty_factor(s, s->avctx->me_sub_cmp); | |
| 1013 | 1417 s->me.mb_penalty_factor = get_penalty_factor(s, s->avctx->mb_cmp); |
| 1950 | 1418 s->me.current_mv_penalty= mv_penalty; |
| 936 | 1419 |
| 1708 | 1420 get_limits(s, 16*mb_x, 16*mb_y); |
| 324 | 1421 |
| 1422 switch(s->me_method) { | |
| 1423 case ME_ZERO: | |
| 1424 default: | |
| 1425 no_motion_search(s, &mx, &my); | |
| 1426 dmin = 0; | |
| 455 | 1427 mx-= mb_x*16; |
| 1428 my-= mb_y*16; | |
| 324 | 1429 break; |
| 1708 | 1430 #if 0 |
| 324 | 1431 case ME_FULL: |
| 1708 | 1432 dmin = full_motion_search(s, &mx, &my, range, ref_picture); |
| 455 | 1433 mx-= mb_x*16; |
| 1434 my-= mb_y*16; | |
| 324 | 1435 break; |
| 1436 case ME_LOG: | |
| 1708 | 1437 dmin = log_motion_search(s, &mx, &my, range / 2, ref_picture); |
| 455 | 1438 mx-= mb_x*16; |
| 1439 my-= mb_y*16; | |
| 324 | 1440 break; |
| 1441 case ME_PHODS: | |
| 1708 | 1442 dmin = phods_motion_search(s, &mx, &my, range / 2, ref_picture); |
| 455 | 1443 mx-= mb_x*16; |
| 1444 my-= mb_y*16; | |
| 324 | 1445 break; |
| 1708 | 1446 #endif |
| 324 | 1447 case ME_X1: |
| 1448 case ME_EPZS: | |
| 1449 { | |
| 455 | 1450 P_LEFT[0] = mv_table[mot_xy - 1][0]; |
| 1451 P_LEFT[1] = mv_table[mot_xy - 1][1]; | |
| 324 | 1452 |
| 1708 | 1453 if(P_LEFT[0] > (s->me.xmax<<shift)) P_LEFT[0] = (s->me.xmax<<shift); |
| 324 | 1454 |
| 1455 /* special case for first line */ | |
| 1799 | 1456 if (!s->first_slice_line) { |
| 455 | 1457 P_TOP[0] = mv_table[mot_xy - mot_stride ][0]; |
| 1458 P_TOP[1] = mv_table[mot_xy - mot_stride ][1]; | |
| 1459 P_TOPRIGHT[0] = mv_table[mot_xy - mot_stride + 1 ][0]; | |
| 1460 P_TOPRIGHT[1] = mv_table[mot_xy - mot_stride + 1 ][1]; | |
| 1708 | 1461 if(P_TOP[1] > (s->me.ymax<<shift)) P_TOP[1]= (s->me.ymax<<shift); |
| 1462 if(P_TOPRIGHT[0] < (s->me.xmin<<shift)) P_TOPRIGHT[0]= (s->me.xmin<<shift); | |
| 1463 if(P_TOPRIGHT[1] > (s->me.ymax<<shift)) P_TOPRIGHT[1]= (s->me.ymax<<shift); | |
| 324 | 1464 |
| 455 | 1465 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); |
| 1466 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
| 324 | 1467 } |
| 1950 | 1468 s->me.pred_x= P_LEFT[0]; |
| 1469 s->me.pred_y= P_LEFT[1]; | |
| 324 | 1470 } |
| 948 | 1471 |
| 1472 if(mv_table == s->b_forw_mv_table){ | |
| 1473 mv_scale= (s->pb_time<<16) / (s->pp_time<<shift); | |
| 1474 }else{ | |
| 1475 mv_scale= ((s->pb_time - s->pp_time)<<16) / (s->pp_time<<shift); | |
| 1476 } | |
| 1477 | |
| 1950 | 1478 dmin = epzs_motion_search(s, &mx, &my, P, 0, ref_index, s->p_mv_table, mv_scale); |
| 324 | 1479 |
| 1480 break; | |
| 1481 } | |
| 1482 | |
| 1950 | 1483 dmin= s->me.sub_motion_search(s, &mx, &my, dmin, 0, ref_index, 0, 16); |
| 1013 | 1484 |
| 1485 if(s->avctx->me_sub_cmp != s->avctx->mb_cmp && !s->me.skip) | |
| 1950 | 1486 dmin= get_mb_score(s, mx, my, 0, ref_index); |
| 1013 | 1487 |
| 455 | 1488 //printf("%d %d %d %d//", s->mb_x, s->mb_y, mx, my); |
| 324 | 1489 // s->mb_type[mb_y*s->mb_width + mb_x]= mb_type; |
| 1490 mv_table[mot_xy][0]= mx; | |
| 1491 mv_table[mot_xy][1]= my; | |
| 936 | 1492 |
| 327 | 1493 return dmin; |
| 324 | 1494 } |
| 1495 | |
| 1950 | 1496 static inline int check_bidir_mv(MpegEncContext * s, |
| 327 | 1497 int motion_fx, int motion_fy, |
| 1498 int motion_bx, int motion_by, | |
| 1499 int pred_fx, int pred_fy, | |
| 1708 | 1500 int pred_bx, int pred_by, |
| 1501 int size, int h) | |
| 327 | 1502 { |
| 1503 //FIXME optimize? | |
| 936 | 1504 //FIXME better f_code prediction (max mv & distance) |
| 1708 | 1505 //FIXME pointers |
| 1950 | 1506 MotionEstContext * const c= &s->me; |
| 1162 | 1507 uint8_t * const mv_penalty= s->me.mv_penalty[s->f_code] + MAX_MV; // f_code of the prev frame |
| 1950 | 1508 int stride= s->me.stride; |
| 1509 int uvstride= s->me.uvstride; | |
| 936 | 1510 uint8_t *dest_y = s->me.scratchpad; |
| 327 | 1511 uint8_t *ptr; |
| 1512 int dxy; | |
| 1513 int src_x, src_y; | |
| 1514 int fbmin; | |
| 1950 | 1515 uint8_t **src_data= c->src[0]; |
| 1516 uint8_t **ref_data= c->ref[0]; | |
| 1517 uint8_t **ref2_data= c->ref[2]; | |
| 327 | 1518 |
| 936 | 1519 if(s->quarter_sample){ |
| 1520 dxy = ((motion_fy & 3) << 2) | (motion_fx & 3); | |
| 1708 | 1521 src_x = motion_fx >> 2; |
| 1522 src_y = motion_fy >> 2; | |
| 327 | 1523 |
| 1708 | 1524 ptr = ref_data[0] + (src_y * stride) + src_x; |
| 1525 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
|
1526 |
| 936 | 1527 dxy = ((motion_by & 3) << 2) | (motion_bx & 3); |
| 1708 | 1528 src_x = motion_bx >> 2; |
| 1529 src_y = motion_by >> 2; | |
| 936 | 1530 |
| 1950 | 1531 ptr = ref2_data[0] + (src_y * stride) + src_x; |
| 1708 | 1532 s->dsp.avg_qpel_pixels_tab[size][dxy](dest_y , ptr , stride); |
| 936 | 1533 }else{ |
| 1534 dxy = ((motion_fy & 1) << 1) | (motion_fx & 1); | |
| 1708 | 1535 src_x = motion_fx >> 1; |
| 1536 src_y = motion_fy >> 1; | |
| 327 | 1537 |
| 1708 | 1538 ptr = ref_data[0] + (src_y * stride) + src_x; |
| 1539 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
|
1540 |
| 936 | 1541 dxy = ((motion_by & 1) << 1) | (motion_bx & 1); |
| 1708 | 1542 src_x = motion_bx >> 1; |
| 1543 src_y = motion_by >> 1; | |
| 936 | 1544 |
| 1950 | 1545 ptr = ref2_data[0] + (src_y * stride) + src_x; |
| 1708 | 1546 s->dsp.avg_pixels_tab[size][dxy](dest_y , ptr , stride, h); |
| 936 | 1547 } |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1548 |
| 1013 | 1549 fbmin = (mv_penalty[motion_fx-pred_fx] + mv_penalty[motion_fy-pred_fy])*s->me.mb_penalty_factor |
| 1550 +(mv_penalty[motion_bx-pred_bx] + mv_penalty[motion_by-pred_by])*s->me.mb_penalty_factor | |
| 1708 | 1551 + s->dsp.mb_cmp[size](s, src_data[0], dest_y, stride, h); //FIXME new_pic |
| 1013 | 1552 |
| 1553 if(s->avctx->mb_cmp&FF_CMP_CHROMA){ | |
| 1554 } | |
| 1555 //FIXME CHROMA !!! | |
| 1556 | |
| 327 | 1557 return fbmin; |
| 1558 } | |
| 1559 | |
| 1560 /* refine the bidir vectors in hq mode and return the score in both lq & hq mode*/ | |
| 1950 | 1561 static inline int bidir_refine(MpegEncContext * s, int mb_x, int mb_y) |
| 327 | 1562 { |
|
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
|
1563 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
|
1564 const int xy = mb_y *mot_stride + mb_x; |
| 327 | 1565 int fbmin; |
| 1566 int pred_fx= s->b_bidir_forw_mv_table[xy-1][0]; | |
| 1567 int pred_fy= s->b_bidir_forw_mv_table[xy-1][1]; | |
| 1568 int pred_bx= s->b_bidir_back_mv_table[xy-1][0]; | |
| 1569 int pred_by= s->b_bidir_back_mv_table[xy-1][1]; | |
| 1570 int motion_fx= s->b_bidir_forw_mv_table[xy][0]= s->b_forw_mv_table[xy][0]; | |
| 1571 int motion_fy= s->b_bidir_forw_mv_table[xy][1]= s->b_forw_mv_table[xy][1]; | |
| 1572 int motion_bx= s->b_bidir_back_mv_table[xy][0]= s->b_back_mv_table[xy][0]; | |
| 1573 int motion_by= s->b_bidir_back_mv_table[xy][1]= s->b_back_mv_table[xy][1]; | |
| 1574 | |
| 1575 //FIXME do refinement and add flag | |
| 1576 | |
| 1950 | 1577 fbmin= check_bidir_mv(s, motion_fx, motion_fy, |
| 327 | 1578 motion_bx, motion_by, |
| 1579 pred_fx, pred_fy, | |
| 1708 | 1580 pred_bx, pred_by, |
| 1581 0, 16); | |
| 327 | 1582 |
| 1583 return fbmin; | |
| 1584 } | |
| 1585 | |
| 1950 | 1586 static inline int direct_search(MpegEncContext * s, int mb_x, int mb_y) |
| 324 | 1587 { |
| 455 | 1588 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
|
1589 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
|
1590 const int mot_xy = mb_y*mot_stride + mb_x; |
| 936 | 1591 const int shift= 1+s->quarter_sample; |
| 1592 int dmin, i; | |
| 327 | 1593 const int time_pp= s->pp_time; |
| 664 | 1594 const int time_pb= s->pb_time; |
| 936 | 1595 int mx, my, xmin, xmax, ymin, ymax; |
| 327 | 1596 int16_t (*mv_table)[2]= s->b_direct_mv_table; |
| 936 | 1597 |
| 1950 | 1598 s->me.current_mv_penalty= s->me.mv_penalty[1] + MAX_MV; |
| 936 | 1599 ymin= xmin=(-32)>>shift; |
| 1600 ymax= xmax= 31>>shift; | |
| 1601 | |
|
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
|
1602 if(IS_8X8(s->next_picture.mb_type[mot_xy])){ |
| 936 | 1603 s->mv_type= MV_TYPE_8X8; |
| 1604 }else{ | |
| 1605 s->mv_type= MV_TYPE_16X16; | |
| 327 | 1606 } |
| 936 | 1607 |
| 1608 for(i=0; i<4; i++){ | |
| 1609 int index= s->block_index[i]; | |
| 1610 int min, max; | |
| 1611 | |
|
1668
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
1612 s->me.co_located_mv[i][0]= s->next_picture.motion_val[0][index][0]; |
|
30746f429df6
move motion_val & mb_type to AVFrame patch by (Wolfgang Hesseler <qv at multimediaware dot com>)
michael
parents:
1634
diff
changeset
|
1613 s->me.co_located_mv[i][1]= s->next_picture.motion_val[0][index][1]; |
| 936 | 1614 s->me.direct_basis_mv[i][0]= s->me.co_located_mv[i][0]*time_pb/time_pp + ((i& 1)<<(shift+3)); |
| 1615 s->me.direct_basis_mv[i][1]= s->me.co_located_mv[i][1]*time_pb/time_pp + ((i>>1)<<(shift+3)); | |
| 1616 // s->me.direct_basis_mv[1][i][0]= s->me.co_located_mv[i][0]*(time_pb - time_pp)/time_pp + ((i &1)<<(shift+3); | |
| 1617 // s->me.direct_basis_mv[1][i][1]= s->me.co_located_mv[i][1]*(time_pb - time_pp)/time_pp + ((i>>1)<<(shift+3); | |
| 1618 | |
| 1619 max= FFMAX(s->me.direct_basis_mv[i][0], s->me.direct_basis_mv[i][0] - s->me.co_located_mv[i][0])>>shift; | |
| 1620 min= FFMIN(s->me.direct_basis_mv[i][0], s->me.direct_basis_mv[i][0] - s->me.co_located_mv[i][0])>>shift; | |
| 1764 | 1621 max+= 16*mb_x + 1; // +-1 is for the simpler rounding |
| 1622 min+= 16*mb_x - 1; | |
| 960 | 1623 xmax= FFMIN(xmax, s->width - max); |
| 1624 xmin= FFMAX(xmin, - 16 - min); | |
| 936 | 1625 |
| 1626 max= FFMAX(s->me.direct_basis_mv[i][1], s->me.direct_basis_mv[i][1] - s->me.co_located_mv[i][1])>>shift; | |
| 1627 min= FFMIN(s->me.direct_basis_mv[i][1], s->me.direct_basis_mv[i][1] - s->me.co_located_mv[i][1])>>shift; | |
| 1764 | 1628 max+= 16*mb_y + 1; // +-1 is for the simpler rounding |
| 1629 min+= 16*mb_y - 1; | |
| 960 | 1630 ymax= FFMIN(ymax, s->height - max); |
| 1631 ymin= FFMAX(ymin, - 16 - min); | |
| 936 | 1632 |
| 1633 if(s->mv_type == MV_TYPE_16X16) break; | |
| 327 | 1634 } |
| 936 | 1635 |
| 1636 assert(xmax <= 15 && ymax <= 15 && xmin >= -16 && ymin >= -16); | |
| 1637 | |
| 1638 if(xmax < 0 || xmin >0 || ymax < 0 || ymin > 0){ | |
| 1639 s->b_direct_mv_table[mot_xy][0]= 0; | |
| 1640 s->b_direct_mv_table[mot_xy][1]= 0; | |
| 1641 | |
| 1642 return 256*256*256*64; | |
| 1643 } | |
| 1708 | 1644 |
| 1645 s->me.xmin= xmin; | |
| 1646 s->me.ymin= ymin; | |
| 1647 s->me.xmax= xmax; | |
| 1648 s->me.ymax= ymax; | |
| 1950 | 1649 s->me.flags |= FLAG_DIRECT; |
| 1650 s->me.sub_flags |= FLAG_DIRECT; | |
| 1651 s->me.pred_x=0; | |
| 1652 s->me.pred_y=0; | |
| 936 | 1653 |
| 950 | 1654 P_LEFT[0] = clip(mv_table[mot_xy - 1][0], xmin<<shift, xmax<<shift); |
| 1655 P_LEFT[1] = clip(mv_table[mot_xy - 1][1], ymin<<shift, ymax<<shift); | |
| 1656 | |
| 1657 /* special case for first line */ | |
| 1799 | 1658 if (!s->first_slice_line) { //FIXME maybe allow this over thread boundary as its cliped |
| 950 | 1659 P_TOP[0] = clip(mv_table[mot_xy - mot_stride ][0], xmin<<shift, xmax<<shift); |
| 1660 P_TOP[1] = clip(mv_table[mot_xy - mot_stride ][1], ymin<<shift, ymax<<shift); | |
| 1661 P_TOPRIGHT[0] = clip(mv_table[mot_xy - mot_stride + 1 ][0], xmin<<shift, xmax<<shift); | |
| 1662 P_TOPRIGHT[1] = clip(mv_table[mot_xy - mot_stride + 1 ][1], ymin<<shift, ymax<<shift); | |
| 1663 | |
| 1664 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); | |
| 1665 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
| 1666 } | |
| 1013 | 1667 |
| 1950 | 1668 dmin = epzs_motion_search(s, &mx, &my, P, 0, 0, mv_table, 1<<(16-shift)); |
| 1669 if(s->me.sub_flags&FLAG_QPEL) | |
| 1670 dmin = qpel_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16); | |
| 1671 else | |
| 1672 dmin = hpel_motion_search(s, &mx, &my, dmin, 0, 0, 0, 16); | |
| 1673 | |
| 1674 if(s->avctx->me_sub_cmp != s->avctx->mb_cmp && !s->me.skip) | |
| 1675 dmin= get_mb_score(s, mx, my, 0, 0); | |
| 1708 | 1676 |
| 1677 get_limits(s, 16*mb_x, 16*mb_y); //restore s->me.?min/max, maybe not needed | |
| 327 | 1678 |
| 1679 s->b_direct_mv_table[mot_xy][0]= mx; | |
| 1680 s->b_direct_mv_table[mot_xy][1]= my; | |
| 1950 | 1681 s->me.flags &= ~FLAG_DIRECT; |
| 1682 s->me.sub_flags &= ~FLAG_DIRECT; | |
| 1683 | |
| 327 | 1684 return dmin; |
| 324 | 1685 } |
| 1686 | |
| 1687 void ff_estimate_b_frame_motion(MpegEncContext * s, | |
| 1688 int mb_x, int mb_y) | |
| 1689 { | |
| 1013 | 1690 const int penalty_factor= s->me.mb_penalty_factor; |
| 1708 | 1691 int fmin, bmin, dmin, fbmin, bimin, fimin; |
| 327 | 1692 int type=0; |
| 1950 | 1693 init_ref(s, s->new_picture.data, s->last_picture.data, s->next_picture.data, 16*mb_x, 16*mb_y, 2); |
| 327 | 1694 |
| 1426 | 1695 s->me.skip=0; |
|
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
|
1696 if(s->avctx->me_threshold){ |
|
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
|
1697 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
|
1698 |
|
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
|
1699 if(vard<s->avctx->me_threshold){ |
|
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
|
1700 // 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
|
1701 // 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
|
1702 // 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
|
1703 |
|
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
|
1704 // 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
|
1705 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
|
1706 /* pic->mb_mean [s->mb_stride * mb_y + mb_x] = (sum+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
|
1707 s->mb_var_sum_temp += 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
|
1708 s->mc_mb_var_sum_temp += 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
|
1709 /* if (vard <= 64 || vard < 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
|
1710 s->scene_change_score+= ff_sqrt(vard) - ff_sqrt(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
|
1711 }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
|
1712 s->scene_change_score+= s->qscale; |
|
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
|
1713 }*/ |
|
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
|
1714 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
|
1715 } |
|
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
|
1716 } |
|
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
|
1717 |
| 1426 | 1718 if (s->codec_id == CODEC_ID_MPEG4) |
| 1950 | 1719 dmin= direct_search(s, mb_x, mb_y); |
| 1426 | 1720 else |
| 1721 dmin= INT_MAX; | |
| 1708 | 1722 //FIXME penalty stuff for non mpeg4 |
| 1426 | 1723 s->me.skip=0; |
| 1950 | 1724 fmin= ff_estimate_motion_b(s, mb_x, mb_y, s->b_forw_mv_table, 0, s->f_code) + 3*penalty_factor; |
| 1426 | 1725 |
| 1726 s->me.skip=0; | |
| 1950 | 1727 bmin= ff_estimate_motion_b(s, mb_x, mb_y, s->b_back_mv_table, 2, s->b_code) + 2*penalty_factor; |
| 324 | 1728 //printf(" %d %d ", s->b_forw_mv_table[xy][0], s->b_forw_mv_table[xy][1]); |
| 327 | 1729 |
| 1426 | 1730 s->me.skip=0; |
| 1950 | 1731 fbmin= bidir_refine(s, mb_x, mb_y) + penalty_factor; |
| 1013 | 1732 //printf("%d %d %d %d\n", dmin, fmin, bmin, fbmin); |
| 1708 | 1733 |
| 1734 if(s->flags & CODEC_FLAG_INTERLACED_ME){ | |
| 1735 const int xy = mb_y*s->mb_stride + mb_x; | |
| 1736 | |
| 1737 //FIXME mb type penalty | |
| 1738 s->me.skip=0; | |
| 1950 | 1739 s->me.current_mv_penalty= s->me.mv_penalty[s->f_code] + MAX_MV; |
| 1740 fimin= interlaced_search(s, 0, | |
| 1741 s->b_field_mv_table[0], s->b_field_select_table[0], | |
| 1708 | 1742 s->b_forw_mv_table[xy][0], s->b_forw_mv_table[xy][1]); |
| 1950 | 1743 s->me.current_mv_penalty= s->me.mv_penalty[s->b_code] + MAX_MV; |
| 1744 bimin= interlaced_search(s, 2, | |
| 1745 s->b_field_mv_table[1], s->b_field_select_table[1], | |
| 1708 | 1746 s->b_back_mv_table[xy][0], s->b_back_mv_table[xy][1]); |
| 1747 }else | |
| 1748 fimin= bimin= INT_MAX; | |
| 1749 | |
| 612 | 1750 { |
|
1051
e5a9dbf597d4
mpeg1 bframe encoding patch by (Rapha?l LEGRAND) with some modifications by me
michaelni
parents:
1050
diff
changeset
|
1751 int score= fmin; |
| 1708 | 1752 type = CANDIDATE_MB_TYPE_FORWARD; |
| 327 | 1753 |
| 1426 | 1754 if (dmin <= score){ |
|
1051
e5a9dbf597d4
mpeg1 bframe encoding patch by (Rapha?l LEGRAND) with some modifications by me
michaelni
parents:
1050
diff
changeset
|
1755 score = dmin; |
| 1708 | 1756 type = CANDIDATE_MB_TYPE_DIRECT; |
| 327 | 1757 } |
| 1758 if(bmin<score){ | |
| 1759 score=bmin; | |
| 1708 | 1760 type= CANDIDATE_MB_TYPE_BACKWARD; |
| 327 | 1761 } |
| 1762 if(fbmin<score){ | |
| 1763 score=fbmin; | |
| 1708 | 1764 type= CANDIDATE_MB_TYPE_BIDIR; |
| 1765 } | |
| 1766 if(fimin<score){ | |
| 1767 score=fimin; | |
| 1768 type= CANDIDATE_MB_TYPE_FORWARD_I; | |
| 1769 } | |
| 1770 if(bimin<score){ | |
| 1771 score=bimin; | |
| 1772 type= CANDIDATE_MB_TYPE_BACKWARD_I; | |
| 327 | 1773 } |
| 1013 | 1774 |
|
807
0e1d375c537f
fixing q>0.0 assert failure caused by overflow of variance for b frames
michaelni
parents:
765
diff
changeset
|
1775 score= ((unsigned)(score*score + 128*256))>>16; |
| 1799 | 1776 s->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
|
1777 s->current_picture.mc_mb_var[mb_y*s->mb_stride + mb_x] = score; //FIXME use SSE |
| 327 | 1778 } |
| 612 | 1779 |
| 1389 | 1780 if(s->avctx->mb_decision > FF_MB_DECISION_SIMPLE){ |
| 1708 | 1781 type= CANDIDATE_MB_TYPE_FORWARD | CANDIDATE_MB_TYPE_BACKWARD | CANDIDATE_MB_TYPE_BIDIR | CANDIDATE_MB_TYPE_DIRECT; |
| 1782 if(fimin < INT_MAX) | |
| 1783 type |= CANDIDATE_MB_TYPE_FORWARD_I; | |
| 1784 if(bimin < INT_MAX) | |
| 1785 type |= CANDIDATE_MB_TYPE_BACKWARD_I; | |
| 1786 if(fimin < INT_MAX && bimin < INT_MAX){ | |
| 1787 type |= CANDIDATE_MB_TYPE_BIDIR_I; | |
| 1788 } | |
| 1789 //FIXME something smarter | |
| 1790 if(dmin>256*256*16) type&= ~CANDIDATE_MB_TYPE_DIRECT; //dont try direct mode if its invalid for this MB | |
| 1729 | 1791 #if 0 |
| 1792 if(s->out_format == FMT_MPEG1) | |
| 1793 type |= CANDIDATE_MB_TYPE_INTRA; | |
| 1794 #endif | |
| 612 | 1795 } |
| 1796 | |
|
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
|
1797 s->mb_type[mb_y*s->mb_stride + mb_x]= type; |
| 324 | 1798 } |
| 0 | 1799 |
| 324 | 1800 /* find best f_code for ME which do unlimited searches */ |
| 1801 int ff_get_best_fcode(MpegEncContext * s, int16_t (*mv_table)[2], int type) | |
| 1802 { | |
| 1803 if(s->me_method>=ME_EPZS){ | |
| 455 | 1804 int score[8]; |
| 324 | 1805 int i, y; |
| 1064 | 1806 uint8_t * fcode_tab= s->fcode_tab; |
| 455 | 1807 int best_fcode=-1; |
| 1808 int best_score=-10000000; | |
| 324 | 1809 |
| 936 | 1810 for(i=0; i<8; i++) score[i]= s->mb_num*(8-i); |
| 324 | 1811 |
| 1812 for(y=0; y<s->mb_height; y++){ | |
| 1813 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
|
1814 int xy= y*s->mb_stride; |
| 324 | 1815 for(x=0; x<s->mb_width; x++){ |
| 1634 | 1816 if(s->mb_type[xy] & type){ |
| 847 | 1817 int fcode= FFMAX(fcode_tab[mv_table[xy][0] + MAX_MV], |
| 1818 fcode_tab[mv_table[xy][1] + MAX_MV]); | |
| 455 | 1819 int j; |
| 1820 | |
| 1821 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
|
1822 if(s->pict_type==B_TYPE || s->current_picture.mc_mb_var[xy] < s->current_picture.mb_var[xy]) |
| 455 | 1823 score[j]-= 170; |
| 1824 } | |
| 324 | 1825 } |
| 1826 xy++; | |
| 1827 } | |
| 1828 } | |
| 455 | 1829 |
| 1830 for(i=1; i<8; i++){ | |
| 1831 if(score[i] > best_score){ | |
| 1832 best_score= score[i]; | |
| 1833 best_fcode= i; | |
| 1834 } | |
| 1835 // printf("%d %d\n", i, score[i]); | |
| 1836 } | |
| 327 | 1837 |
| 324 | 1838 // printf("fcode: %d type: %d\n", i, s->pict_type); |
| 455 | 1839 return best_fcode; |
| 324 | 1840 /* for(i=0; i<=MAX_FCODE; i++){ |
| 1841 printf("%d ", mv_num[i]); | |
| 1842 } | |
| 1843 printf("\n");*/ | |
| 1844 }else{ | |
| 1845 return 1; | |
| 0 | 1846 } |
| 1847 } | |
| 1848 | |
| 324 | 1849 void ff_fix_long_p_mvs(MpegEncContext * s) |
| 1850 { | |
| 1851 const int f_code= s->f_code; | |
| 1086 | 1852 int y, range; |
| 1421 | 1853 assert(s->pict_type==P_TYPE); |
| 1086 | 1854 |
| 1421 | 1855 range = (((s->out_format == FMT_MPEG1) ? 8 : 16) << f_code); |
| 1086 | 1856 |
| 1857 if(s->msmpeg4_version) range= 16; | |
| 1858 | |
| 1859 if(s->avctx->me_range && range > s->avctx->me_range) range= s->avctx->me_range; | |
| 1860 | |
| 455 | 1861 //printf("%d no:%d %d//\n", clip, noclip, f_code); |
| 324 | 1862 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
|
1863 const int wrap= s->b8_stride; |
| 324 | 1864 |
| 1865 /* clip / convert to intra 8x8 type MVs */ | |
| 1866 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
|
1867 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
|
1868 int i= y*s->mb_stride; |
| 324 | 1869 int x; |
| 1870 | |
| 1871 for(x=0; x<s->mb_width; x++){ | |
| 1708 | 1872 if(s->mb_type[i]&CANDIDATE_MB_TYPE_INTER4V){ |
| 324 | 1873 int block; |
| 1874 for(block=0; block<4; block++){ | |
| 1875 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
|
1876 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
|
1877 int my= s->current_picture.motion_val[0][ xy + off ][1]; |
| 324 | 1878 |
| 1086 | 1879 if( mx >=range || mx <-range |
| 1880 || my >=range || my <-range){ | |
| 1708 | 1881 s->mb_type[i] &= ~CANDIDATE_MB_TYPE_INTER4V; |
| 1882 s->mb_type[i] |= CANDIDATE_MB_TYPE_INTRA; | |
| 1883 s->current_picture.mb_type[i]= CANDIDATE_MB_TYPE_INTRA; | |
| 324 | 1884 } |
| 1885 } | |
| 1886 } | |
| 502 | 1887 xy+=2; |
| 1888 i++; | |
| 324 | 1889 } |
| 1890 } | |
| 1891 } | |
| 1892 } | |
| 1893 | |
| 1708 | 1894 /** |
| 1895 * | |
| 1896 * @param truncate 1 for truncation, 0 for using intra | |
| 1897 */ | |
| 1898 void ff_fix_long_mvs(MpegEncContext * s, uint8_t *field_select_table, int field_select, | |
| 1899 int16_t (*mv_table)[2], int f_code, int type, int truncate) | |
| 324 | 1900 { |
| 1708 | 1901 int y, h_range, v_range; |
| 324 | 1902 |
|
1051
e5a9dbf597d4
mpeg1 bframe encoding patch by (Rapha?l LEGRAND) with some modifications by me
michaelni
parents:
1050
diff
changeset
|
1903 // RAL: 8 in MPEG-1, 16 in MPEG-4 |
| 1421 | 1904 int range = (((s->out_format == FMT_MPEG1) ? 8 : 16) << f_code); |
| 1708 | 1905 |
| 1906 if(s->msmpeg4_version) range= 16; | |
| 1086 | 1907 if(s->avctx->me_range && range > s->avctx->me_range) range= s->avctx->me_range; |
|
1051
e5a9dbf597d4
mpeg1 bframe encoding patch by (Rapha?l LEGRAND) with some modifications by me
michaelni
parents:
1050
diff
changeset
|
1908 |
| 1708 | 1909 h_range= range; |
| 1910 v_range= field_select_table ? range>>1 : range; | |
| 1911 | |
| 324 | 1912 /* clip / convert to intra 16x16 type MVs */ |
| 1913 for(y=0; y<s->mb_height; y++){ | |
| 1914 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
|
1915 int xy= y*s->mb_stride; |
| 1086 | 1916 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
|
1917 if (s->mb_type[xy] & type){ // RAL: "type" test added... |
| 1708 | 1918 if(field_select_table==NULL || field_select_table[xy] == field_select){ |
| 1919 if( mv_table[xy][0] >=h_range || mv_table[xy][0] <-h_range | |
| 1920 || mv_table[xy][1] >=v_range || mv_table[xy][1] <-v_range){ | |
| 1086 | 1921 |
| 1708 | 1922 if(truncate){ |
| 1923 if (mv_table[xy][0] > h_range-1) mv_table[xy][0]= h_range-1; | |
| 1924 else if(mv_table[xy][0] < -h_range ) mv_table[xy][0]= -h_range; | |
| 1925 if (mv_table[xy][1] > v_range-1) mv_table[xy][1]= v_range-1; | |
| 1926 else if(mv_table[xy][1] < -v_range ) mv_table[xy][1]= -v_range; | |
| 1927 }else{ | |
| 1928 s->mb_type[xy] &= ~type; | |
| 1929 s->mb_type[xy] |= CANDIDATE_MB_TYPE_INTRA; | |
| 1930 mv_table[xy][0]= | |
| 1931 mv_table[xy][1]= 0; | |
| 1932 } | |
|
1051
e5a9dbf597d4
mpeg1 bframe encoding patch by (Rapha?l LEGRAND) with some modifications by me
michaelni
parents:
1050
diff
changeset
|
1933 } |
| 1086 | 1934 } |
| 324 | 1935 } |
| 1936 xy++; | |
| 1937 } | |
| 1938 } | |
| 1939 } |
