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