Searched refs:hsub (Results 26 - 50 of 56) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_smartblur.c57 int hsub; member in struct:__anon3425
164 sblur->hsub = desc->log2_chroma_w;
169 FF_CEIL_RSHIFT(inlink->w, sblur->hsub),
245 int cw = FF_CEIL_RSHIFT(inlink->w, sblur->hsub);
H A Dvf_boxblur.c43 "hsub",
70 int hsub, vsub; member in struct:BoxBlurContext
148 s->hsub = desc->log2_chroma_w;
153 var_values[VAR_CW] = cw = w>>s->hsub;
155 var_values[VAR_HSUB] = 1<<s->hsub;
305 int cw = FF_CEIL_RSHIFT(inlink->w, s->hsub), ch = FF_CEIL_RSHIFT(in->height, s->vsub);
H A Dvf_lut.c65 int hsub, vsub; member in struct:LutContext
185 s->hsub = desc->log2_chroma_w;
310 int hsub = plane == 1 || plane == 2 ? s->hsub : 0; local
312 int w = FF_CEIL_RSHIFT(inlink->w, hsub);
H A Dvf_gradfun.c168 int hsub = desc->log2_chroma_w; local
176 s->chroma_w = FF_CEIL_RSHIFT(inlink->w, hsub);
178 s->chroma_r = av_clip(((((s->radius >> hsub) + (s->radius >> vsub)) / 2 ) + 1) & ~1, 4, 32);
H A Dvf_unsharp.c112 plane_w[1] = plane_w[2] = FF_CEIL_RSHIFT(inlink->w, unsharp->hsub);
200 unsharp->hsub = desc->log2_chroma_w;
206 ret = init_filter_param(link->dst, &unsharp->chroma, "chroma", FF_CEIL_RSHIFT(link->w, unsharp->hsub));
H A Dvf_geq.c40 int hsub, vsub; ///< chroma subsampling member in struct:__anon3396
77 const int w = (plane == 1 || plane == 2) ? FF_CEIL_RSHIFT(picref->width, geq->hsub) : picref->width;
191 geq->hsub = desc->log2_chroma_w;
220 const int w = (plane == 1 || plane == 2) ? FF_CEIL_RSHIFT(inlink->w, geq->hsub) : inlink->w;
H A Dvf_sab.c53 int hsub; member in struct:__anon3419
206 sab->hsub = desc->log2_chroma_w;
216 FF_CEIL_RSHIFT(inlink->w, sab->hsub),
300 int cw = FF_CEIL_RSHIFT(inlink->w, sab->hsub);
H A Dvf_hflip.c66 const int hsub = pix_desc->log2_chroma_w; local
71 s->planewidth[1] = s->planewidth[2] = FF_CEIL_RSHIFT(inlink->w, hsub);
H A Dvf_stereo3d.c141 int hsub, vsub; member in struct:Stereo3DContext
469 s->hsub = desc->log2_chroma_w;
533 int hsub = i == 1 || i == 2 ? s->hsub : 0; local
535 in_off_left[i] = (FF_CEIL_RSHIFT(s->in.row_left, vsub) + s->in.off_lstep) * ileft->linesize[i] + FF_CEIL_RSHIFT(s->in.off_left * s->pixstep[i], hsub);
536 in_off_right[i] = (FF_CEIL_RSHIFT(s->in.row_right, vsub) + s->in.off_rstep) * iright->linesize[i] + FF_CEIL_RSHIFT(s->in.off_right * s->pixstep[i], hsub);
537 out_off_left[i] = (FF_CEIL_RSHIFT(s->out.row_left, vsub) + s->out.off_lstep) * oleft->linesize[i] + FF_CEIL_RSHIFT(s->out.off_left * s->pixstep[i], hsub);
538 out_off_right[i] = (FF_CEIL_RSHIFT(s->out.row_right, vsub) + s->out.off_rstep) * oright->linesize[i] + FF_CEIL_RSHIFT(s->out.off_right * s->pixstep[i], hsub);
H A Dvf_blend.c91 int hsub, vsub; ///< chroma subsampling values member in struct:__anon3376
276 int hsub = plane == 1 || plane == 2 ? b->hsub : 0; local
278 int outw = FF_CEIL_RSHIFT(dst_buf->width, hsub);
399 b->hsub = pix_desc->log2_chroma_w;
H A Dvf_signalstats.c39 int hsub; // horizontal subsampling member in struct:__anon3422
112 s->hsub = desc->log2_chroma_w;
118 s->chromaw = FF_CEIL_RSHIFT(inlink->w, s->hsub);
135 const int chromax = x >> s->hsub;
151 const int xc = x >> s->hsub;
H A Dvf_rotate.c46 "hsub", "vsub",
73 int hsub, vsub; member in struct:__anon3417
201 rot->hsub = pixdesc->log2_chroma_w;
206 rot->var_values[VAR_HSUB] = 1<<rot->hsub;
493 int hsub = plane == 1 || plane == 2 ? rot->hsub : 0; local
495 const int outw = FF_CEIL_RSHIFT(outlink->w, hsub);
498 .inw = FF_CEIL_RSHIFT(inlink->w, hsub),
H A Dvf_fade.c57 int hsub, vsub, bpp; member in struct:FadeContext
138 s->hsub = pixdesc->log2_chroma_w;
224 const int width = FF_CEIL_RSHIFT(frame->width, s->hsub);
H A Dvf_hue.c74 int hsub; member in struct:__anon3401
247 hue->hsub = desc->log2_chroma_w;
380 FF_CEIL_RSHIFT(inlink->w, hue->hsub),
H A Dvf_owdenoise.c44 int hsub, vsub; member in struct:__anon3413
239 const int cw = FF_CEIL_RSHIFT(inlink->w, s->hsub);
290 s->hsub = desc->log2_chroma_w;
H A Dvf_vignette.c255 const int hsub = chroma ? s->desc->log2_chroma_w : 0; local
257 const int w = FF_CEIL_RSHIFT(inlink->w, hsub);
266 if (chroma) *dstp++ = av_clip_uint8(fmap[x << hsub] * (*srcp++ - 127) + 127 + dv);
H A Dvsrc_mptestsrc.c57 int hsub, vsub; member in struct:MPTestContext
278 test->hsub = pix_desc->log2_chroma_w;
303 cw = FF_CEIL_RSHIFT(w, test->hsub), ch = FF_CEIL_RSHIFT(h, test->vsub);
H A Dvf_decimate.c48 int hsub, vsub; ///< chroma subsampling values member in struct:__anon3385
96 int width = plane ? FF_CEIL_RSHIFT(f1->width, dm->hsub) : f1->width;
102 hblockx >>= dm->hsub;
240 dm->hsub = pix_desc->log2_chroma_w;
H A Dvf_hqdn3d.c258 s->hsub = desc->log2_chroma_w;
304 FF_CEIL_RSHIFT(in->width, (!!c * s->hsub)),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_unsharp.c64 int hsub, vsub; member in struct:__anon2097
188 unsharp->hsub = av_pix_fmt_descriptors[link->format].log2_chroma_w;
192 init_filter_param(link->dst, &unsharp->chroma, "chroma", SHIFTUP(link->w, unsharp->hsub));
218 int cw = SHIFTUP(link->w, unsharp->hsub);
H A Dvf_boxblur.c38 "hsub",
66 int hsub, vsub; member in struct:__anon2068
156 boxblur->hsub = desc->log2_chroma_w;
161 var_values[VAR_CW] = cw = w>>boxblur->hsub;
163 var_values[VAR_HSUB] = 1<<boxblur->hsub;
314 int cw = inlink->w >> boxblur->hsub, ch = h0 >> boxblur->vsub;
H A Dvf_lut.c67 int hsub, vsub; member in struct:__anon2086
216 lut->hsub = desc->log2_chroma_w;
326 int hsub = plane == 1 || plane == 2 ? lut->hsub : 0; local
332 for (j = 0; j < inlink->w>>hsub; j++)
H A Dvf_gradfun.c171 int hsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_w; local
178 gf->chroma_w = -((-inlink->w) >> hsub);
180 gf->chroma_r = av_clip(((((gf->radius >> hsub) + (gf->radius >> vsub)) / 2 ) + 1) & ~1, 4, 32);
H A Dvf_hqdn3d.c35 int hsub, vsub; member in struct:__anon2081
280 hqdn3d->hsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_w;
298 int cw = inpic->video->w >> hqdn3d->hsub;
H A Dvf_scale.c43 "hsub",
74 int hsub, vsub; ///< chroma subsampling member in struct:__anon2090
243 scale->hsub = av_pix_fmt_descriptors[link->format].log2_chroma_w;

Completed in 97 milliseconds

123