Searched defs:image_height (Results 1 - 18 of 18) sorted by relevance

/external/libjpeg-turbo/
H A Drdjpgcom.c279 unsigned int image_height, image_width; local
287 image_height = read_2_bytes();
309 image_width, image_height, num_components, data_precision);
H A Djpeglib.h308 JDIMENSION image_height; /* input image height */ member in struct:jpeg_compress_struct
400 * processing loop, e.g., "while (next_scanline < image_height)".
403 JDIMENSION next_scanline; /* 0 .. image_height-1 */
481 JDIMENSION image_height; /* nominal image height */ member in struct:jpeg_decompress_struct
/external/webrtc/webrtc/common_video/
H A Dvideo_frame.cc36 int ExpectedSize(int plane_stride, int image_height, PlaneType type) { argument
38 return plane_stride * image_height;
39 return plane_stride * ((image_height + 1) / 2);
/external/libpng/contrib/gregbook/
H A Drpng-win.c151 static ulg image_width, image_height, image_rowbytes; variable
342 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
500 wimage_rowbytes*image_height)))
516 bmih->biHeight = -((long)image_height);
526 for (j = 0; j < image_height; ++j) {
566 image_height+extra_height, NULL, NULL, hInst, NULL);
599 for (lastrow = row = 0; row < image_height; ++row) {
649 if (lastrow < image_height) {
653 rect.bottom = (LONG)image_height; /* possibly off by one? */
702 rc = StretchDIBits(hdc, 0, 0, image_width, image_height,
[all...]
H A Drpng-x.c135 static ulg image_width, image_height, image_rowbytes; variable
303 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
557 window = XCreateWindow(display, root, 0, 0, image_width, image_height, 0,
580 size_hints->min_height = size_hints->max_height = (int)image_height;
634 XFillRectangle(display, window, gc, 0, 0, image_width, image_height);
651 xdata = (uch *)malloc(4*image_width*image_height);
654 xdata = (uch *)malloc(2*image_width*image_height);
657 xdata = (uch *)malloc(image_width*image_height);
667 (char *)xdata, image_width, image_height, pad, 0);
714 for (lastrow = row = 0; row < image_height;
[all...]
/external/libyuv/files/util/
H A Dconvert.cc31 int image_width = 0, image_height = 0; // original width and height variable
93 image_height = atoi(argv[++c]); // NOLINT
135 if (image_width == 0 || image_height == 0) {
138 image_height = org_height;
141 image_height = rec_height;
153 dst_height = Abs(image_height);
221 int org_size = Abs(image_width) * Abs(image_height) * 4; // ARGB
224 const int y_size = Abs(image_width) * Abs(image_height);
226 ((Abs(image_height) + 1) / 2);
259 printf("Size: %dx%d to %dx%d\n", image_width, image_height,
[all...]
H A Dpsnr_main.cc56 int image_width = 0, image_height = 0; variable
172 image_height = atoi(argv[++c]); // NOLINT
205 if (image_width == 0 || image_height == 0) {
218 image_height = org_height;
225 image_height = org_height;
229 image_height = rec_height;
271 distorted_frame->y = CalcSSIM(ch_org, ch_rec, image_width, image_height);
273 (image_height + 1) / 2);
275 (image_height + 1) / 2);
348 const int y_size = image_width * image_height;
[all...]
H A Dssim.cc272 const int image_width, const int image_height) {
274 const int KERNEL_Y = (image_height < KERNEL) ? image_height : KERNEL;
277 const int start_y = start_max(image_height - KERNEL_Y, KERNEL_Y);
282 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
289 for (int j = KERNEL_Y; j < image_height - KERNEL_Y; ++j) {
291 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
321 for (int j = start_y; j < image_height; ++j) {
323 SSIM += GetSSIM(org, rec, i, j, image_width, image_height, stride);
271 CalcSSIM(const uint8 *org, const uint8 *rec, const int image_width, const int image_height) argument
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page_colors.cpp176 int image_height,
326 int image_height,
376 int image_height,
401 int image_height,
484 int image_height,
524 int image_height,
611 int image_height,
673 int image_height,
817 int image_height,
826 if (m_nComponents > 3 || image_width * image_height < nMaxColor
172 TranslateImageLine(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels, int image_width, int image_height, FX_BOOL bTransMask) const argument
372 TranslateImageLine(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels, int image_width, int image_height, FX_BOOL bTransMask) const argument
480 TranslateImageLine(uint8_t* pDestBuf, const uint8_t* pSrcBuf, int pixels, int image_width, int image_height, FX_BOOL bTransMask) const argument
[all...]
/external/webp/src/dec/
H A Dwebp.c288 int image_height = 0; local
332 image_height = canvas_height;
376 &image_width, &image_height)) {
385 if (!VP8LGetInfo(data, data_size, &image_width, &image_height, has_alpha)) {
391 if (canvas_width != image_width || canvas_height != image_height) {
410 if (height != NULL) *height = image_height;
/external/pdfium/third_party/libjpeg/
H A Dfpdfapi_jdmarker.c244 JDIMENSION image_width, image_height; local
253 INPUT_2BYTES(cinfo, image_height, return FALSE);
260 if (image_height <= JPEG_MAX_DIMENSION)
261 cinfo->image_height = image_height;
266 (int) cinfo->image_width, (int) cinfo->image_height,
275 if (cinfo->image_height <= 0 || cinfo->image_width <= 0
H A Djpeglib.h382 JDIMENSION image_height; /* input image height */ member in struct:jpeg_compress_struct
453 * processing loop, e.g., "while (next_scanline < image_height)".
456 JDIMENSION next_scanline; /* 0 .. image_height-1 */
523 JDIMENSION image_height; /* nominal image height */ member in struct:jpeg_decompress_struct
/external/ImageMagick/coders/
H A Dwmf.c2550 image_height,
2742 image_height = image_height_inch * resolution_y;
2765 ddata->scale_y = (image_height/bounding_height);
2771 ddata->scale_y = (-image_height/bounding_height);
2797 " Image size: %gx%g",image_width,image_height);
2848 image->rows=(unsigned long) ceil(image_height);
2548 image_height, local
H A Dpng.c4981 image_height,
6230 image_height=(size_t) mng_get_long(&p[4]);
6244 (image_height < mng_info->mng_height) ||
4974 image_height, local
/external/libpng/
H A Dpngread.c693 png_uint_32 i, image_height; local
737 image_height=png_ptr->height;
742 for (i = 0; i < image_height; i++)
/external/pdfium/third_party/lpng_v163/
H A Dpngread.c624 png_uint_32 i, image_height; local
667 image_height=png_ptr->height;
672 for (i = 0; i < image_height; i++)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 541 milliseconds