Searched refs:vsub (Results 51 - 75 of 99) sorted by relevance

1234

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_lut.c65 int hsub, vsub; member in struct:LutContext
186 s->vsub = desc->log2_chroma_h;
309 int vsub = plane == 1 || plane == 2 ? s->vsub : 0; local
311 int h = FF_CEIL_RSHIFT(inlink->h, vsub);
H A Dvf_gradfun.c169 int vsub = desc->log2_chroma_h; local
177 s->chroma_h = FF_CEIL_RSHIFT(inlink->h, vsub);
178 s->chroma_r = av_clip(((((s->radius >> hsub) + (s->radius >> vsub)) / 2 ) + 1) & ~1, 4, 32);
H A Dvf_kerndeint.c42 int vsub; member in struct:__anon3405
93 kerndeint->vsub = desc->log2_chroma_h;
154 h = plane == 0 ? inlink->h : FF_CEIL_RSHIFT(inlink->h, kerndeint->vsub);
H A Dvf_geq.c40 int hsub, vsub; ///< chroma subsampling member in struct:__anon3396
78 const int h = (plane == 1 || plane == 2) ? FF_CEIL_RSHIFT(picref->height, geq->vsub) : picref->height;
192 geq->vsub = desc->log2_chroma_h;
221 const int h = (plane == 1 || plane == 2) ? FF_CEIL_RSHIFT(inlink->h, geq->vsub) : inlink->h;
H A Dvf_sab.c54 int vsub; member in struct:__anon3419
207 sab->vsub = desc->log2_chroma_h;
217 FF_CEIL_RSHIFT(inlink->h, sab->vsub), sab->sws_flags);
301 int ch = FF_CEIL_RSHIFT(inlink->h, sab->vsub);
H A Dvf_tinterlace.c50 int vsub; ///< chroma vertical subsampling member in struct:__anon3432
118 tinterlace->vsub = desc->log2_chroma_h;
182 int plane, vsub = desc->log2_chroma_h; local
187 int lines = plane == 1 || plane == 2 ? FF_CEIL_RSHIFT(src_h, vsub) : src_h;
H A Dvf_hflip.c67 const int vsub = pix_desc->log2_chroma_h; local
73 s->planeheight[1] = s->planeheight[2] = FF_CEIL_RSHIFT(inlink->h, vsub);
H A Dvf_interlace.c133 int vsub = desc->log2_chroma_h; local
137 int lines = (plane == 1 || plane == 2) ? FF_CEIL_RSHIFT(inlink->h, vsub) : inlink->h;
H A Dvf_showinfo.c86 int i, plane, vsub = desc->log2_chroma_h; local
91 int h = plane == 1 || plane == 2 ? FF_CEIL_RSHIFT(inlink->h, vsub) : inlink->h;
H A Dvf_stereo3d.c141 int hsub, vsub; member in struct:Stereo3DContext
470 s->vsub = desc->log2_chroma_h;
534 int vsub = i == 1 || i == 2 ? s->vsub : 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
277 int vsub = plane == 1 || plane == 2 ? b->vsub : 0; local
279 int outh = FF_CEIL_RSHIFT(dst_buf->height, vsub);
400 b->vsub = pix_desc->log2_chroma_h;
H A Dvf_signalstats.c40 int vsub; // vertical subsampling member in struct:__anon3422
113 s->vsub = desc->log2_chroma_h;
119 s->chromah = FF_CEIL_RSHIFT(inlink->h, s->vsub);
136 const int chromay = y >> s->vsub;
145 const int yc = y >> s->vsub;
H A Dvf_rotate.c46 "hsub", "vsub",
73 int hsub, vsub; member in struct:__anon3417
202 rot->vsub = pixdesc->log2_chroma_h;
207 rot->var_values[VAR_VSUB] = 1<<rot->vsub;
494 int vsub = plane == 1 || plane == 2 ? rot->vsub : 0; local
496 const int outh = FF_CEIL_RSHIFT(outlink->h, vsub);
499 .inh = FF_CEIL_RSHIFT(inlink->h, vsub),
H A Dvf_fade.c57 int hsub, vsub, bpp; member in struct:FadeContext
139 s->vsub = pixdesc->log2_chroma_h;
225 const int height= FF_CEIL_RSHIFT(frame->height, s->vsub);
H A Dvf_hue.c75 int vsub; member in struct:__anon3401
248 hue->vsub = desc->log2_chroma_h;
381 FF_CEIL_RSHIFT(inlink->h, hue->vsub));
H A Dvf_owdenoise.c44 int hsub, vsub; member in struct:__anon3413
240 const int ch = FF_CEIL_RSHIFT(inlink->h, s->vsub);
291 s->vsub = desc->log2_chroma_h;
H A Dvf_vignette.c256 const int vsub = chroma ? s->desc->log2_chroma_h : 0; local
258 const int h = FF_CEIL_RSHIFT(inlink->h, vsub);
271 fmap += fmap_linesize << vsub;
H A Dvsrc_mptestsrc.c57 int hsub, vsub; member in struct:MPTestContext
279 test->vsub = pix_desc->log2_chroma_h;
303 cw = FF_CEIL_RSHIFT(w, test->hsub), ch = FF_CEIL_RSHIFT(h, test->vsub);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_boxblur.c39 "vsub",
66 int hsub, vsub; member in struct:__anon2068
157 boxblur->vsub = desc->log2_chroma_h;
162 var_values[VAR_CH] = ch = h>>boxblur->vsub;
164 var_values[VAR_VSUB] = 1<<boxblur->vsub;
314 int cw = inlink->w >> boxblur->hsub, ch = h0 >> boxblur->vsub;
H A Dvf_gradfun.c172 int vsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_h; local
179 gf->chroma_h = -((-inlink->h) >> vsub);
180 gf->chroma_r = av_clip(((((gf->radius >> hsub) + (gf->radius >> vsub)) / 2 ) + 1) & ~1, 4, 32);
H A Dvf_unsharp.c64 int hsub, vsub; member in struct:__anon2097
189 unsharp->vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
219 int ch = SHIFTUP(link->h, unsharp->vsub);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/arm/
H A Dh264pred_neon.S142 vsub.i16 d3, d3, d2
145 vsub.i16 d2, d2, d3
148 vsub.i16 d6, d5, d3
221 vsub.i16 d3, d3, d2
224 vsub.i16 d2, d2, d3
227 vsub.i16 d6, d5, d3
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/arm/
H A Dh264pred_neon.S142 vsub.i16 d3, d3, d2
145 vsub.i16 d2, d2, d3
148 vsub.i16 d6, d5, d3
221 vsub.i16 d3, d3, d2
224 vsub.i16 d2, d2, d3
227 vsub.i16 d6, d5, d3
H A Dvc1dsp_neon.S90 vsub.i16 q13, q0, q2 @ temp2 = src[0] - src[2]
141 vsub.i16 d21, d0, d1 @ temp2 = src[0] - src[32]
168 vsub.i16 q9, q13, q12 @ t3|t4 = - (temp3a|temp4a) + (temp3b|temp4b)
175 vsub.i16 q11, q14, q15 @ t8|t7 = old t1|t2 - old t3|t4
182 vsub.i16 d19, d19, d25 @ t4 -= temp4
249 vsub.i16 q14, q8, q12 @ temp2 = src[0] - src[32]
254 vsub.i16 q2, q2, q3 @ t4 = 6/2 * src[16] - 16/2 * src[48]
299 vsub.i16 q1, q8, q1 @ t8 = t1 - t3
301 vsub.i16 q2, q12, q2 @ t7 = t2 - t4
344 vsub
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/opengl/penguin/
H A Dtrackball.c87 vsub(const float *src1, const float *src2, float *dst) function
189 vsub(p1, p2, d);

Completed in 127 milliseconds

1234