• 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:yblen

61 #define MAX_BLOCKSIZE 32    /* maximum xblen/yblen we support */
127 uint8_t yblen;
211 void (*add_obmc)(uint16_t *dst, const uint8_t *src, int stride, const uint8_t *obmc_weight, int yblen);
850 p->yblen = s->plane[0].yblen >> s->chroma_y_shift;
856 p->yoffset = (p->yblen - p->ybsep)/2;
885 s->plane[0].yblen = svq3_get_ue_golomb(gb);
891 s->plane[0].yblen = default_blen[idx-1];
898 if (!s->plane[0].xbsep || !s->plane[0].ybsep || s->plane[0].xbsep < s->plane[0].xblen/2 || s->plane[0].ybsep < s->plane[0].yblen/2) {
902 if (s->plane[0].xbsep > s->plane[0].xblen || s->plane[0].ybsep > s->plane[0].yblen) {
906 if (FFMAX(s->plane[0].xblen, s->plane[0].yblen) > MAX_BLOCKSIZE) {
1314 for (y = 0; top && y < p->yblen >> 1; y++) {
1318 for (; y < p->yblen >> bottom; y++) {
1319 int wy = weight(y, p->yblen, p->yoffset);
1323 for (; y < p->yblen; y++) {
1451 y + p->yblen > p->height+EDGE_WIDTH/2 ||
1456 p->xblen, p->yblen, x, y,
1465 uint8_t *obmc_weight, int xblen, int yblen)
1470 for (y = 0; y < yblen; y++) {
1490 add_dc(mctmp, block->u.dc[plane], p->stride, obmc_weight, p->xblen, p->yblen);
1495 s->put_pixels_tab[idx](s->mcscratch, src, p->stride, p->yblen);
1498 s->weight[0] + s->weight[1], p->yblen);
1502 s->put_pixels_tab[idx](s->mcscratch, src, p->stride, p->yblen);
1506 s->put_pixels_tab[idx](s->mcscratch + 32, src, p->stride, p->yblen);
1508 s->weight[0], s->weight[1], p->yblen);
1510 s->avg_pixels_tab[idx](s->mcscratch, src, p->stride, p->yblen);
1513 s->add_obmc(mctmp, s->mcscratch, p->stride, obmc_weight, p->yblen);
1532 static void select_dsp_funcs(DiracContext *s, int width, int height, int xblen, int yblen)
1629 select_dsp_funcs(s, p->width, p->height, p->xblen, p->yblen);