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