Searched defs:vscale (Results 1 - 3 of 3) sorted by relevance

/external/libvpx/vpx_scale/generic/
H A Dvpxscale.c320 * unsigned int vscale : Vertical scale factor numerator.
350 unsigned int vscale,
411 switch (vratio * 10 / vscale)
508 if (vscale == 2 && vratio == 1)
537 dest_band_height = source_band_height * vratio / vscale;
566 Scale1Dv(&temp_area[j], dest_pitch, vscale, source_band_height + 1,
589 * unsigned int vscale : Vertical scale factor numerator.
611 unsigned int vscale,
618 int dh = (vscale - 1 + src->y_height * vratio) / vscale;
335 Scale2D( unsigned char *source, int source_pitch, unsigned int source_width, unsigned int source_height, unsigned char *dest, int dest_pitch, unsigned int dest_width, unsigned int dest_height, unsigned char *temp_area, unsigned char temp_area_height, unsigned int hscale, unsigned int hratio, unsigned int vscale, unsigned int vratio, unsigned int interlaced ) argument
603 vp8_scale_frame( YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst, unsigned char *temp_area, unsigned char temp_height, unsigned int hscale, unsigned int hratio, unsigned int vscale, unsigned int vratio, unsigned int interlaced ) argument
[all...]
/external/opencv/cxcore/include/
H A Dcxcore.h1388 float hscale, vscale; member in struct:CvFont
1398 double hscale, double vscale,
/external/opencv/cxcore/src/
H A Dcxdrawing.cpp2203 int hscale, vscale, default_shear, italic_shear; local
2227 vscale = cvRound(font->vscale*XY_ONE);
2228 default_shear = cvRound(font->shear*font->vscale*XY_ONE);
2229 italic_shear = !(font->font_face & CV_FONT_ITALIC) ? 0 : cvRound(font->vscale*.25*XY_ONE);
2237 vscale = -vscale;
2240 view_y = (org.y << XY_SHIFT) + base_line*vscale;
2298 pt[count++].y = p.y*vscale + view_y;
2308 cvInitFont( CvFont *font, int font_face, double hscale, double vscale, argument
[all...]

Completed in 203 milliseconds