Searched refs:drawgrid (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvf_drawbox.c288 static av_pure av_always_inline int pixel_belongs_to_grid(DrawBoxContext *drawgrid, int x, int y) argument
296 x -= drawgrid->x;
297 y -= drawgrid->y;
299 x_modulo = x % drawgrid->w;
300 y_modulo = y % drawgrid->h;
304 x_modulo += drawgrid->w;
306 y_modulo += drawgrid->h;
308 return x_modulo < drawgrid->thickness // Belongs to vertical line
309 || y_modulo < drawgrid->thickness; // Belongs to horizontal line
314 DrawBoxContext *drawgrid local
359 AVFILTER_DEFINE_CLASS(drawgrid); variable
[all...]
H A Dallfilters.c131 REGISTER_FILTER(DRAWGRID, drawgrid, vf);

Completed in 47 milliseconds