Commit 05f34630 authored by kostya's avatar kostya

Correctly ME border blocks

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8322 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent aec6184e
...@@ -80,17 +80,19 @@ static inline int block_cmp(uint8_t *src, int stride, uint8_t *src2, int stride2 ...@@ -80,17 +80,19 @@ static inline int block_cmp(uint8_t *src, int stride, uint8_t *src2, int stride2
static int zmbv_me(ZmbvEncContext *c, uint8_t *src, int sstride, uint8_t *prev, int pstride, static int zmbv_me(ZmbvEncContext *c, uint8_t *src, int sstride, uint8_t *prev, int pstride,
int x, int y, int *mx, int *my) int x, int y, int *mx, int *my)
{ {
int dx, dy, tx, ty, tv, bv; int dx, dy, tx, ty, tv, bv, bw, bh;
*mx = *my = 0; *mx = *my = 0;
bv = block_cmp(src, sstride, prev, pstride, ZMBV_BLOCK, ZMBV_BLOCK); bw = FFMIN(ZMBV_BLOCK, c->avctx->width - x);
bh = FFMIN(ZMBV_BLOCK, c->avctx->height - y);
bv = block_cmp(src, sstride, prev, pstride, bw, bh);
if(!bv) return 0; if(!bv) return 0;
for(ty = FFMAX(y - c->range, 0); ty < FFMIN(y + c->range, c->avctx->height - ZMBV_BLOCK); ty++){ for(ty = FFMAX(y - c->range, 0); ty < FFMIN(y + c->range, c->avctx->height - bh); ty++){
for(tx = FFMAX(x - c->range, 0); tx < FFMIN(x + c->range, c->avctx->width - ZMBV_BLOCK); tx++){ for(tx = FFMAX(x - c->range, 0); tx < FFMIN(x + c->range, c->avctx->width - bw); tx++){
if(tx == x && ty == y) continue; // we already tested this block if(tx == x && ty == y) continue; // we already tested this block
dx = tx - x; dx = tx - x;
dy = ty - y; dy = ty - y;
tv = block_cmp(src, sstride, prev + dx + dy*pstride, pstride, ZMBV_BLOCK, ZMBV_BLOCK); tv = block_cmp(src, sstride, prev + dx + dy*pstride, pstride, bw, bh);
if(tv < bv){ if(tv < bv){
bv = tv; bv = tv;
*mx = dx; *mx = dx;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment