Mercurial > libavcodec.hg
annotate motion_est.c @ 903:22ee74da2cd3 libavcodec
cleanup
adding AVVideoFrame
moving quality, pict_type, key_frame, qscale_table, ... to AVVideoFrame
removing obsolete variables in AVCodecContext
skiping of MBs in b frames
correctly initalizing AVCodecContext
picture buffer cleanup
| author | michaelni |
|---|---|
| date | Wed, 04 Dec 2002 10:04:03 +0000 |
| parents | 2cef5c4c0ca6 |
| children | 51f3b644ae30 |
| rev | line source |
|---|---|
| 0 | 1 /* |
| 2 * Motion estimation | |
| 429 | 3 * Copyright (c) 2000,2001 Fabrice Bellard. |
| 455 | 4 * Copyright (c) 2002 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 */ |
| 23 #include <stdlib.h> | |
| 24 #include <stdio.h> | |
| 25 #include "avcodec.h" | |
| 26 #include "dsputil.h" | |
| 27 #include "mpegvideo.h" | |
| 28 | |
| 455 | 29 #define SQ(a) ((a)*(a)) |
| 284 | 30 #define INTER_BIAS 257 |
| 31 | |
| 455 | 32 #define P_LAST P[0] |
| 33 #define P_LEFT P[1] | |
| 34 #define P_TOP P[2] | |
| 35 #define P_TOPRIGHT P[3] | |
| 36 #define P_MEDIAN P[4] | |
| 37 #define P_LAST_LEFT P[5] | |
| 38 #define P_LAST_RIGHT P[6] | |
| 39 #define P_LAST_TOP P[7] | |
| 40 #define P_LAST_BOTTOM P[8] | |
| 41 #define P_MV1 P[9] | |
| 42 | |
| 0 | 43 |
| 284 | 44 static int pix_dev(UINT8 * pix, int line_size, int mean) |
| 45 { | |
| 46 int s, i, j; | |
| 47 | |
| 48 s = 0; | |
| 49 for (i = 0; i < 16; i++) { | |
| 50 for (j = 0; j < 16; j += 8) { | |
| 51 s += ABS(pix[0]-mean); | |
| 52 s += ABS(pix[1]-mean); | |
| 53 s += ABS(pix[2]-mean); | |
| 54 s += ABS(pix[3]-mean); | |
| 55 s += ABS(pix[4]-mean); | |
| 56 s += ABS(pix[5]-mean); | |
| 57 s += ABS(pix[6]-mean); | |
| 58 s += ABS(pix[7]-mean); | |
| 59 pix += 8; | |
| 60 } | |
| 61 pix += line_size - 16; | |
| 62 } | |
| 63 return s; | |
| 64 } | |
| 65 | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
66 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
|
67 int *mx_ptr, int *my_ptr) |
| 0 | 68 { |
| 69 *mx_ptr = 16 * s->mb_x; | |
| 70 *my_ptr = 16 * s->mb_y; | |
| 71 } | |
| 72 | |
| 73 static int full_motion_search(MpegEncContext * s, | |
| 74 int *mx_ptr, int *my_ptr, int range, | |
| 324 | 75 int xmin, int ymin, int xmax, int ymax, uint8_t *ref_picture) |
| 0 | 76 { |
| 77 int x1, y1, x2, y2, xx, yy, x, y; | |
| 78 int mx, my, dmin, d; | |
| 79 UINT8 *pix; | |
| 80 | |
| 81 xx = 16 * s->mb_x; | |
| 82 yy = 16 * s->mb_y; | |
| 83 x1 = xx - range + 1; /* we loose one pixel to avoid boundary pb with half pixel pred */ | |
| 84 if (x1 < xmin) | |
| 85 x1 = xmin; | |
| 86 x2 = xx + range - 1; | |
| 87 if (x2 > xmax) | |
| 88 x2 = xmax; | |
| 89 y1 = yy - range + 1; | |
| 90 if (y1 < ymin) | |
| 91 y1 = ymin; | |
| 92 y2 = yy + range - 1; | |
| 93 if (y2 > ymax) | |
| 94 y2 = ymax; | |
| 903 | 95 pix = s->new_picture.data[0] + (yy * s->linesize) + xx; |
| 0 | 96 dmin = 0x7fffffff; |
| 97 mx = 0; | |
| 98 my = 0; | |
| 99 for (y = y1; y <= y2; y++) { | |
| 100 for (x = x1; x <= x2; x++) { | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
101 d = s->dsp.pix_abs16x16(pix, ref_picture + (y * s->linesize) + x, |
| 294 | 102 s->linesize); |
| 0 | 103 if (d < dmin || |
| 104 (d == dmin && | |
| 105 (abs(x - xx) + abs(y - yy)) < | |
| 106 (abs(mx - xx) + abs(my - yy)))) { | |
| 107 dmin = d; | |
| 108 mx = x; | |
| 109 my = y; | |
| 110 } | |
| 111 } | |
| 112 } | |
| 113 | |
| 114 *mx_ptr = mx; | |
| 115 *my_ptr = my; | |
| 116 | |
| 117 #if 0 | |
| 118 if (*mx_ptr < -(2 * range) || *mx_ptr >= (2 * range) || | |
| 119 *my_ptr < -(2 * range) || *my_ptr >= (2 * range)) { | |
| 120 fprintf(stderr, "error %d %d\n", *mx_ptr, *my_ptr); | |
| 121 } | |
| 122 #endif | |
| 123 return dmin; | |
| 124 } | |
| 125 | |
| 126 | |
| 127 static int log_motion_search(MpegEncContext * s, | |
| 128 int *mx_ptr, int *my_ptr, int range, | |
| 324 | 129 int xmin, int ymin, int xmax, int ymax, uint8_t *ref_picture) |
| 0 | 130 { |
| 131 int x1, y1, x2, y2, xx, yy, x, y; | |
| 132 int mx, my, dmin, d; | |
| 133 UINT8 *pix; | |
| 134 | |
| 135 xx = s->mb_x << 4; | |
| 136 yy = s->mb_y << 4; | |
| 137 | |
| 138 /* Left limit */ | |
| 139 x1 = xx - range; | |
| 140 if (x1 < xmin) | |
| 141 x1 = xmin; | |
| 142 | |
| 143 /* Right limit */ | |
| 144 x2 = xx + range; | |
| 145 if (x2 > xmax) | |
| 146 x2 = xmax; | |
| 147 | |
| 148 /* Upper limit */ | |
| 149 y1 = yy - range; | |
| 150 if (y1 < ymin) | |
| 151 y1 = ymin; | |
| 152 | |
| 153 /* Lower limit */ | |
| 154 y2 = yy + range; | |
| 155 if (y2 > ymax) | |
| 156 y2 = ymax; | |
| 157 | |
| 903 | 158 pix = s->new_picture.data[0] + (yy * s->linesize) + xx; |
| 0 | 159 dmin = 0x7fffffff; |
| 160 mx = 0; | |
| 161 my = 0; | |
| 162 | |
| 163 do { | |
| 164 for (y = y1; y <= y2; y += range) { | |
| 165 for (x = x1; x <= x2; x += range) { | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
166 d = s->dsp.pix_abs16x16(pix, ref_picture + (y * s->linesize) + x, s->linesize); |
| 0 | 167 if (d < dmin || (d == dmin && (abs(x - xx) + abs(y - yy)) < (abs(mx - xx) + abs(my - yy)))) { |
| 168 dmin = d; | |
| 169 mx = x; | |
| 170 my = y; | |
| 171 } | |
| 172 } | |
| 173 } | |
| 174 | |
| 175 range = range >> 1; | |
| 176 | |
| 177 x1 = mx - range; | |
| 178 if (x1 < xmin) | |
| 179 x1 = xmin; | |
| 180 | |
| 181 x2 = mx + range; | |
| 182 if (x2 > xmax) | |
| 183 x2 = xmax; | |
| 184 | |
| 185 y1 = my - range; | |
| 186 if (y1 < ymin) | |
| 187 y1 = ymin; | |
| 188 | |
| 189 y2 = my + range; | |
| 190 if (y2 > ymax) | |
| 191 y2 = ymax; | |
| 192 | |
| 193 } while (range >= 1); | |
| 194 | |
| 195 #ifdef DEBUG | |
| 196 fprintf(stderr, "log - MX: %d\tMY: %d\n", mx, my); | |
| 197 #endif | |
| 198 *mx_ptr = mx; | |
| 199 *my_ptr = my; | |
| 200 return dmin; | |
| 201 } | |
| 202 | |
| 203 static int phods_motion_search(MpegEncContext * s, | |
| 204 int *mx_ptr, int *my_ptr, int range, | |
| 324 | 205 int xmin, int ymin, int xmax, int ymax, uint8_t *ref_picture) |
| 0 | 206 { |
| 207 int x1, y1, x2, y2, xx, yy, x, y, lastx, d; | |
| 208 int mx, my, dminx, dminy; | |
| 209 UINT8 *pix; | |
| 210 | |
| 211 xx = s->mb_x << 4; | |
| 212 yy = s->mb_y << 4; | |
| 213 | |
| 214 /* Left limit */ | |
| 215 x1 = xx - range; | |
| 216 if (x1 < xmin) | |
| 217 x1 = xmin; | |
| 218 | |
| 219 /* Right limit */ | |
| 220 x2 = xx + range; | |
| 221 if (x2 > xmax) | |
| 222 x2 = xmax; | |
| 223 | |
| 224 /* Upper limit */ | |
| 225 y1 = yy - range; | |
| 226 if (y1 < ymin) | |
| 227 y1 = ymin; | |
| 228 | |
| 229 /* Lower limit */ | |
| 230 y2 = yy + range; | |
| 231 if (y2 > ymax) | |
| 232 y2 = ymax; | |
| 233 | |
| 903 | 234 pix = s->new_picture.data[0] + (yy * s->linesize) + xx; |
| 0 | 235 mx = 0; |
| 236 my = 0; | |
| 237 | |
| 238 x = xx; | |
| 239 y = yy; | |
| 240 do { | |
| 241 dminx = 0x7fffffff; | |
| 242 dminy = 0x7fffffff; | |
| 243 | |
| 244 lastx = x; | |
| 245 for (x = x1; x <= x2; x += range) { | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
246 d = s->dsp.pix_abs16x16(pix, ref_picture + (y * s->linesize) + x, s->linesize); |
| 0 | 247 if (d < dminx || (d == dminx && (abs(x - xx) + abs(y - yy)) < (abs(mx - xx) + abs(my - yy)))) { |
| 248 dminx = d; | |
| 249 mx = x; | |
| 250 } | |
| 251 } | |
| 252 | |
| 253 x = lastx; | |
| 254 for (y = y1; y <= y2; y += range) { | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
255 d = s->dsp.pix_abs16x16(pix, ref_picture + (y * s->linesize) + x, s->linesize); |
| 0 | 256 if (d < dminy || (d == dminy && (abs(x - xx) + abs(y - yy)) < (abs(mx - xx) + abs(my - yy)))) { |
| 257 dminy = d; | |
| 258 my = y; | |
| 259 } | |
| 260 } | |
| 261 | |
| 262 range = range >> 1; | |
| 263 | |
| 264 x = mx; | |
| 265 y = my; | |
| 266 x1 = mx - range; | |
| 267 if (x1 < xmin) | |
| 268 x1 = xmin; | |
| 269 | |
| 270 x2 = mx + range; | |
| 271 if (x2 > xmax) | |
| 272 x2 = xmax; | |
| 273 | |
| 274 y1 = my - range; | |
| 275 if (y1 < ymin) | |
| 276 y1 = ymin; | |
| 277 | |
| 278 y2 = my + range; | |
| 279 if (y2 > ymax) | |
| 280 y2 = ymax; | |
| 281 | |
| 282 } while (range >= 1); | |
| 283 | |
| 284 #ifdef DEBUG | |
| 285 fprintf(stderr, "phods - MX: %d\tMY: %d\n", mx, my); | |
| 286 #endif | |
| 287 | |
| 288 /* half pixel search */ | |
| 289 *mx_ptr = mx; | |
| 290 *my_ptr = my; | |
| 291 return dminy; | |
| 292 } | |
| 293 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
294 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
295 #define Z_THRESHOLD 256 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
296 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
297 #define CHECK_MV(x,y)\ |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
298 {\ |
| 455 | 299 const int key= ((y)<<ME_MAP_MV_BITS) + (x) + map_generation;\ |
| 300 const int index= (((y)<<ME_MAP_SHIFT) + (x))&(ME_MAP_SIZE-1);\ | |
| 301 if(map[index]!=key){\ | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
302 d = s->dsp.pix_abs16x16(new_pic, old_pic + (x) + (y)*pic_stride, pic_stride);\ |
| 455 | 303 d += (mv_penalty[((x)<<shift)-pred_x] + mv_penalty[((y)<<shift)-pred_y])*quant;\ |
| 304 COPY3_IF_LT(dmin, d, best[0], x, best[1], y)\ | |
| 305 map[index]= key;\ | |
| 306 score_map[index]= d;\ | |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
307 }\ |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
308 } |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
309 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
310 #define CHECK_MV_DIR(x,y,new_dir)\ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
311 {\ |
| 455 | 312 const int key= ((y)<<ME_MAP_MV_BITS) + (x) + map_generation;\ |
| 313 const int index= (((y)<<ME_MAP_SHIFT) + (x))&(ME_MAP_SIZE-1);\ | |
| 314 if(map[index]!=key){\ | |
| 315 d = pix_abs(new_pic, old_pic + (x) + (y)*pic_stride, pic_stride);\ | |
| 316 d += (mv_penalty[((x)<<shift)-pred_x] + mv_penalty[((y)<<shift)-pred_y])*quant;\ | |
| 317 if(d<dmin){\ | |
| 318 best[0]=x;\ | |
| 319 best[1]=y;\ | |
| 320 dmin=d;\ | |
| 321 next_dir= new_dir;\ | |
| 322 }\ | |
| 323 map[index]= key;\ | |
| 324 score_map[index]= d;\ | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
325 }\ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
326 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
327 |
| 294 | 328 #define CHECK_MV4(x,y)\ |
| 329 {\ | |
| 455 | 330 const int key= ((y)<<ME_MAP_MV_BITS) + (x) + map_generation;\ |
| 331 const int index= (((y)<<ME_MAP_SHIFT) + (x))&(ME_MAP_SIZE-1);\ | |
| 332 if(map[index]!=key){\ | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
333 d = s->dsp.pix_abs8x8(new_pic, old_pic + (x) + (y)*pic_stride, pic_stride);\ |
| 455 | 334 d += (mv_penalty[((x)<<shift)-pred_x] + mv_penalty[((y)<<shift)-pred_y])*quant;\ |
| 335 COPY3_IF_LT(dmin, d, best[0], x, best[1], y)\ | |
| 336 map[index]= key;\ | |
| 337 score_map[index]= d;\ | |
| 294 | 338 }\ |
| 339 } | |
| 340 | |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
341 #define check(x,y,S,v)\ |
| 455 | 342 if( (x)<(xmin<<(S)) ) printf("%d %d %d %d %d xmin" #v, xmin, (x), (y), s->mb_x, s->mb_y);\ |
| 343 if( (x)>(xmax<<(S)) ) printf("%d %d %d %d %d xmax" #v, xmax, (x), (y), s->mb_x, s->mb_y);\ | |
| 344 if( (y)<(ymin<<(S)) ) printf("%d %d %d %d %d ymin" #v, ymin, (x), (y), s->mb_x, s->mb_y);\ | |
| 345 if( (y)>(ymax<<(S)) ) printf("%d %d %d %d %d ymax" #v, ymax, (x), (y), s->mb_x, s->mb_y);\ | |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
346 |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
347 |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
348 static inline int small_diamond_search(MpegEncContext * s, int *best, int dmin, |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
349 UINT8 *new_pic, UINT8 *old_pic, int pic_stride, |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
350 int pred_x, int pred_y, UINT16 *mv_penalty, int quant, |
| 455 | 351 int xmin, int ymin, int xmax, int ymax, int shift, |
| 352 uint32_t *map, uint16_t *score_map, int map_generation, | |
| 353 op_pixels_abs_func pix_abs) | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
354 { |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
355 int next_dir=-1; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
356 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
357 for(;;){ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
358 int d; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
359 const int dir= next_dir; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
360 const int x= best[0]; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
361 const int y= best[1]; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
362 next_dir=-1; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
363 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
364 //printf("%d", dir); |
| 280 | 365 if(dir!=2 && x>xmin) CHECK_MV_DIR(x-1, y , 0) |
| 366 if(dir!=3 && y>ymin) CHECK_MV_DIR(x , y-1, 1) | |
| 367 if(dir!=0 && x<xmax) CHECK_MV_DIR(x+1, y , 2) | |
| 368 if(dir!=1 && y<ymax) CHECK_MV_DIR(x , y+1, 3) | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
369 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
370 if(next_dir==-1){ |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
371 return dmin; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
372 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
373 } |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
374 |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
375 /* for(;;){ |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
376 int d; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
377 const int x= best[0]; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
378 const int y= best[1]; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
379 const int last_min=dmin; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
380 if(x>xmin) CHECK_MV(x-1, y ) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
381 if(y>xmin) CHECK_MV(x , y-1) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
382 if(x<xmax) CHECK_MV(x+1, y ) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
383 if(y<xmax) CHECK_MV(x , y+1) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
384 if(x>xmin && y>ymin) CHECK_MV(x-1, y-1) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
385 if(x>xmin && y<ymax) CHECK_MV(x-1, y+1) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
386 if(x<xmax && y>ymin) CHECK_MV(x+1, y-1) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
387 if(x<xmax && y<ymax) CHECK_MV(x+1, y+1) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
388 if(x-1>xmin) CHECK_MV(x-2, y ) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
389 if(y-1>xmin) CHECK_MV(x , y-2) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
390 if(x+1<xmax) CHECK_MV(x+2, y ) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
391 if(y+1<xmax) CHECK_MV(x , y+2) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
392 if(x-1>xmin && y-1>ymin) CHECK_MV(x-2, y-2) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
393 if(x-1>xmin && y+1<ymax) CHECK_MV(x-2, y+2) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
394 if(x+1<xmax && y-1>ymin) CHECK_MV(x+2, y-2) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
395 if(x+1<xmax && y+1<ymax) CHECK_MV(x+2, y+2) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
396 if(dmin==last_min) return dmin; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
397 } |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
398 */ |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
399 } |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
400 |
| 455 | 401 #if 1 |
| 402 #define SNAKE_1 3 | |
| 403 #define SNAKE_2 2 | |
| 404 #else | |
| 405 #define SNAKE_1 7 | |
| 406 #define SNAKE_2 3 | |
| 407 #endif | |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
408 static inline int snake_search(MpegEncContext * s, int *best, int dmin, |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
409 UINT8 *new_pic, UINT8 *old_pic, int pic_stride, |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
410 int pred_x, int pred_y, UINT16 *mv_penalty, int quant, |
| 455 | 411 int xmin, int ymin, int xmax, int ymax, int shift, |
| 412 uint32_t *map, uint16_t *score_map,int map_generation, | |
| 413 op_pixels_abs_func pix_abs) | |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
414 { |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
415 int dir=0; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
416 int c=1; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
417 static int x_dir[8]= {1,1,0,-1,-1,-1, 0, 1}; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
418 static int y_dir[8]= {0,1,1, 1, 0,-1,-1,-1}; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
419 int fails=0; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
420 int last_d[2]={dmin, dmin}; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
421 |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
422 /*static int good=0; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
423 static int bad=0; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
424 static int point=0; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
425 |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
426 point++; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
427 if(256*256*256*64%point==0) |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
428 { |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
429 printf("%d %d %d\n", good, bad, point); |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
430 }*/ |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
431 |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
432 for(;;){ |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
433 int x= best[0]; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
434 int y= best[1]; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
435 int d; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
436 x+=x_dir[dir]; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
437 y+=y_dir[dir]; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
438 if(x>=xmin && x<=xmax && y>=ymin && y<=ymax){ |
| 455 | 439 const int key= ((y)<<ME_MAP_MV_BITS) + (x) + map_generation; |
| 440 const int index= (((y)<<ME_MAP_SHIFT) + (x))&(ME_MAP_SIZE-1); | |
| 441 if(map[index]!=key){ | |
| 442 d = pix_abs(new_pic, old_pic + (x) + (y)*pic_stride, pic_stride); | |
| 443 d += (mv_penalty[((x)<<shift)-pred_x] + mv_penalty[((y)<<shift)-pred_y])*quant; | |
| 444 map[index]=key; | |
| 445 score_map[index]=d; | |
| 446 }else | |
| 447 d= dmin+1; | |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
448 }else{ |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
449 d = dmin + 10000; //FIXME smarter boundary handling |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
450 } |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
451 if(d<dmin){ |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
452 best[0]=x; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
453 best[1]=y; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
454 dmin=d; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
455 |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
456 if(last_d[1] - last_d[0] > last_d[0] - d) c= -c; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
457 dir+=c; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
458 |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
459 fails=0; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
460 //good++; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
461 last_d[1]=last_d[0]; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
462 last_d[0]=d; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
463 }else{ |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
464 //bad++; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
465 if(fails){ |
| 455 | 466 if(fails>=SNAKE_1+1) return dmin; |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
467 }else{ |
| 455 | 468 if(dir&1) dir-= c*3; |
| 469 else c= -c; | |
| 470 // c= -c; | |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
471 } |
| 455 | 472 dir+=c*SNAKE_2; |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
473 fails++; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
474 } |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
475 dir&=7; |
|
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
476 } |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
477 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
478 |
| 455 | 479 static inline int cross_search(MpegEncContext * s, int *best, int dmin, |
| 480 UINT8 *new_pic, UINT8 *old_pic, int pic_stride, | |
| 481 int pred_x, int pred_y, UINT16 *mv_penalty, int quant, | |
| 482 int xmin, int ymin, int xmax, int ymax, int shift, | |
| 483 uint32_t *map, uint16_t *score_map,int map_generation, | |
| 484 op_pixels_abs_func pix_abs) | |
| 485 { | |
| 486 static int x_dir[4]= {-1, 0, 1, 0}; | |
| 487 static int y_dir[4]= { 0,-1, 0, 1}; | |
| 488 int improvement[2]={100000, 100000}; | |
| 489 int dirs[2]={2, 3}; | |
| 490 int dir; | |
| 491 int last_dir= -1; | |
| 492 | |
| 493 for(;;){ | |
| 494 dir= dirs[ improvement[0] > improvement[1] ? 0 : 1 ]; | |
| 495 if(improvement[dir&1]==-1) return dmin; | |
| 496 | |
| 497 { | |
| 498 const int x= best[0] + x_dir[dir]; | |
| 499 const int y= best[1] + y_dir[dir]; | |
| 500 const int key= (y<<ME_MAP_MV_BITS) + x + map_generation; | |
| 501 const int index= ((y<<ME_MAP_SHIFT) + x)&(ME_MAP_SIZE-1); | |
| 502 int d; | |
| 503 if(x>=xmin && x<=xmax && y>=ymin && y<=ymax){ | |
| 504 if(map[index]!=key){ | |
| 505 d = pix_abs(new_pic, old_pic + x + y*pic_stride, pic_stride); | |
| 506 d += (mv_penalty[(x<<shift)-pred_x] + mv_penalty[(y<<shift)-pred_y])*quant; | |
| 507 map[index]=key; | |
| 508 score_map[index]=d; | |
| 509 if(d<dmin){ | |
| 510 improvement[dir&1]= dmin-d; | |
| 511 improvement[(dir&1)^1]++; | |
| 512 dmin=d; | |
| 513 best[0]= x; | |
| 514 best[1]= y; | |
| 515 last_dir=dir; | |
| 516 continue; | |
| 517 } | |
| 518 }else{ | |
| 519 d= score_map[index]; | |
| 520 } | |
| 521 }else{ | |
| 522 d= dmin + 1000; //FIXME is this a good idea? | |
| 523 } | |
| 524 /* evaluated point was cached or checked and worse */ | |
| 525 | |
| 526 if(last_dir==dir){ | |
| 527 improvement[dir&1]= -1; | |
| 528 }else{ | |
| 529 improvement[dir&1]= d-dmin; | |
| 530 last_dir= dirs[dir&1]= dir^2; | |
| 531 } | |
| 532 } | |
| 533 } | |
| 534 } | |
| 535 | |
| 536 static inline int update_map_generation(MpegEncContext * s) | |
| 537 { | |
| 538 s->me_map_generation+= 1<<(ME_MAP_MV_BITS*2); | |
| 539 if(s->me_map_generation==0){ | |
| 540 s->me_map_generation= 1<<(ME_MAP_MV_BITS*2); | |
| 541 memset(s->me_map, 0, sizeof(uint32_t)*ME_MAP_SIZE); | |
| 542 } | |
| 543 return s->me_map_generation; | |
| 544 } | |
| 545 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
546 static int epzs_motion_search(MpegEncContext * s, |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
547 int *mx_ptr, int *my_ptr, |
| 455 | 548 int P[10][2], int pred_x, int pred_y, |
| 324 | 549 int xmin, int ymin, int xmax, int ymax, uint8_t * ref_picture) |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
550 { |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
551 int best[2]={0, 0}; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
552 int d, dmin; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
553 UINT8 *new_pic, *old_pic; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
554 const int pic_stride= s->linesize; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
555 const int pic_xy= (s->mb_y*pic_stride + s->mb_x)*16; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
556 UINT16 *mv_penalty= s->mv_penalty[s->f_code] + MAX_MV; // f_code of the prev frame |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
557 int quant= s->qscale; // qscale of the prev frame |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
558 const int shift= 1+s->quarter_sample; |
| 455 | 559 uint32_t *map= s->me_map; |
| 560 uint16_t *score_map= s->me_score_map; | |
| 561 int map_generation; | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
562 |
| 903 | 563 new_pic = s->new_picture.data[0] + pic_xy; |
| 324 | 564 old_pic = ref_picture + pic_xy; |
| 455 | 565 |
| 566 map_generation= update_map_generation(s); | |
| 567 | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
568 dmin = s->dsp.pix_abs16x16(new_pic, old_pic, pic_stride); |
| 455 | 569 map[0]= map_generation; |
| 570 score_map[0]= dmin; | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
571 |
| 280 | 572 /* first line */ |
| 455 | 573 if ((s->mb_y == 0 || s->first_slice_line)) { |
| 574 CHECK_MV(P_LEFT[0]>>shift, P_LEFT[1]>>shift) | |
| 575 CHECK_MV(P_LAST[0]>>shift, P_LAST[1]>>shift) | |
| 280 | 576 }else{ |
| 455 | 577 if(dmin<256 && ( P_LEFT[0] |P_LEFT[1] |
| 578 |P_TOP[0] |P_TOP[1] | |
| 579 |P_TOPRIGHT[0]|P_TOPRIGHT[1])==0){ | |
| 580 *mx_ptr= 0; | |
| 581 *my_ptr= 0; | |
| 582 s->skip_me=1; | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
583 return dmin; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
584 } |
| 455 | 585 CHECK_MV(P_MEDIAN[0]>>shift, P_MEDIAN[1]>>shift) |
| 586 if(dmin>256*2){ | |
| 587 CHECK_MV(P_LAST[0] >>shift, P_LAST[1] >>shift) | |
| 588 CHECK_MV(P_LEFT[0] >>shift, P_LEFT[1] >>shift) | |
| 589 CHECK_MV(P_TOP[0] >>shift, P_TOP[1] >>shift) | |
| 590 CHECK_MV(P_TOPRIGHT[0]>>shift, P_TOPRIGHT[1]>>shift) | |
| 591 } | |
| 592 } | |
| 593 if(dmin>256*4){ | |
| 594 CHECK_MV(P_LAST_RIGHT[0] >>shift, P_LAST_RIGHT[1] >>shift) | |
| 595 CHECK_MV(P_LAST_BOTTOM[0]>>shift, P_LAST_BOTTOM[1]>>shift) | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
596 } |
| 455 | 597 #if 0 //doest only slow things down |
| 598 if(dmin>512*3){ | |
| 599 int step; | |
| 600 dmin= score_map[0]; | |
| 601 best[0]= best[1]=0; | |
| 602 for(step=128; step>0; step>>=1){ | |
| 603 const int step2= step; | |
| 604 int y; | |
| 605 for(y=-step2+best[1]; y<=step2+best[1]; y+=step){ | |
| 606 int x; | |
| 607 if(y<ymin || y>ymax) continue; | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
608 |
| 455 | 609 for(x=-step2+best[0]; x<=step2+best[0]; x+=step){ |
| 610 if(x<xmin || x>xmax) continue; | |
| 611 if(x==best[0] && y==best[1]) continue; | |
| 612 CHECK_MV(x,y) | |
| 613 } | |
| 614 } | |
| 615 } | |
| 616 } | |
| 617 #endif | |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
618 //check(best[0],best[1],0, b0) |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
619 if(s->me_method==ME_EPZS) |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
620 dmin= small_diamond_search(s, best, dmin, new_pic, old_pic, pic_stride, |
| 455 | 621 pred_x, pred_y, mv_penalty, quant, xmin, ymin, xmax, ymax, |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
622 shift, map, score_map, map_generation, s->dsp.pix_abs16x16); |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
623 else |
| 455 | 624 dmin= cross_search(s, best, dmin, new_pic, old_pic, pic_stride, |
| 625 pred_x, pred_y, mv_penalty, quant, xmin, ymin, xmax, ymax, | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
626 shift, map, score_map, map_generation, s->dsp.pix_abs16x16); |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
627 //check(best[0],best[1],0, b1) |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
628 *mx_ptr= best[0]; |
| 280 | 629 *my_ptr= best[1]; |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
630 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
631 // printf("%d %d %d \n", best[0], best[1], dmin); |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
632 return dmin; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
633 } |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
634 |
| 294 | 635 static int epzs_motion_search4(MpegEncContext * s, int block, |
| 636 int *mx_ptr, int *my_ptr, | |
| 455 | 637 int P[10][2], int pred_x, int pred_y, |
| 324 | 638 int xmin, int ymin, int xmax, int ymax, uint8_t *ref_picture) |
| 294 | 639 { |
| 640 int best[2]={0, 0}; | |
| 641 int d, dmin; | |
| 642 UINT8 *new_pic, *old_pic; | |
| 643 const int pic_stride= s->linesize; | |
| 644 const int pic_xy= ((s->mb_y*2 + (block>>1))*pic_stride + s->mb_x*2 + (block&1))*8; | |
| 645 UINT16 *mv_penalty= s->mv_penalty[s->f_code] + MAX_MV; // f_code of the prev frame | |
| 646 int quant= s->qscale; // qscale of the prev frame | |
| 647 const int shift= 1+s->quarter_sample; | |
| 455 | 648 uint32_t *map= s->me_map; |
| 649 uint16_t *score_map= s->me_score_map; | |
| 650 int map_generation; | |
| 294 | 651 |
| 903 | 652 new_pic = s->new_picture.data[0] + pic_xy; |
| 324 | 653 old_pic = ref_picture + pic_xy; |
| 455 | 654 |
| 655 map_generation= update_map_generation(s); | |
| 294 | 656 |
| 455 | 657 dmin = 1000000; |
| 658 //printf("%d %d %d %d //",xmin, ymin, xmax, ymax); | |
| 294 | 659 /* first line */ |
| 455 | 660 if ((s->mb_y == 0 || s->first_slice_line) && block<2) { |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
661 CHECK_MV4(P_LEFT[0]>>shift, P_LEFT[1]>>shift) |
| 455 | 662 CHECK_MV4(P_LAST[0]>>shift, P_LAST[1]>>shift) |
| 663 CHECK_MV4(P_MV1[0]>>shift, P_MV1[1]>>shift) | |
| 294 | 664 }else{ |
| 455 | 665 CHECK_MV4(P_MV1[0]>>shift, P_MV1[1]>>shift) |
| 666 //FIXME try some early stop | |
| 667 if(dmin>64*2){ | |
| 668 CHECK_MV4(P_MEDIAN[0]>>shift, P_MEDIAN[1]>>shift) | |
| 669 CHECK_MV4(P_LEFT[0]>>shift, P_LEFT[1]>>shift) | |
| 670 CHECK_MV4(P_TOP[0]>>shift, P_TOP[1]>>shift) | |
| 671 CHECK_MV4(P_TOPRIGHT[0]>>shift, P_TOPRIGHT[1]>>shift) | |
| 672 CHECK_MV4(P_LAST[0]>>shift, P_LAST[1]>>shift) | |
| 294 | 673 } |
| 455 | 674 } |
| 675 if(dmin>64*4){ | |
| 676 CHECK_MV4(P_LAST_RIGHT[0]>>shift, P_LAST_RIGHT[1]>>shift) | |
| 677 CHECK_MV4(P_LAST_BOTTOM[0]>>shift, P_LAST_BOTTOM[1]>>shift) | |
| 294 | 678 } |
| 679 | |
| 455 | 680 if(s->me_method==ME_EPZS) |
| 681 dmin= small_diamond_search(s, best, dmin, new_pic, old_pic, pic_stride, | |
| 682 pred_x, pred_y, mv_penalty, quant, xmin, ymin, xmax, ymax, | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
683 shift, map, score_map, map_generation, s->dsp.pix_abs8x8); |
| 455 | 684 else |
| 685 dmin= cross_search(s, best, dmin, new_pic, old_pic, pic_stride, | |
| 686 pred_x, pred_y, mv_penalty, quant, xmin, ymin, xmax, ymax, | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
687 shift, map, score_map, map_generation, s->dsp.pix_abs8x8); |
| 455 | 688 |
| 294 | 689 *mx_ptr= best[0]; |
| 690 *my_ptr= best[1]; | |
| 691 | |
| 692 // printf("%d %d %d \n", best[0], best[1], dmin); | |
| 693 return dmin; | |
| 694 } | |
| 695 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
696 #define CHECK_HALF_MV(suffix, x, y) \ |
| 455 | 697 {\ |
| 698 d= pix_abs_ ## suffix(pix, ptr+((x)>>1), s->linesize);\ | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
699 d += (mv_penalty[pen_x + x] + mv_penalty[pen_y + y])*quant;\ |
| 455 | 700 COPY3_IF_LT(dminh, d, dx, x, dy, y)\ |
| 701 } | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
702 |
| 294 | 703 |
| 0 | 704 /* The idea would be to make half pel ME after Inter/Intra decision to |
| 705 save time. */ | |
| 327 | 706 static inline int halfpel_motion_search(MpegEncContext * s, |
| 0 | 707 int *mx_ptr, int *my_ptr, int dmin, |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
708 int xmin, int ymin, int xmax, int ymax, |
| 455 | 709 int pred_x, int pred_y, uint8_t *ref_picture, |
| 710 op_pixels_abs_func pix_abs_x2, | |
| 711 op_pixels_abs_func pix_abs_y2, op_pixels_abs_func pix_abs_xy2, int n) | |
| 0 | 712 { |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
713 UINT16 *mv_penalty= s->mv_penalty[s->f_code] + MAX_MV; // f_code of the prev frame |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
714 const int quant= s->qscale; |
| 455 | 715 int mx, my, xx, yy, dminh; |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
716 UINT8 *pix, *ptr; |
| 0 | 717 |
| 455 | 718 if(s->skip_me){ |
| 719 *mx_ptr = 0; | |
| 720 *my_ptr = 0; | |
| 721 return dmin; | |
| 863 | 722 } |
| 455 | 723 |
| 724 xx = 16 * s->mb_x + 8*(n&1); | |
| 725 yy = 16 * s->mb_y + 8*(n>>1); | |
| 903 | 726 pix = s->new_picture.data[0] + (yy * s->linesize) + xx; |
| 455 | 727 |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
728 mx = *mx_ptr; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
729 my = *my_ptr; |
| 455 | 730 ptr = ref_picture + ((yy + my) * s->linesize) + (xx + mx); |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
731 |
| 0 | 732 dminh = dmin; |
| 733 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
734 if (mx > xmin && mx < xmax && |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
735 my > ymin && my < ymax) { |
| 455 | 736 int dx=0, dy=0; |
| 737 int d, pen_x, pen_y; | |
| 0 | 738 |
| 455 | 739 mx<<=1; |
| 740 my<<=1; | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
741 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
742 pen_x= pred_x + mx; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
743 pen_y= pred_y + my; |
| 0 | 744 |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
745 ptr-= s->linesize; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
746 CHECK_HALF_MV(xy2, -1, -1) |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
747 CHECK_HALF_MV(y2 , 0, -1) |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
748 CHECK_HALF_MV(xy2, +1, -1) |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
749 |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
750 ptr+= s->linesize; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
751 CHECK_HALF_MV(x2 , -1, 0) |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
752 CHECK_HALF_MV(x2 , +1, 0) |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
753 CHECK_HALF_MV(xy2, -1, +1) |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
754 CHECK_HALF_MV(y2 , 0, +1) |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
755 CHECK_HALF_MV(xy2, +1, +1) |
| 294 | 756 |
| 455 | 757 mx+=dx; |
| 758 my+=dy; | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
759 }else{ |
| 455 | 760 mx<<=1; |
| 761 my<<=1; | |
| 0 | 762 } |
| 763 | |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
764 *mx_ptr = mx; |
|
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
765 *my_ptr = my; |
| 327 | 766 return dminh; |
| 0 | 767 } |
| 768 | |
| 455 | 769 static inline int fast_halfpel_motion_search(MpegEncContext * s, |
| 294 | 770 int *mx_ptr, int *my_ptr, int dmin, |
| 771 int xmin, int ymin, int xmax, int ymax, | |
| 455 | 772 int pred_x, int pred_y, uint8_t *ref_picture, |
| 773 op_pixels_abs_func pix_abs_x2, | |
| 774 op_pixels_abs_func pix_abs_y2, op_pixels_abs_func pix_abs_xy2, int n) | |
| 294 | 775 { |
| 776 UINT16 *mv_penalty= s->mv_penalty[s->f_code] + MAX_MV; // f_code of the prev frame | |
| 455 | 777 uint16_t *score_map= s->me_score_map; |
| 294 | 778 const int quant= s->qscale; |
| 455 | 779 int mx, my, xx, yy, dminh; |
| 294 | 780 UINT8 *pix, *ptr; |
| 781 | |
| 455 | 782 if(s->skip_me){ |
| 783 // printf("S"); | |
| 784 *mx_ptr = 0; | |
| 785 *my_ptr = 0; | |
| 786 return dmin; | |
| 787 } | |
| 788 // printf("N"); | |
| 789 | |
| 790 xx = 16 * s->mb_x + 8*(n&1); | |
| 791 yy = 16 * s->mb_y + 8*(n>>1); | |
| 903 | 792 pix = s->new_picture.data[0] + (yy * s->linesize) + xx; |
| 455 | 793 |
| 294 | 794 mx = *mx_ptr; |
| 795 my = *my_ptr; | |
| 455 | 796 ptr = ref_picture + ((yy + my) * s->linesize) + (xx + mx); |
| 797 | |
| 294 | 798 dminh = dmin; |
| 799 | |
| 800 if (mx > xmin && mx < xmax && | |
| 801 my > ymin && my < ymax) { | |
| 455 | 802 int dx=0, dy=0; |
| 803 int d, pen_x, pen_y; | |
| 804 const int index= (my<<ME_MAP_SHIFT) + mx; | |
| 805 const int t= score_map[(index-(1<<ME_MAP_SHIFT))&(ME_MAP_SIZE-1)]; | |
| 806 const int l= score_map[(index- 1 )&(ME_MAP_SIZE-1)]; | |
| 807 const int r= score_map[(index+ 1 )&(ME_MAP_SIZE-1)]; | |
| 808 const int b= score_map[(index+(1<<ME_MAP_SHIFT))&(ME_MAP_SIZE-1)]; | |
| 809 mx<<=1; | |
| 810 my<<=1; | |
| 294 | 811 |
| 812 | |
| 813 pen_x= pred_x + mx; | |
| 814 pen_y= pred_y + my; | |
| 815 | |
| 816 ptr-= s->linesize; | |
| 455 | 817 if(t<=b){ |
| 818 CHECK_HALF_MV(y2 , 0, -1) | |
| 819 if(l<=r){ | |
| 820 CHECK_HALF_MV(xy2, -1, -1) | |
| 821 if(t+r<=b+l){ | |
| 822 CHECK_HALF_MV(xy2, +1, -1) | |
| 823 ptr+= s->linesize; | |
| 824 }else{ | |
| 825 ptr+= s->linesize; | |
| 826 CHECK_HALF_MV(xy2, -1, +1) | |
| 827 } | |
| 828 CHECK_HALF_MV(x2 , -1, 0) | |
| 829 }else{ | |
| 830 CHECK_HALF_MV(xy2, +1, -1) | |
| 831 if(t+l<=b+r){ | |
| 832 CHECK_HALF_MV(xy2, -1, -1) | |
| 833 ptr+= s->linesize; | |
| 834 }else{ | |
| 835 ptr+= s->linesize; | |
| 836 CHECK_HALF_MV(xy2, +1, +1) | |
| 837 } | |
| 838 CHECK_HALF_MV(x2 , +1, 0) | |
| 839 } | |
| 840 }else{ | |
| 841 if(l<=r){ | |
| 842 if(t+l<=b+r){ | |
| 843 CHECK_HALF_MV(xy2, -1, -1) | |
| 844 ptr+= s->linesize; | |
| 845 }else{ | |
| 846 ptr+= s->linesize; | |
| 847 CHECK_HALF_MV(xy2, +1, +1) | |
| 848 } | |
| 849 CHECK_HALF_MV(x2 , -1, 0) | |
| 850 CHECK_HALF_MV(xy2, -1, +1) | |
| 851 }else{ | |
| 852 if(t+r<=b+l){ | |
| 853 CHECK_HALF_MV(xy2, +1, -1) | |
| 854 ptr+= s->linesize; | |
| 855 }else{ | |
| 856 ptr+= s->linesize; | |
| 857 CHECK_HALF_MV(xy2, -1, +1) | |
| 858 } | |
| 859 CHECK_HALF_MV(x2 , +1, 0) | |
| 860 CHECK_HALF_MV(xy2, +1, +1) | |
| 861 } | |
| 862 CHECK_HALF_MV(y2 , 0, +1) | |
| 863 } | |
| 864 mx+=dx; | |
| 865 my+=dy; | |
| 294 | 866 |
| 867 }else{ | |
| 455 | 868 mx<<=1; |
| 869 my<<=1; | |
| 294 | 870 } |
| 871 | |
| 872 *mx_ptr = mx; | |
| 873 *my_ptr = my; | |
| 455 | 874 return dminh; |
| 294 | 875 } |
| 876 | |
| 455 | 877 static inline void set_p_mv_tables(MpegEncContext * s, int mx, int my, int mv4) |
| 294 | 878 { |
| 324 | 879 const int xy= s->mb_x + 1 + (s->mb_y + 1)*(s->mb_width + 2); |
| 294 | 880 |
| 324 | 881 s->p_mv_table[xy][0] = mx; |
| 882 s->p_mv_table[xy][1] = my; | |
| 294 | 883 |
| 884 /* has allready been set to the 4 MV if 4MV is done */ | |
| 455 | 885 if(mv4){ |
| 294 | 886 int mot_xy= s->block_index[0]; |
| 887 | |
| 888 s->motion_val[mot_xy ][0]= mx; | |
| 889 s->motion_val[mot_xy ][1]= my; | |
| 890 s->motion_val[mot_xy+1][0]= mx; | |
| 891 s->motion_val[mot_xy+1][1]= my; | |
| 892 | |
| 893 mot_xy += s->block_wrap[0]; | |
| 894 s->motion_val[mot_xy ][0]= mx; | |
| 895 s->motion_val[mot_xy ][1]= my; | |
| 896 s->motion_val[mot_xy+1][0]= mx; | |
| 897 s->motion_val[mot_xy+1][1]= my; | |
| 898 } | |
| 899 } | |
| 900 | |
| 324 | 901 static inline void get_limits(MpegEncContext *s, int *range, int *xmin, int *ymin, int *xmax, int *ymax, int f_code) |
| 902 { | |
| 903 *range = 8 * (1 << (f_code - 1)); | |
| 904 /* XXX: temporary kludge to avoid overflow for msmpeg4 */ | |
| 905 if (s->out_format == FMT_H263 && !s->h263_msmpeg4) | |
| 906 *range *= 2; | |
| 0 | 907 |
| 324 | 908 if (s->unrestricted_mv) { |
| 909 *xmin = -16; | |
| 910 *ymin = -16; | |
| 911 if (s->h263_plus) | |
| 912 *range *= 2; | |
| 913 if(s->avctx==NULL || s->avctx->codec->id!=CODEC_ID_MPEG4){ | |
| 914 *xmax = s->mb_width*16; | |
| 915 *ymax = s->mb_height*16; | |
| 916 }else { | |
| 917 /* XXX: dunno if this is correct but ffmpeg4 decoder wont like it otherwise | |
| 918 (cuz the drawn edge isnt large enough))*/ | |
| 919 *xmax = s->width; | |
| 920 *ymax = s->height; | |
| 921 } | |
| 922 } else { | |
| 923 *xmin = 0; | |
| 924 *ymin = 0; | |
| 925 *xmax = s->mb_width*16 - 16; | |
| 926 *ymax = s->mb_height*16 - 16; | |
| 927 } | |
| 928 } | |
| 929 | |
| 455 | 930 static inline int mv4_search(MpegEncContext *s, int xmin, int ymin, int xmax, int ymax, int mx, int my, int shift) |
| 931 { | |
| 932 int block; | |
| 933 int P[10][2]; | |
| 903 | 934 uint8_t *ref_picture= s->last_picture.data[0]; |
| 455 | 935 int dmin_sum=0; |
| 936 | |
| 937 for(block=0; block<4; block++){ | |
| 938 int mx4, my4; | |
| 939 int pred_x4, pred_y4; | |
| 940 int dmin4; | |
| 941 static const int off[4]= {2, 1, 1, -1}; | |
| 942 const int mot_stride = s->block_wrap[0]; | |
| 943 const int mot_xy = s->block_index[block]; | |
| 944 // const int block_x= (block&1); | |
| 945 // const int block_y= (block>>1); | |
| 946 #if 1 // this saves us a bit of cliping work and shouldnt affect compression in a negative way | |
| 947 const int rel_xmin4= xmin; | |
| 948 const int rel_xmax4= xmax; | |
| 949 const int rel_ymin4= ymin; | |
| 950 const int rel_ymax4= ymax; | |
| 951 #else | |
| 952 const int rel_xmin4= xmin - block_x*8; | |
| 953 const int rel_xmax4= xmax - block_x*8 + 8; | |
| 954 const int rel_ymin4= ymin - block_y*8; | |
| 955 const int rel_ymax4= ymax - block_y*8 + 8; | |
| 956 #endif | |
| 957 P_LAST[0] = s->motion_val[mot_xy ][0]; | |
| 958 P_LAST[1] = s->motion_val[mot_xy ][1]; | |
| 959 P_LEFT[0] = s->motion_val[mot_xy - 1][0]; | |
| 960 P_LEFT[1] = s->motion_val[mot_xy - 1][1]; | |
| 961 P_LAST_RIGHT[0] = s->motion_val[mot_xy + 1][0]; | |
| 962 P_LAST_RIGHT[1] = s->motion_val[mot_xy + 1][1]; | |
| 963 P_LAST_BOTTOM[0]= s->motion_val[mot_xy + 1*mot_stride][0]; | |
| 964 P_LAST_BOTTOM[1]= s->motion_val[mot_xy + 1*mot_stride][1]; | |
| 965 | |
| 966 if(P_LEFT[0] > (rel_xmax4<<shift)) P_LEFT[0] = (rel_xmax4<<shift); | |
| 967 if(P_LAST_RIGHT[0] < (rel_xmin4<<shift)) P_LAST_RIGHT[0] = (rel_xmin4<<shift); | |
| 968 if(P_LAST_BOTTOM[1]< (rel_ymin4<<shift)) P_LAST_BOTTOM[1]= (rel_ymin4<<shift); | |
| 969 | |
| 970 /* special case for first line */ | |
| 971 if ((s->mb_y == 0 || s->first_slice_line) && block<2) { | |
| 972 pred_x4= P_LEFT[0]; | |
| 973 pred_y4= P_LEFT[1]; | |
| 974 } else { | |
| 975 P_TOP[0] = s->motion_val[mot_xy - mot_stride ][0]; | |
| 976 P_TOP[1] = s->motion_val[mot_xy - mot_stride ][1]; | |
| 977 P_TOPRIGHT[0] = s->motion_val[mot_xy - mot_stride + off[block]][0]; | |
| 978 P_TOPRIGHT[1] = s->motion_val[mot_xy - mot_stride + off[block]][1]; | |
| 979 if(P_TOP[1] > (rel_ymax4<<shift)) P_TOP[1] = (rel_ymax4<<shift); | |
| 980 if(P_TOPRIGHT[0] < (rel_xmin4<<shift)) P_TOPRIGHT[0]= (rel_xmin4<<shift); | |
| 981 if(P_TOPRIGHT[0] > (rel_xmax4<<shift)) P_TOPRIGHT[0]= (rel_xmax4<<shift); | |
| 982 if(P_TOPRIGHT[1] > (rel_ymax4<<shift)) P_TOPRIGHT[1]= (rel_ymax4<<shift); | |
| 983 | |
| 984 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); | |
| 985 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
| 986 | |
| 987 if(s->out_format == FMT_H263){ | |
| 988 pred_x4 = P_MEDIAN[0]; | |
| 989 pred_y4 = P_MEDIAN[1]; | |
| 990 }else { /* mpeg1 at least */ | |
| 991 pred_x4= P_LEFT[0]; | |
| 992 pred_y4= P_LEFT[1]; | |
| 993 } | |
| 994 } | |
| 995 P_MV1[0]= mx; | |
| 996 P_MV1[1]= my; | |
| 997 | |
| 998 dmin4 = epzs_motion_search4(s, block, &mx4, &my4, P, pred_x4, pred_y4, rel_xmin4, rel_ymin4, rel_xmax4, rel_ymax4, ref_picture); | |
| 999 | |
| 1000 dmin4= fast_halfpel_motion_search(s, &mx4, &my4, dmin4, rel_xmin4, rel_ymin4, rel_xmax4, rel_ymax4, | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1001 pred_x4, pred_y4, ref_picture, s->dsp.pix_abs8x8_x2, |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1002 s->dsp.pix_abs8x8_y2, s->dsp.pix_abs8x8_xy2, block); |
| 455 | 1003 |
| 1004 s->motion_val[ s->block_index[block] ][0]= mx4; | |
| 1005 s->motion_val[ s->block_index[block] ][1]= my4; | |
| 1006 dmin_sum+= dmin4; | |
| 1007 } | |
| 1008 return dmin_sum; | |
| 1009 } | |
| 1010 | |
| 324 | 1011 void ff_estimate_p_frame_motion(MpegEncContext * s, |
| 1012 int mb_x, int mb_y) | |
| 0 | 1013 { |
| 1014 UINT8 *pix, *ppix; | |
| 1015 int sum, varc, vard, mx, my, range, dmin, xx, yy; | |
| 1016 int xmin, ymin, xmax, ymax; | |
| 280 | 1017 int rel_xmin, rel_ymin, rel_xmax, rel_ymax; |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
1018 int pred_x=0, pred_y=0; |
| 455 | 1019 int P[10][2]; |
| 280 | 1020 const int shift= 1+s->quarter_sample; |
| 294 | 1021 int mb_type=0; |
| 903 | 1022 uint8_t *ref_picture= s->last_picture.data[0]; |
| 1023 Picture * const pic= &s->current_picture; | |
| 0 | 1024 |
| 324 | 1025 get_limits(s, &range, &xmin, &ymin, &xmax, &ymax, s->f_code); |
| 455 | 1026 rel_xmin= xmin - mb_x*16; |
| 1027 rel_xmax= xmax - mb_x*16; | |
| 1028 rel_ymin= ymin - mb_y*16; | |
| 1029 rel_ymax= ymax - mb_y*16; | |
| 1030 s->skip_me=0; | |
| 324 | 1031 |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1032 switch(s->me_method) { |
| 0 | 1033 case ME_ZERO: |
| 1034 default: | |
| 1035 no_motion_search(s, &mx, &my); | |
| 455 | 1036 mx-= mb_x*16; |
| 1037 my-= mb_y*16; | |
| 0 | 1038 dmin = 0; |
| 1039 break; | |
| 1040 case ME_FULL: | |
| 324 | 1041 dmin = full_motion_search(s, &mx, &my, range, xmin, ymin, xmax, ymax, ref_picture); |
| 455 | 1042 mx-= mb_x*16; |
| 1043 my-= mb_y*16; | |
| 0 | 1044 break; |
| 1045 case ME_LOG: | |
| 324 | 1046 dmin = log_motion_search(s, &mx, &my, range / 2, xmin, ymin, xmax, ymax, ref_picture); |
| 455 | 1047 mx-= mb_x*16; |
| 1048 my-= mb_y*16; | |
| 0 | 1049 break; |
| 1050 case ME_PHODS: | |
| 324 | 1051 dmin = phods_motion_search(s, &mx, &my, range / 2, xmin, ymin, xmax, ymax, ref_picture); |
| 455 | 1052 mx-= mb_x*16; |
| 1053 my-= mb_y*16; | |
| 0 | 1054 break; |
| 288 | 1055 case ME_X1: |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
1056 case ME_EPZS: |
| 288 | 1057 { |
| 294 | 1058 const int mot_stride = s->block_wrap[0]; |
| 1059 const int mot_xy = s->block_index[0]; | |
| 288 | 1060 |
| 455 | 1061 P_LAST[0] = s->motion_val[mot_xy ][0]; |
| 1062 P_LAST[1] = s->motion_val[mot_xy ][1]; | |
| 1063 P_LEFT[0] = s->motion_val[mot_xy - 1][0]; | |
| 1064 P_LEFT[1] = s->motion_val[mot_xy - 1][1]; | |
| 1065 P_LAST_RIGHT[0] = s->motion_val[mot_xy + 2][0]; | |
| 1066 P_LAST_RIGHT[1] = s->motion_val[mot_xy + 2][1]; | |
| 1067 P_LAST_BOTTOM[0]= s->motion_val[mot_xy + 2*mot_stride][0]; | |
| 1068 P_LAST_BOTTOM[1]= s->motion_val[mot_xy + 2*mot_stride][1]; | |
| 288 | 1069 |
| 455 | 1070 if(P_LEFT[0] > (rel_xmax<<shift)) P_LEFT[0] = (rel_xmax<<shift); |
| 1071 if(P_LAST_RIGHT[0] < (rel_xmin<<shift)) P_LAST_RIGHT[0] = (rel_xmin<<shift); | |
| 1072 if(P_LAST_BOTTOM[1]< (rel_ymin<<shift)) P_LAST_BOTTOM[1]= (rel_ymin<<shift); | |
| 280 | 1073 |
| 1074 /* special case for first line */ | |
| 455 | 1075 if ((mb_y == 0 || s->first_slice_line)) { |
| 1076 pred_x= P_LEFT[0]; | |
| 1077 pred_y= P_LEFT[1]; | |
| 280 | 1078 } else { |
| 455 | 1079 P_TOP[0] = s->motion_val[mot_xy - mot_stride ][0]; |
| 1080 P_TOP[1] = s->motion_val[mot_xy - mot_stride ][1]; | |
| 1081 P_TOPRIGHT[0] = s->motion_val[mot_xy - mot_stride + 2][0]; | |
| 1082 P_TOPRIGHT[1] = s->motion_val[mot_xy - mot_stride + 2][1]; | |
| 1083 if(P_TOP[1] > (rel_ymax<<shift)) P_TOP[1] = (rel_ymax<<shift); | |
| 1084 if(P_TOPRIGHT[0] < (rel_xmin<<shift)) P_TOPRIGHT[0]= (rel_xmin<<shift); | |
| 1085 if(P_TOPRIGHT[1] > (rel_ymax<<shift)) P_TOPRIGHT[1]= (rel_ymax<<shift); | |
| 280 | 1086 |
| 455 | 1087 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); |
| 1088 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
| 1089 | |
| 1090 if(s->out_format == FMT_H263){ | |
| 1091 pred_x = P_MEDIAN[0]; | |
| 1092 pred_y = P_MEDIAN[1]; | |
| 1093 }else { /* mpeg1 at least */ | |
| 1094 pred_x= P_LEFT[0]; | |
| 1095 pred_y= P_LEFT[1]; | |
| 1096 } | |
| 288 | 1097 } |
| 280 | 1098 } |
| 324 | 1099 dmin = epzs_motion_search(s, &mx, &my, P, pred_x, pred_y, rel_xmin, rel_ymin, rel_xmax, rel_ymax, ref_picture); |
|
281
1fc96b02142e
mpeg4 aspect_ratio_info in AVCodecContext (requested by alex)
michaelni
parents:
280
diff
changeset
|
1100 |
|
277
5cb2978e701f
new motion estimation (epzs) not complete yet but allready pretty good :)
michaelni
parents:
275
diff
changeset
|
1101 break; |
| 0 | 1102 } |
| 1103 | |
| 1104 /* intra / predictive decision */ | |
| 1105 xx = mb_x * 16; | |
| 1106 yy = mb_y * 16; | |
| 1107 | |
| 903 | 1108 pix = s->new_picture.data[0] + (yy * s->linesize) + xx; |
| 455 | 1109 /* At this point (mx,my) are full-pell and the relative displacement */ |
| 1110 ppix = ref_picture + ((yy+my) * s->linesize) + (xx+mx); | |
|
289
648e9245546d
seems the old intra/inter decission is slightly better with a threshold, than the new one
michaelni
parents:
288
diff
changeset
|
1111 |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1112 sum = s->dsp.pix_sum(pix, s->linesize); |
| 455 | 1113 |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1114 varc = (s->dsp.pix_norm1(pix, s->linesize) - (((unsigned)(sum*sum))>>8) + 500 + 128)>>8; |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1115 // FIXME: MMX OPTIMIZE |
| 884 | 1116 vard = (s->dsp.pix_norm(pix, ppix, s->linesize)+128)>>8; |
| 608 | 1117 |
| 455 | 1118 //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); |
| 903 | 1119 pic->mb_var [s->mb_width * mb_y + mb_x] = varc; |
| 1120 pic->mc_mb_var[s->mb_width * mb_y + mb_x] = vard; | |
| 1121 pic->mb_mean [s->mb_width * mb_y + mb_x] = (sum+128)>>8; | |
| 1122 pic->mb_var_sum += varc; | |
| 1123 pic->mc_mb_var_sum += vard; | |
| 455 | 1124 //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
|
1125 |
| 0 | 1126 #if 0 |
|
233
3f5b72726118
- More work on preliminary bit rate control, just to be able to get an
pulento
parents:
232
diff
changeset
|
1127 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
|
1128 varc, s->avg_mb_var, sum, vard, mx - xx, my - yy); |
| 0 | 1129 #endif |
| 294 | 1130 if(s->flags&CODEC_FLAG_HQ){ |
| 608 | 1131 if (vard <= 64 || vard < varc) |
| 1132 s->scene_change_score+= ff_sqrt(vard) - ff_sqrt(varc); | |
| 1133 else | |
| 1134 s->scene_change_score+= 20; | |
| 1135 | |
| 294 | 1136 if (vard*2 + 200 > varc) |
| 1137 mb_type|= MB_TYPE_INTRA; | |
| 1138 if (varc*2 + 200 > vard){ | |
| 1139 mb_type|= MB_TYPE_INTER; | |
| 455 | 1140 if(s->me_method >= ME_EPZS) |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1141 fast_halfpel_motion_search(s, &mx, &my, dmin, rel_xmin, rel_ymin, rel_xmax, rel_ymax, |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1142 pred_x, pred_y, ref_picture, s->dsp.pix_abs16x16_x2, |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1143 s->dsp.pix_abs16x16_y2, s->dsp.pix_abs16x16_xy2, 0); |
| 455 | 1144 else |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1145 halfpel_motion_search( s, &mx, &my, dmin, rel_xmin, rel_ymin, rel_xmax, rel_ymax, |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1146 pred_x, pred_y, ref_picture, s->dsp.pix_abs16x16_x2, |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1147 s->dsp.pix_abs16x16_y2, s->dsp.pix_abs16x16_xy2, 0); |
| 304 | 1148 }else{ |
| 455 | 1149 mx <<=1; |
| 1150 my <<=1; | |
| 0 | 1151 } |
| 455 | 1152 if((s->flags&CODEC_FLAG_4MV) |
| 1153 && !s->skip_me && varc>50 && vard>10){ | |
| 1154 mv4_search(s, rel_xmin, rel_ymin, rel_xmax, rel_ymax, mx, my, shift); | |
| 1155 mb_type|=MB_TYPE_INTER4V; | |
| 1156 | |
| 1157 set_p_mv_tables(s, mx, my, 0); | |
| 1158 }else | |
| 1159 set_p_mv_tables(s, mx, my, 1); | |
| 294 | 1160 }else{ |
| 1161 if (vard <= 64 || vard < varc) { | |
| 608 | 1162 s->scene_change_score+= ff_sqrt(vard) - ff_sqrt(varc); |
| 294 | 1163 mb_type|= MB_TYPE_INTER; |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1164 if (s->me_method != ME_ZERO) { |
| 455 | 1165 if(s->me_method >= ME_EPZS) |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1166 dmin= fast_halfpel_motion_search(s, &mx, &my, dmin, rel_xmin, rel_ymin, rel_xmax, rel_ymax, |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1167 pred_x, pred_y, ref_picture, s->dsp.pix_abs16x16_x2, s->dsp.pix_abs16x16_y2, |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1168 s->dsp.pix_abs16x16_xy2, 0); |
| 455 | 1169 else |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1170 dmin= halfpel_motion_search(s, &mx, &my, dmin, rel_xmin, rel_ymin, rel_xmax, rel_ymax, |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1171 pred_x, pred_y, ref_picture, s->dsp.pix_abs16x16_x2, s->dsp.pix_abs16x16_y2, |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1172 s->dsp.pix_abs16x16_xy2, 0); |
| 455 | 1173 if((s->flags&CODEC_FLAG_4MV) |
| 1174 && !s->skip_me && varc>50 && vard>10){ | |
| 1175 int dmin4= mv4_search(s, rel_xmin, rel_ymin, rel_xmax, rel_ymax, mx, my, shift); | |
| 1176 if(dmin4 + 128 <dmin) | |
| 1177 mb_type= MB_TYPE_INTER4V; | |
| 1178 } | |
| 1179 set_p_mv_tables(s, mx, my, mb_type!=MB_TYPE_INTER4V); | |
| 1180 | |
| 294 | 1181 } else { |
| 455 | 1182 mx <<=1; |
| 1183 my <<=1; | |
| 294 | 1184 } |
|
320
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1185 #if 0 |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1186 if (vard < 10) { |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1187 skip++; |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1188 fprintf(stderr,"\nEarly skip: %d vard: %2d varc: %5d dmin: %d", |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1189 skip, vard, varc, dmin); |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1190 } |
|
cda7d0857baf
- ME setting moved to AVCodecContext/MpegEncContext, no longer a global.
pulento
parents:
304
diff
changeset
|
1191 #endif |
| 294 | 1192 }else{ |
| 608 | 1193 s->scene_change_score+= 20; |
| 294 | 1194 mb_type|= MB_TYPE_INTRA; |
| 455 | 1195 mx = 0; |
| 1196 my = 0; | |
| 294 | 1197 } |
| 1198 } | |
| 284 | 1199 |
| 294 | 1200 s->mb_type[mb_y*s->mb_width + mb_x]= mb_type; |
| 0 | 1201 } |
| 1202 | |
| 327 | 1203 int ff_estimate_motion_b(MpegEncContext * s, |
| 324 | 1204 int mb_x, int mb_y, int16_t (*mv_table)[2], uint8_t *ref_picture, int f_code) |
| 0 | 1205 { |
| 327 | 1206 int mx, my, range, dmin; |
| 324 | 1207 int xmin, ymin, xmax, ymax; |
| 1208 int rel_xmin, rel_ymin, rel_xmax, rel_ymax; | |
| 1209 int pred_x=0, pred_y=0; | |
| 455 | 1210 int P[10][2]; |
| 324 | 1211 const int shift= 1+s->quarter_sample; |
| 1212 const int mot_stride = s->mb_width + 2; | |
| 1213 const int mot_xy = (mb_y + 1)*mot_stride + mb_x + 1; | |
| 1214 | |
| 1215 get_limits(s, &range, &xmin, &ymin, &xmax, &ymax, f_code); | |
| 455 | 1216 rel_xmin= xmin - mb_x*16; |
| 1217 rel_xmax= xmax - mb_x*16; | |
| 1218 rel_ymin= ymin - mb_y*16; | |
| 1219 rel_ymax= ymax - mb_y*16; | |
| 324 | 1220 |
| 1221 switch(s->me_method) { | |
| 1222 case ME_ZERO: | |
| 1223 default: | |
| 1224 no_motion_search(s, &mx, &my); | |
| 1225 dmin = 0; | |
| 455 | 1226 mx-= mb_x*16; |
| 1227 my-= mb_y*16; | |
| 324 | 1228 break; |
| 1229 case ME_FULL: | |
| 1230 dmin = full_motion_search(s, &mx, &my, range, xmin, ymin, xmax, ymax, ref_picture); | |
| 455 | 1231 mx-= mb_x*16; |
| 1232 my-= mb_y*16; | |
| 324 | 1233 break; |
| 1234 case ME_LOG: | |
| 1235 dmin = log_motion_search(s, &mx, &my, range / 2, xmin, ymin, xmax, ymax, ref_picture); | |
| 455 | 1236 mx-= mb_x*16; |
| 1237 my-= mb_y*16; | |
| 324 | 1238 break; |
| 1239 case ME_PHODS: | |
| 1240 dmin = phods_motion_search(s, &mx, &my, range / 2, xmin, ymin, xmax, ymax, ref_picture); | |
| 455 | 1241 mx-= mb_x*16; |
| 1242 my-= mb_y*16; | |
| 324 | 1243 break; |
| 1244 case ME_X1: | |
| 1245 case ME_EPZS: | |
| 1246 { | |
| 0 | 1247 |
| 455 | 1248 P_LAST[0] = mv_table[mot_xy ][0]; |
| 1249 P_LAST[1] = mv_table[mot_xy ][1]; | |
| 1250 P_LEFT[0] = mv_table[mot_xy - 1][0]; | |
| 1251 P_LEFT[1] = mv_table[mot_xy - 1][1]; | |
| 1252 P_LAST_RIGHT[0] = mv_table[mot_xy + 1][0]; | |
| 1253 P_LAST_RIGHT[1] = mv_table[mot_xy + 1][1]; | |
| 1254 P_LAST_BOTTOM[0] = mv_table[mot_xy + mot_stride][0]; | |
| 1255 P_LAST_BOTTOM[1] = mv_table[mot_xy + mot_stride][1]; | |
| 324 | 1256 |
| 455 | 1257 if(P_LEFT[0] > (rel_xmax<<shift)) P_LEFT[0] = (rel_xmax<<shift); |
| 1258 if(P_LAST_RIGHT[0] < (rel_xmin<<shift)) P_LAST_RIGHT[0] = (rel_xmin<<shift); | |
| 1259 if(P_LAST_BOTTOM[1]< (rel_ymin<<shift)) P_LAST_BOTTOM[1]= (rel_ymin<<shift); | |
| 324 | 1260 |
| 1261 /* special case for first line */ | |
| 455 | 1262 if ((mb_y == 0 || s->first_slice_line)) { |
| 324 | 1263 } else { |
| 455 | 1264 P_TOP[0] = mv_table[mot_xy - mot_stride ][0]; |
| 1265 P_TOP[1] = mv_table[mot_xy - mot_stride ][1]; | |
| 1266 P_TOPRIGHT[0] = mv_table[mot_xy - mot_stride + 1 ][0]; | |
| 1267 P_TOPRIGHT[1] = mv_table[mot_xy - mot_stride + 1 ][1]; | |
| 1268 if(P_TOP[1] > (rel_ymax<<shift)) P_TOP[1]= (rel_ymax<<shift); | |
| 1269 if(P_TOPRIGHT[0] < (rel_xmin<<shift)) P_TOPRIGHT[0]= (rel_xmin<<shift); | |
| 1270 if(P_TOPRIGHT[1] > (rel_ymax<<shift)) P_TOPRIGHT[1]= (rel_ymax<<shift); | |
| 324 | 1271 |
| 455 | 1272 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); |
| 1273 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
| 324 | 1274 } |
| 455 | 1275 pred_x= P_LEFT[0]; |
| 1276 pred_y= P_LEFT[1]; | |
| 324 | 1277 } |
| 1278 dmin = epzs_motion_search(s, &mx, &my, P, pred_x, pred_y, rel_xmin, rel_ymin, rel_xmax, rel_ymax, ref_picture); | |
| 1279 | |
| 1280 break; | |
| 1281 } | |
| 1282 | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1283 dmin= fast_halfpel_motion_search(s, &mx, &my, dmin, rel_xmin, rel_ymin, rel_xmax, rel_ymax, |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1284 pred_x, pred_y, ref_picture, s->dsp.pix_abs16x16_x2, s->dsp.pix_abs16x16_y2, |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1285 s->dsp.pix_abs16x16_xy2, 0); |
| 455 | 1286 //printf("%d %d %d %d//", s->mb_x, s->mb_y, mx, my); |
| 324 | 1287 // s->mb_type[mb_y*s->mb_width + mb_x]= mb_type; |
| 1288 mv_table[mot_xy][0]= mx; | |
| 1289 mv_table[mot_xy][1]= my; | |
| 327 | 1290 return dmin; |
| 324 | 1291 } |
| 1292 | |
| 1293 | |
| 327 | 1294 static inline int check_bidir_mv(MpegEncContext * s, |
| 1295 int mb_x, int mb_y, | |
| 1296 int motion_fx, int motion_fy, | |
| 1297 int motion_bx, int motion_by, | |
| 1298 int pred_fx, int pred_fy, | |
| 1299 int pred_bx, int pred_by) | |
| 1300 { | |
| 1301 //FIXME optimize? | |
| 455 | 1302 //FIXME direct mode penalty |
| 327 | 1303 UINT16 *mv_penalty= s->mv_penalty[s->f_code] + MAX_MV; // f_code of the prev frame |
| 1304 uint8_t *dest_y = s->me_scratchpad; | |
| 1305 uint8_t *ptr; | |
| 1306 int dxy; | |
| 1307 int src_x, src_y; | |
| 1308 int fbmin; | |
| 1309 | |
| 1310 fbmin = (mv_penalty[motion_fx-pred_fx] + mv_penalty[motion_fy-pred_fy])*s->qscale; | |
| 1311 | |
| 1312 dxy = ((motion_fy & 1) << 1) | (motion_fx & 1); | |
| 1313 src_x = mb_x * 16 + (motion_fx >> 1); | |
| 1314 src_y = mb_y * 16 + (motion_fy >> 1); | |
| 765 | 1315 src_x = clip(src_x, -16, s->width); |
| 1316 if (src_x == s->width) | |
| 1317 dxy&= 2; | |
| 1318 src_y = clip(src_y, -16, s->height); | |
| 1319 if (src_y == s->height) | |
| 1320 dxy&= 1; | |
| 1321 | |
| 903 | 1322 ptr = s->last_picture.data[0] + (src_y * s->linesize) + src_x; |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1323 s->dsp.put_pixels_tab[0][dxy](dest_y , ptr , s->linesize, 16); |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1324 |
| 327 | 1325 fbmin += (mv_penalty[motion_bx-pred_bx] + mv_penalty[motion_by-pred_by])*s->qscale; |
| 1326 | |
| 1327 dxy = ((motion_by & 1) << 1) | (motion_bx & 1); | |
| 1328 src_x = mb_x * 16 + (motion_bx >> 1); | |
| 1329 src_y = mb_y * 16 + (motion_by >> 1); | |
| 765 | 1330 src_x = clip(src_x, -16, s->width); |
| 1331 if (src_x == s->width) | |
| 1332 dxy&= 2; | |
| 1333 src_y = clip(src_y, -16, s->height); | |
| 1334 if (src_y == s->height) | |
| 1335 dxy&= 1; | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1336 |
| 903 | 1337 ptr = s->next_picture.data[0] + (src_y * s->linesize) + src_x; |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1338 s->dsp.avg_pixels_tab[0][dxy](dest_y , ptr , s->linesize, 16); |
|
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1339 |
| 903 | 1340 fbmin += s->dsp.pix_abs16x16(s->new_picture.data[0] + mb_x*16 + mb_y*16*s->linesize, dest_y, s->linesize); |
| 327 | 1341 return fbmin; |
| 1342 } | |
| 1343 | |
| 1344 /* refine the bidir vectors in hq mode and return the score in both lq & hq mode*/ | |
| 1345 static inline int bidir_refine(MpegEncContext * s, | |
| 1346 int mb_x, int mb_y) | |
| 1347 { | |
| 1348 const int mot_stride = s->mb_width + 2; | |
| 1349 const int xy = (mb_y + 1)*mot_stride + mb_x + 1; | |
| 1350 int fbmin; | |
| 1351 int pred_fx= s->b_bidir_forw_mv_table[xy-1][0]; | |
| 1352 int pred_fy= s->b_bidir_forw_mv_table[xy-1][1]; | |
| 1353 int pred_bx= s->b_bidir_back_mv_table[xy-1][0]; | |
| 1354 int pred_by= s->b_bidir_back_mv_table[xy-1][1]; | |
| 1355 int motion_fx= s->b_bidir_forw_mv_table[xy][0]= s->b_forw_mv_table[xy][0]; | |
| 1356 int motion_fy= s->b_bidir_forw_mv_table[xy][1]= s->b_forw_mv_table[xy][1]; | |
| 1357 int motion_bx= s->b_bidir_back_mv_table[xy][0]= s->b_back_mv_table[xy][0]; | |
| 1358 int motion_by= s->b_bidir_back_mv_table[xy][1]= s->b_back_mv_table[xy][1]; | |
| 1359 | |
| 1360 //FIXME do refinement and add flag | |
| 1361 | |
| 1362 fbmin= check_bidir_mv(s, mb_x, mb_y, | |
| 1363 motion_fx, motion_fy, | |
| 1364 motion_bx, motion_by, | |
| 1365 pred_fx, pred_fy, | |
| 1366 pred_bx, pred_by); | |
| 1367 | |
| 1368 return fbmin; | |
| 1369 } | |
| 1370 | |
| 1371 static inline int direct_search(MpegEncContext * s, | |
| 1372 int mb_x, int mb_y) | |
| 324 | 1373 { |
| 455 | 1374 int P[10][2]; |
| 327 | 1375 const int mot_stride = s->mb_width + 2; |
| 1376 const int mot_xy = (mb_y + 1)*mot_stride + mb_x + 1; | |
| 1377 int dmin, dmin2; | |
| 1378 int motion_fx, motion_fy, motion_bx, motion_by, motion_bx0, motion_by0; | |
| 1379 int motion_dx, motion_dy; | |
| 1380 const int motion_px= s->p_mv_table[mot_xy][0]; | |
| 1381 const int motion_py= s->p_mv_table[mot_xy][1]; | |
| 1382 const int time_pp= s->pp_time; | |
| 664 | 1383 const int time_pb= s->pb_time; |
| 1384 const int time_bp= time_pp - time_pb; | |
| 327 | 1385 int bx, by; |
| 1386 int mx, my, mx2, my2; | |
|
587
4d41fe7eb780
b frame direct mode bugfix (bug found by CM <chenm001 at 163 dot com>)
michaelni
parents:
502
diff
changeset
|
1387 uint8_t *ref_picture= s->me_scratchpad - (mb_x - 1 + (mb_y - 1)*s->linesize)*16; |
| 327 | 1388 int16_t (*mv_table)[2]= s->b_direct_mv_table; |
|
620
a5aa53b6e648
warning patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
michaelni
parents:
612
diff
changeset
|
1389 /* uint16_t *mv_penalty= s->mv_penalty[s->f_code] + MAX_MV; */ // f_code of the prev frame |
| 324 | 1390 |
| 327 | 1391 /* thanks to iso-mpeg the rounding is different for the zero vector, so we need to handle that ... */ |
| 1392 motion_fx= (motion_px*time_pb)/time_pp; | |
| 1393 motion_fy= (motion_py*time_pb)/time_pp; | |
| 1394 motion_bx0= (-motion_px*time_bp)/time_pp; | |
| 1395 motion_by0= (-motion_py*time_bp)/time_pp; | |
| 1396 motion_dx= motion_dy=0; | |
| 1397 dmin2= check_bidir_mv(s, mb_x, mb_y, | |
| 1398 motion_fx, motion_fy, | |
| 1399 motion_bx0, motion_by0, | |
| 1400 motion_fx, motion_fy, | |
| 1401 motion_bx0, motion_by0) - s->qscale; | |
| 1402 | |
| 1403 motion_bx= motion_fx - motion_px; | |
| 1404 motion_by= motion_fy - motion_py; | |
| 1405 for(by=-1; by<2; by++){ | |
| 1406 for(bx=-1; bx<2; bx++){ | |
| 1407 uint8_t *dest_y = s->me_scratchpad + (by+1)*s->linesize*16 + (bx+1)*16; | |
| 1408 uint8_t *ptr; | |
| 1409 int dxy; | |
| 1410 int src_x, src_y; | |
| 1411 const int width= s->width; | |
| 1412 const int height= s->height; | |
| 1413 | |
| 1414 dxy = ((motion_fy & 1) << 1) | (motion_fx & 1); | |
| 1415 src_x = (mb_x + bx) * 16 + (motion_fx >> 1); | |
| 1416 src_y = (mb_y + by) * 16 + (motion_fy >> 1); | |
| 1417 src_x = clip(src_x, -16, width); | |
| 1418 if (src_x == width) dxy &= ~1; | |
| 1419 src_y = clip(src_y, -16, height); | |
| 1420 if (src_y == height) dxy &= ~2; | |
| 1421 | |
| 903 | 1422 ptr = s->last_picture.data[0] + (src_y * s->linesize) + src_x; |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1423 s->dsp.put_pixels_tab[0][dxy](dest_y , ptr , s->linesize, 16); |
| 327 | 1424 |
| 1425 dxy = ((motion_by & 1) << 1) | (motion_bx & 1); | |
| 1426 src_x = (mb_x + bx) * 16 + (motion_bx >> 1); | |
| 1427 src_y = (mb_y + by) * 16 + (motion_by >> 1); | |
| 1428 src_x = clip(src_x, -16, width); | |
| 1429 if (src_x == width) dxy &= ~1; | |
| 1430 src_y = clip(src_y, -16, height); | |
| 1431 if (src_y == height) dxy &= ~2; | |
| 1432 | |
|
853
eacc2dd8fd9d
* using DSPContext - so each codec could use its local (sub)set of CPU extension
kabi
parents:
847
diff
changeset
|
1433 s->dsp.avg_pixels_tab[0][dxy](dest_y , ptr , s->linesize, 16); |
| 327 | 1434 } |
| 1435 } | |
| 1436 | |
| 455 | 1437 P_LAST[0] = mv_table[mot_xy ][0]; |
| 1438 P_LAST[1] = mv_table[mot_xy ][1]; | |
| 1439 P_LEFT[0] = mv_table[mot_xy - 1][0]; | |
| 1440 P_LEFT[1] = mv_table[mot_xy - 1][1]; | |
| 1441 P_LAST_RIGHT[0] = mv_table[mot_xy + 1][0]; | |
| 1442 P_LAST_RIGHT[1] = mv_table[mot_xy + 1][1]; | |
| 1443 P_LAST_BOTTOM[0] = mv_table[mot_xy + mot_stride][0]; | |
| 1444 P_LAST_BOTTOM[1] = mv_table[mot_xy + mot_stride][1]; | |
| 1445 /* | |
| 1446 if(P_LEFT[0] > (rel_xmax<<shift)) P_LEFT[0] = (rel_xmax<<shift); | |
| 1447 if(P_LAST_RIGHT[0] < (rel_xmin<<shift)) P_LAST_RIGHT[0] = (rel_xmin<<shift); | |
| 1448 if(P_LAST_BOTTOM[1]< (rel_ymin<<shift)) P_LAST_BOTTOM[1]= (rel_ymin<<shift); | |
| 1449 */ | |
| 327 | 1450 /* special case for first line */ |
| 455 | 1451 if ((mb_y == 0 || s->first_slice_line)) { |
| 327 | 1452 } else { |
| 455 | 1453 P_TOP[0] = mv_table[mot_xy - mot_stride ][0]; |
| 1454 P_TOP[1] = mv_table[mot_xy - mot_stride ][1]; | |
| 1455 P_TOPRIGHT[0] = mv_table[mot_xy - mot_stride + 1 ][0]; | |
| 1456 P_TOPRIGHT[1] = mv_table[mot_xy - mot_stride + 1 ][1]; | |
| 327 | 1457 |
| 455 | 1458 P_MEDIAN[0]= mid_pred(P_LEFT[0], P_TOP[0], P_TOPRIGHT[0]); |
| 1459 P_MEDIAN[1]= mid_pred(P_LEFT[1], P_TOP[1], P_TOPRIGHT[1]); | |
| 327 | 1460 } |
| 1461 dmin = epzs_motion_search(s, &mx, &my, P, 0, 0, -16, -16, 15, 15, ref_picture); | |
| 1462 if(mx==0 && my==0) dmin=99999999; // not representable, due to rounding stuff | |
| 1463 if(dmin2<dmin){ | |
| 1464 dmin= dmin2; | |
| 1465 mx=0; | |
| 1466 my=0; | |
| 1467 } | |
| 1468 #if 1 | |
| 1469 mx2= mx= mx*2; | |
| 1470 my2= my= my*2; | |
| 1471 for(by=-1; by<2; by++){ | |
| 1472 if(my2+by < -32) continue; | |
| 1473 for(bx=-1; bx<2; bx++){ | |
| 1474 if(bx==0 && by==0) continue; | |
| 1475 if(mx2+bx < -32) continue; | |
| 1476 dmin2= check_bidir_mv(s, mb_x, mb_y, | |
| 1477 mx2+bx+motion_fx, my2+by+motion_fy, | |
| 1478 mx2+bx+motion_bx, my2+by+motion_by, | |
| 1479 mx2+bx+motion_fx, my2+by+motion_fy, | |
| 1480 motion_bx, motion_by) - s->qscale; | |
| 1481 | |
| 1482 if(dmin2<dmin){ | |
| 1483 dmin=dmin2; | |
| 1484 mx= mx2 + bx; | |
| 1485 my= my2 + by; | |
| 1486 } | |
| 1487 } | |
| 1488 } | |
| 1489 #else | |
| 1490 mx*=2; my*=2; | |
| 1491 #endif | |
| 1492 if(mx==0 && my==0){ | |
| 1493 motion_bx= motion_bx0; | |
| 1494 motion_by= motion_by0; | |
| 1495 } | |
| 1496 | |
| 1497 s->b_direct_mv_table[mot_xy][0]= mx; | |
| 1498 s->b_direct_mv_table[mot_xy][1]= my; | |
| 1499 s->b_direct_forw_mv_table[mot_xy][0]= motion_fx + mx; | |
| 1500 s->b_direct_forw_mv_table[mot_xy][1]= motion_fy + my; | |
| 1501 s->b_direct_back_mv_table[mot_xy][0]= motion_bx + mx; | |
| 1502 s->b_direct_back_mv_table[mot_xy][1]= motion_by + my; | |
| 1503 return dmin; | |
| 324 | 1504 } |
| 1505 | |
| 1506 void ff_estimate_b_frame_motion(MpegEncContext * s, | |
| 1507 int mb_x, int mb_y) | |
| 1508 { | |
| 327 | 1509 const int quant= s->qscale; |
| 1510 int fmin, bmin, dmin, fbmin; | |
| 1511 int type=0; | |
| 1512 | |
| 1513 dmin= direct_search(s, mb_x, mb_y); | |
| 324 | 1514 |
| 903 | 1515 fmin= ff_estimate_motion_b(s, mb_x, mb_y, s->b_forw_mv_table, s->last_picture.data[0], s->f_code); |
| 1516 bmin= ff_estimate_motion_b(s, mb_x, mb_y, s->b_back_mv_table, s->next_picture.data[0], s->b_code) - quant; | |
| 324 | 1517 //printf(" %d %d ", s->b_forw_mv_table[xy][0], s->b_forw_mv_table[xy][1]); |
| 327 | 1518 |
| 1519 fbmin= bidir_refine(s, mb_x, mb_y); | |
| 1520 | |
| 612 | 1521 { |
| 327 | 1522 int score= dmin; |
| 1523 type=MB_TYPE_DIRECT; | |
| 1524 | |
| 1525 if(fmin<score){ | |
| 1526 score=fmin; | |
| 1527 type= MB_TYPE_FORWARD; | |
| 1528 } | |
| 1529 if(bmin<score){ | |
| 1530 score=bmin; | |
| 1531 type= MB_TYPE_BACKWARD; | |
| 1532 } | |
| 1533 if(fbmin<score){ | |
| 1534 score=fbmin; | |
| 1535 type= MB_TYPE_BIDIR; | |
| 1536 } | |
|
807
0e1d375c537f
fixing q>0.0 assert failure caused by overflow of variance for b frames
michaelni
parents:
765
diff
changeset
|
1537 score= ((unsigned)(score*score + 128*256))>>16; |
| 903 | 1538 s->current_picture.mc_mb_var_sum += score; |
| 1539 s->current_picture.mc_mb_var[mb_y*s->mb_width + mb_x] = score; //FIXME use SSD | |
| 327 | 1540 } |
| 612 | 1541 |
| 1542 if(s->flags&CODEC_FLAG_HQ){ | |
| 1543 type= MB_TYPE_FORWARD | MB_TYPE_BACKWARD | MB_TYPE_BIDIR | MB_TYPE_DIRECT; //FIXME something smarter | |
| 1544 } | |
| 1545 | |
| 455 | 1546 /* |
| 1547 { | |
| 1548 static int count=0; | |
| 1549 static int sum=0; | |
| 1550 if(type==MB_TYPE_DIRECT){ | |
| 1551 int diff= ABS(s->b_forw_mv_table) | |
| 1552 } | |
| 1553 }*/ | |
| 327 | 1554 |
| 1555 s->mb_type[mb_y*s->mb_width + mb_x]= type; | |
| 455 | 1556 /* if(mb_y==0 && mb_x==0) printf("\n"); |
| 1557 if(mb_x==0) printf("\n"); | |
| 1558 printf("%d", av_log2(type)); | |
| 1559 */ | |
| 324 | 1560 } |
| 0 | 1561 |
| 324 | 1562 /* find best f_code for ME which do unlimited searches */ |
| 1563 int ff_get_best_fcode(MpegEncContext * s, int16_t (*mv_table)[2], int type) | |
| 1564 { | |
| 1565 if(s->me_method>=ME_EPZS){ | |
| 455 | 1566 int score[8]; |
| 324 | 1567 int i, y; |
| 1568 UINT8 * fcode_tab= s->fcode_tab; | |
| 455 | 1569 int best_fcode=-1; |
| 1570 int best_score=-10000000; | |
| 324 | 1571 |
| 455 | 1572 for(i=0; i<8; i++) score[i]= s->mb_num*(8-i); //FIXME *2 and all other too so its the same but nicer |
| 324 | 1573 |
| 1574 for(y=0; y<s->mb_height; y++){ | |
| 1575 int x; | |
| 1576 int xy= (y+1)* (s->mb_width+2) + 1; | |
| 1577 i= y*s->mb_width; | |
| 1578 for(x=0; x<s->mb_width; x++){ | |
| 1579 if(s->mb_type[i] & type){ | |
| 847 | 1580 int fcode= FFMAX(fcode_tab[mv_table[xy][0] + MAX_MV], |
| 1581 fcode_tab[mv_table[xy][1] + MAX_MV]); | |
| 455 | 1582 int j; |
| 1583 | |
| 1584 for(j=0; j<fcode && j<8; j++){ | |
| 903 | 1585 if(s->pict_type==B_TYPE || s->current_picture.mc_mb_var[i] < s->current_picture.mb_var[i]) |
| 455 | 1586 score[j]-= 170; |
| 1587 } | |
| 324 | 1588 } |
| 1589 i++; | |
| 1590 xy++; | |
| 1591 } | |
| 1592 } | |
| 455 | 1593 |
| 1594 for(i=1; i<8; i++){ | |
| 1595 if(score[i] > best_score){ | |
| 1596 best_score= score[i]; | |
| 1597 best_fcode= i; | |
| 1598 } | |
| 1599 // printf("%d %d\n", i, score[i]); | |
| 1600 } | |
| 327 | 1601 |
| 324 | 1602 // printf("fcode: %d type: %d\n", i, s->pict_type); |
| 455 | 1603 return best_fcode; |
| 324 | 1604 /* for(i=0; i<=MAX_FCODE; i++){ |
| 1605 printf("%d ", mv_num[i]); | |
| 1606 } | |
| 1607 printf("\n");*/ | |
| 1608 }else{ | |
| 1609 return 1; | |
| 0 | 1610 } |
| 1611 } | |
| 1612 | |
| 324 | 1613 void ff_fix_long_p_mvs(MpegEncContext * s) |
| 1614 { | |
| 1615 const int f_code= s->f_code; | |
| 1616 int y; | |
| 1617 UINT8 * fcode_tab= s->fcode_tab; | |
| 455 | 1618 //int clip=0; |
| 1619 //int noclip=0; | |
| 324 | 1620 /* clip / convert to intra 16x16 type MVs */ |
| 1621 for(y=0; y<s->mb_height; y++){ | |
| 1622 int x; | |
| 1623 int xy= (y+1)* (s->mb_width+2)+1; | |
| 1624 int i= y*s->mb_width; | |
| 1625 for(x=0; x<s->mb_width; x++){ | |
| 1626 if(s->mb_type[i]&MB_TYPE_INTER){ | |
| 1627 if( fcode_tab[s->p_mv_table[xy][0] + MAX_MV] > f_code | |
| 1628 || fcode_tab[s->p_mv_table[xy][0] + MAX_MV] == 0 | |
| 1629 || fcode_tab[s->p_mv_table[xy][1] + MAX_MV] > f_code | |
| 1630 || fcode_tab[s->p_mv_table[xy][1] + MAX_MV] == 0 ){ | |
| 1631 s->mb_type[i] &= ~MB_TYPE_INTER; | |
| 1632 s->mb_type[i] |= MB_TYPE_INTRA; | |
| 1633 s->p_mv_table[xy][0] = 0; | |
| 1634 s->p_mv_table[xy][1] = 0; | |
| 455 | 1635 //clip++; |
| 324 | 1636 } |
| 455 | 1637 //else |
| 1638 // noclip++; | |
| 324 | 1639 } |
| 1640 xy++; | |
| 1641 i++; | |
| 1642 } | |
| 1643 } | |
| 455 | 1644 //printf("%d no:%d %d//\n", clip, noclip, f_code); |
| 324 | 1645 if(s->flags&CODEC_FLAG_4MV){ |
| 1646 const int wrap= 2+ s->mb_width*2; | |
| 1647 | |
| 1648 /* clip / convert to intra 8x8 type MVs */ | |
| 1649 for(y=0; y<s->mb_height; y++){ | |
| 1650 int xy= (y*2 + 1)*wrap + 1; | |
| 1651 int i= y*s->mb_width; | |
| 1652 int x; | |
| 1653 | |
| 1654 for(x=0; x<s->mb_width; x++){ | |
| 1655 if(s->mb_type[i]&MB_TYPE_INTER4V){ | |
| 1656 int block; | |
| 1657 for(block=0; block<4; block++){ | |
| 1658 int off= (block& 1) + (block>>1)*wrap; | |
| 1659 int mx= s->motion_val[ xy + off ][0]; | |
| 1660 int my= s->motion_val[ xy + off ][1]; | |
| 1661 | |
| 1662 if( fcode_tab[mx + MAX_MV] > f_code | |
| 1663 || fcode_tab[mx + MAX_MV] == 0 | |
| 1664 || fcode_tab[my + MAX_MV] > f_code | |
| 1665 || fcode_tab[my + MAX_MV] == 0 ){ | |
| 1666 s->mb_type[i] &= ~MB_TYPE_INTER4V; | |
| 1667 s->mb_type[i] |= MB_TYPE_INTRA; | |
| 1668 } | |
| 1669 } | |
| 1670 } | |
| 502 | 1671 xy+=2; |
| 1672 i++; | |
| 324 | 1673 } |
| 1674 } | |
| 1675 } | |
| 1676 } | |
| 1677 | |
| 1678 void ff_fix_long_b_mvs(MpegEncContext * s, int16_t (*mv_table)[2], int f_code, int type) | |
| 1679 { | |
| 1680 int y; | |
| 1681 UINT8 * fcode_tab= s->fcode_tab; | |
| 1682 | |
| 1683 /* clip / convert to intra 16x16 type MVs */ | |
| 1684 for(y=0; y<s->mb_height; y++){ | |
| 1685 int x; | |
| 1686 int xy= (y+1)* (s->mb_width+2)+1; | |
| 1687 int i= y*s->mb_width; | |
| 1688 for(x=0; x<s->mb_width; x++){ | |
|
691
199b324b2693
fixing variance scaling for b frames (messed adaptive quants up)
michaelni
parents:
690
diff
changeset
|
1689 if( fcode_tab[mv_table[xy][0] + MAX_MV] > f_code |
|
199b324b2693
fixing variance scaling for b frames (messed adaptive quants up)
michaelni
parents:
690
diff
changeset
|
1690 || fcode_tab[mv_table[xy][0] + MAX_MV] == 0){ |
|
199b324b2693
fixing variance scaling for b frames (messed adaptive quants up)
michaelni
parents:
690
diff
changeset
|
1691 if(mv_table[xy][0]>0) mv_table[xy][0]= (16<<f_code)-1; |
|
199b324b2693
fixing variance scaling for b frames (messed adaptive quants up)
michaelni
parents:
690
diff
changeset
|
1692 else mv_table[xy][0]= -(16<<f_code); |
|
199b324b2693
fixing variance scaling for b frames (messed adaptive quants up)
michaelni
parents:
690
diff
changeset
|
1693 } |
|
199b324b2693
fixing variance scaling for b frames (messed adaptive quants up)
michaelni
parents:
690
diff
changeset
|
1694 if( fcode_tab[mv_table[xy][1] + MAX_MV] > f_code |
|
199b324b2693
fixing variance scaling for b frames (messed adaptive quants up)
michaelni
parents:
690
diff
changeset
|
1695 || fcode_tab[mv_table[xy][1] + MAX_MV] == 0){ |
|
199b324b2693
fixing variance scaling for b frames (messed adaptive quants up)
michaelni
parents:
690
diff
changeset
|
1696 if(mv_table[xy][1]>0) mv_table[xy][1]= (16<<f_code)-1; |
|
199b324b2693
fixing variance scaling for b frames (messed adaptive quants up)
michaelni
parents:
690
diff
changeset
|
1697 else mv_table[xy][1]= -(16<<f_code); |
| 324 | 1698 } |
| 1699 xy++; | |
| 1700 i++; | |
| 1701 } | |
| 1702 } | |
| 1703 } |
