• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/

Lines Matching defs:obmc_weight

207     DECLARE_ALIGNED(16, uint8_t, obmc_weight)[3][MAX_BLOCKSIZE*MAX_BLOCKSIZE];
211 void (*add_obmc)(uint16_t *dst, const uint8_t *src, int stride, const uint8_t *obmc_weight, int yblen);
1296 static void init_obmc_weight_row(Plane *p, uint8_t *obmc_weight, int stride,
1301 obmc_weight[x] = wy*8;
1303 obmc_weight[x] = wy*weight(x, p->xblen, p->xoffset);
1305 obmc_weight[x] = wy*8;
1307 obmc_weight[x] = 0;
1310 static void init_obmc_weight(Plane *p, uint8_t *obmc_weight, int stride,
1315 init_obmc_weight_row(p, obmc_weight, stride, left, right, 8);
1316 obmc_weight += stride;
1320 init_obmc_weight_row(p, obmc_weight, stride, left, right, wy);
1321 obmc_weight += stride;
1324 init_obmc_weight_row(p, obmc_weight, stride, left, right, 8);
1325 obmc_weight += stride;
1336 init_obmc_weight(p, s->obmc_weight[0], MAX_BLOCKSIZE, 1, 0, top, bottom);
1337 init_obmc_weight(p, s->obmc_weight[1], MAX_BLOCKSIZE, 0, 0, top, bottom);
1338 init_obmc_weight(p, s->obmc_weight[2], MAX_BLOCKSIZE, 0, 1, top, bottom);
1465 uint8_t *obmc_weight, int xblen, int yblen)
1472 dst[x ] += dc * obmc_weight[x ];
1473 dst[x+1] += dc * obmc_weight[x+1];
1476 obmc_weight += MAX_BLOCKSIZE;
1481 uint16_t *mctmp, uint8_t *obmc_weight,
1490 add_dc(mctmp, block->u.dc[plane], p->stride, obmc_weight, p->xblen, p->yblen);
1513 s->add_obmc(mctmp, s->mcscratch, p->stride, obmc_weight, p->yblen);
1521 block_mc(s, block, mctmp, s->obmc_weight[0], plane, -p->xoffset, dsty);
1525 block_mc(s, block+x, mctmp, s->obmc_weight[1], plane, dstx, dsty);
1529 block_mc(s, block+x, mctmp, s->obmc_weight[2], plane, dstx, dsty);