Searched refs:vsub (Results 26 - 50 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_mpdecimate.c50 int hsub, vsub; ///< chroma subsampling values member in struct:__anon3410
124 int vsub = plane == 1 || plane == 2 ? decimate->vsub : 0; local
129 FF_CEIL_RSHIFT(ref->height, vsub)))
185 decimate->vsub = pix_desc->log2_chroma_h;
H A Dvf_pad.c55 "vsub",
218 int vsub = s->draw.vsub[plane]; local
220 (s->y >> vsub) * frame->linesize[plane];
242 int vsub = s->draw.vsub[planes[i]]; local
245 uint8_t *end = start + (frame->height >> vsub) *
251 (s->y >> vsub) * frame->linesize[planes[i]];
254 ((s->h - s->y - frame->height) >> vsub) * frame->linesize[planes[i]];
263 int vsub1 = s->draw.vsub[plane
315 int vsub = s->draw.vsub[i]; local
[all...]
H A Dvf_perspective.c47 int hsub, vsub; member in struct:PerspectiveContext
53 int w, int h, int hsub, int vsub);
134 s->vsub = desc->log2_chroma_h;
199 int w, int h, int hsub, int vsub)
205 int sy = y << vsub;
211 v = s->pv[sx + sy * linesize][1] >> vsub;
267 int w, int h, int hsub, int vsub)
273 int sy = y << vsub;
279 v = s->pv[sx + sy * linesize][1] >> vsub;
357 int vsub local
196 resample_cubic(PerspectiveContext *s, uint8_t *dst, int dst_linesize, uint8_t *src, int src_linesize, int w, int h, int hsub, int vsub) argument
264 resample_linear(PerspectiveContext *s, uint8_t *dst, int dst_linesize, uint8_t *src, int src_linesize, int w, int h, int hsub, int vsub) argument
[all...]
H A Dvf_delogo.c242 int vsub = plane == 1 || plane == 2 ? vsub0 : 0; local
247 FF_CEIL_RSHIFT(inlink->h, vsub),
248 sar, s->x>>hsub, s->y>>vsub,
252 FF_CEIL_RSHIFT(s->h + (s->y & ((1<<vsub)-1)), vsub),
253 s->band>>FFMIN(hsub, vsub),
H A Dvf_transpose.c56 int hsub, vsub; member in struct:TransContext
108 trans->vsub = desc_in->log2_chroma_h;
153 int vsub = plane == 1 || plane == 2 ? trans->vsub : 0; local
155 int inh = in->height >> vsub;
157 int outh = FF_CEIL_RSHIFT(out->height, vsub);
H A Dvf_overlay.c49 "vsub",
113 int hsub, vsub; ///< chroma subsampling values member in struct:OverlayContext
147 s->y = normalize_xy(s->var_values[VAR_Y], s->vsub);
279 s->vsub = pix_desc->log2_chroma_h;
486 int vsub = i ? s->vsub : 0; local
488 int src_hp = FF_CEIL_RSHIFT(src_h, vsub);
490 int dst_hp = FF_CEIL_RSHIFT(dst_h, vsub);
491 int yp = y>>vsub;
498 ap = src->data[3] + (j<<vsub) * sr
[all...]
H A Dvf_crop.c49 "vsub",
87 int hsub, vsub; ///< chroma subsampling member in struct:CropContext
160 s->vsub = pix_desc->log2_chroma_h;
188 s->h &= ~((1 << s->vsub) - 1);
223 s->y &= ~((1 << s->vsub) - 1);
273 s->y &= ~((1 << s->vsub) - 1);
285 frame->data[i] += (s->y >> s->vsub) * frame->linesize[i];
H A Dvf_smartblur.c58 int vsub; member in struct:__anon3425
165 sblur->vsub = desc->log2_chroma_h;
170 FF_CEIL_RSHIFT(inlink->h, sblur->vsub),
246 int ch = FF_CEIL_RSHIFT(inlink->h, sblur->vsub);
H A Dvf_boxblur.c44 "vsub",
70 int hsub, vsub; member in struct:BoxBlurContext
149 s->vsub = desc->log2_chroma_h;
154 var_values[VAR_CH] = ch = h>>s->vsub;
156 var_values[VAR_VSUB] = 1<<s->vsub;
305 int cw = FF_CEIL_RSHIFT(inlink->w, s->hsub), ch = FF_CEIL_RSHIFT(in->height, s->vsub);
H A Dvf_drawbox.c41 "hsub", "vsub",
76 int vsub, hsub; ///< chroma subsampling member in struct:DrawBoxContext
129 s->vsub = desc->log2_chroma_h;
136 var_values[VAR_VSUB] = s->vsub;
210 frame->linesize[plane] * (y >> s->vsub);
323 frame->linesize[plane] * (y >> drawgrid->vsub);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_drawbox.c37 int vsub, hsub; ///< chroma subsampling member in struct:__anon2073
82 drawbox->vsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_h;
106 picref->linesize[plane] * (y >> drawbox->vsub);
H A Dvf_fade.c34 int hsub, vsub, bpp; member in struct:__anon2075
91 fade->vsub = pixdesc->log2_chroma_h;
121 p = outpic->data[plane] + ((y+i) >> fade->vsub) * outpic->linesize[plane];
H A Dvf_overlay.c67 int hsub, vsub; ///< chroma subsampling values member in struct:__anon2087
114 over->vsub = pix_desc->log2_chroma_h;
282 int vsub = i ? over->vsub : 0; local
284 (start_y >> vsub) * dst->linesize[i];
288 int hp = FFALIGN(height, 1<<vsub) >> vsub;
290 sp += ((slice_y - y) >> vsub) * src->linesize[i];
298 if (hsub && vsub && j+1 < hp && k+1 < wp) {
301 } else if (hsub || vsub) {
[all...]
H A Dvf_showinfo.c47 int i, plane, vsub = av_pix_fmt_descriptors[inlink->format].log2_chroma_h; local
52 int h = plane == 1 || plane == 2 ? inlink->h >> vsub : inlink->h;
H A Dvf_lut.c67 int hsub, vsub; member in struct:__anon2086
217 lut->vsub = desc->log2_chroma_h;
325 int vsub = plane == 1 || plane == 2 ? lut->vsub : 0; local
328 inrow = inpic ->data[plane] + (y>>vsub) * inpic ->linesize[plane];
329 outrow = outpic->data[plane] + (y>>vsub) * outpic->linesize[plane];
331 for (i = 0; i < h>>vsub; i ++) {
H A Dvf_delogo.c247 int vsub = plane == 1 || plane == 2 ? vsub0 : 0; local
251 inlink->w>>hsub, inlink->h>>vsub,
252 delogo->x>>hsub, delogo->y>>vsub,
253 delogo->w>>hsub, delogo->h>>vsub,
254 delogo->band>>FFMIN(hsub, vsub),
H A Dvf_drawtext.c129 int hsub, vsub; ///< chroma subsampling values member in struct:__anon2074
565 dtext->vsub = pix_desc->log2_chroma_h;
621 #define SET_PIXEL_YUV(picref, yuva_color, val, x, y, hsub, vsub) { \
625 if (((x) & ((1<<(hsub)) - 1)) == 0 && ((y) & ((1<<(vsub)) - 1)) == 0) {\
626 chroma_pos1 = ((x) >> (hsub)) + ((y) >> (vsub)) * picref->linesize[1]; \
627 chroma_pos2 = ((x) >> (hsub)) + ((y) >> (vsub)) * picref->linesize[2]; \
635 const uint8_t yuva_color[4], int hsub, int vsub)
648 SET_PIXEL_YUV(picref, yuva_color, src_val, c+x, y+r, hsub, vsub);
690 int hsub, int vsub, int is_rgba_packed, uint8_t rgba_map[4])
705 SET_PIXEL_YUV(picref, color, 255, i+x, y+j, hsub, vsub);
633 draw_glyph_yuv(AVFilterBufferRef *picref, FT_Bitmap *bitmap, unsigned int x, unsigned int y, unsigned int width, unsigned int height, const uint8_t yuva_color[4], int hsub, int vsub) argument
687 drawbox(AVFilterBufferRef *picref, unsigned int x, unsigned int y, unsigned int width, unsigned int height, uint8_t *line[4], int pixel_step[4], uint8_t color[4], int hsub, int vsub, int is_rgba_packed, uint8_t rgba_map[4]) argument
[all...]
H A Dvf_crop.c74 int hsub, vsub; ///< chroma subsampling member in struct:__anon2069
175 crop->vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
199 crop->h &= ~((1 << crop->vsub) - 1);
222 crop->y &= ~((1 << crop->vsub) - 1);
266 crop->y &= ~((1 << crop->vsub) - 1);
278 ref2->data[i] += (crop->y >> crop->vsub) * ref2->linesize[i];
H A Dvf_scale.c44 "vsub",
74 int hsub, vsub; ///< chroma subsampling member in struct:__anon2090
244 scale->vsub = av_pix_fmt_descriptors[link->format].log2_chroma_h;
275 cur_pic->data[1] + (y>>scale->vsub) * cur_pic->linesize[1];
276 data[2] = cur_pic->data[2] + (y>>scale->vsub) * cur_pic->linesize[2];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/arm/
H A Dmdct_neon.S52 vsub.f32 d4, d6, d4
107 vsub.f32 d4, d4, d24
108 vsub.f32 d5, d5, d25
183 vsub.f32 d0, d18, d0 @ in4d-in4u I
188 vsub.f32 d16, d16, d2 @ in0u-in2d R
204 vsub.f32 d6, d6, d7 @ -R*c-I*s
206 vsub.f32 d24, d25, d24 @ I*s-R*c
216 vsub.f32 d0, d18, d0 @ in4d-in4u I
221 vsub.f32 d16, d16, d2 @ in0u-in2d R
286 vsub
[all...]
H A Dvp3dsp_neon.S49 vsub.i16 q1, q2, q3
51 vsub.i16 q0, q1, q0
54 vsub.i16 q3, q9, q0
117 vsub.s16 q8, q8, q12
152 vsub.s16 q15, q4, q2 // B = ip[1] * C7 - ip[7] * C1
185 vsub.s16 q13, q2, q1 // D = ip[5] * C3 - ip[3] * C5
186 vsub.s16 q1, q9, q11 // (A - C)
188 vsub.s16 q9, q15, q13 // (B - D)
208 vsub.s16 q14, q4, q3 // H = ip[2] * C6 - ip[6] * C2
224 vsub
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/arm/
H A Dmdct_neon.S50 vsub.f32 d4, d6, d4
105 vsub.f32 d4, d4, d24
106 vsub.f32 d5, d5, d25
181 vsub.f32 d0, d18, d0 @ in4d-in4u I
186 vsub.f32 d16, d16, d2 @ in0u-in2d R
202 vsub.f32 d6, d6, d7 @ -R*c-I*s
204 vsub.f32 d24, d25, d24 @ I*s-R*c
214 vsub.f32 d0, d18, d0 @ in4d-in4u I
219 vsub.f32 d16, d16, d2 @ in0u-in2d R
284 vsub
[all...]
H A Dvp3dsp_neon.S49 vsub.i16 q1, q2, q3
51 vsub.i16 q0, q1, q0
54 vsub.i16 q3, q9, q0
122 vsub.s16 q8, q8, q12
157 vsub.s16 q15, q4, q2 // B = ip[1] * C7 - ip[7] * C1
190 vsub.s16 q13, q2, q1 // D = ip[5] * C3 - ip[3] * C5
191 vsub.s16 q1, q9, q11 // (A - C)
193 vsub.s16 q9, q15, q13 // (B - D)
213 vsub.s16 q14, q4, q3 // H = ip[2] * C6 - ip[6] * C2
229 vsub
[all...]
H A Daacpsdsp_neon.S169 vsub.f32 d18, d19, d31
170 vsub.f32 d19, d20, d30
171 vsub.f32 d0, d21, d29
172 vsub.f32 d1, d22, d28
177 vsub.f32 d22, d23, d27
178 vsub.f32 d23, d24, d26
H A Dac3dsp_neon.S103 vsub.i32 q3, q3, q15
144 vsub.s32 d19, d16, d17
166 vsub.f32 d19, d16, d17

Completed in 101 milliseconds

1234