Searched refs:interlaced (Results 1 - 25 of 66) sorted by last modified time

123

/external/qemu/distrib/libpng-1.2.46/
H A Dpng.h1136 #define PNG_INTERLACE_NONE 0 /* Non-interlaced image */
1352 png_uint_32 iwidth PNG_DEPSTRUCT; /* width of current interlaced row in pixels */
1372 png_byte interlaced PNG_DEPSTRUCT; /* PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */
3472 /* Expand an interlaced row */
3483 /* Grab pixels out of a row for an interlaced pass */
H A Dpngpread.c955 /* Blow up interlaced rows to full size */
956 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
1167 if (png_ptr->interlaced)
H A Dpngread.c659 /* If interlaced and we do not need a new row, combine row and return */
660 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
823 /* Blow up interlaced rows to full size */
824 if (png_ptr->interlaced &&
857 /* Read one or more rows of image data. If the image is interlaced,
874 * also, but you may. If the image is not interlaced, or if you have
956 if (png_ptr->interlaced)
979 // number of rows in a 8x8 block for each interlaced pass.
997 if (!png_ptr->interlaced)
1067 * each pass of a interlaced imag
[all...]
H A Dpngrutil.c490 png_ptr->interlaced = (png_byte)interlace_type;
2521 of interlaced images, depending on the mask value.
3131 if (png_ptr->interlaced)
3260 if (png_ptr->interlaced)
3398 if (png_ptr->interlaced)
H A Dpngtrans.c97 if (png_ptr && png_ptr->interlaced)
H A Dpngwrite.c731 /* Write a few rows of image data. If the image is interlaced,
756 * if you are writing an interlaced image.
771 /* Initialize interlace handling. If image is not interlaced,
845 /* If interlaced and not interested in row, return */
846 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
927 if (png_ptr->interlaced && png_ptr->pass < 6 &&
H A Dpngwutil.c492 png_ptr->interlaced = (png_byte)interlace_type;
1829 /* If interlaced, we need to set up width and height of pass */
1830 if (png_ptr->interlaced)
1887 /* If interlaced, go to next pass */
1888 if (png_ptr->interlaced)
/external/mesa3d/docs/
H A DMESA_swap_control.spec87 full frame of video data. In the case of an interlaced monitor,
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_compositor.c894 if (buffer->interlaced) {
H A Dvl_mpeg12_decoder.c686 assert(!target->interlaced);
H A Dvl_video_buffer.c358 depth = buffer->interlaced ? 2 : 1;
417 if (tmpl->interlaced)
423 tmpl->interlaced ? 2 : 1, PIPE_USAGE_STATIC
427 if (result && tmpl->interlaced)
/external/mesa3d/src/gallium/include/pipe/
H A Dp_video_decoder.h113 bool interlaced; member in struct:pipe_video_buffer
H A Dp_video_state.h194 uint8_t interlaced; member in struct:pipe_mpeg4_picture_desc
/external/mesa3d/src/gallium/state_trackers/vdpau/
H A Ddecode.c261 picture->interlaced = picture_info->interlaced;
467 !buffer_support[vlsurf->video_buffer->interlaced]) {
477 vlsurf->templat.interlaced = screen->get_video_param(screen, dec->profile, PIPE_VIDEO_CAP_PREFERS_INTERLACED);
H A Dsurface.c88 p_surf->templat.interlaced = pipe->screen->get_video_param
181 if (p_surf->templat.interlaced)
363 if (i > !!vlsurf->templat.interlaced)
/external/mesa3d/src/gallium/state_trackers/xvmc/
H A Dsurface.c186 tmpl.interlaced = pipe->screen->get_video_param
/external/libvpx/libvpx/vpx_scale/generic/
H A Dvpx_scale.c222 * unsigned int interlaced : Interlace flag.
252 unsigned int interlaced
324 if (interlaced) {
325 /* if the content is interlaced, point sampling is used */
396 if (interlaced)
466 * unsigned int interlaced : Interlace flag.
488 unsigned int interlaced
497 temp_area, temp_height, hscale, hratio, vscale, vratio, interlaced);
509 temp_area, temp_height, hscale, hratio, vscale, vratio, interlaced);
521 temp_area, temp_height, hscale, hratio, vscale, vratio, interlaced);
[all...]
/external/libvpx/libvpx/vpx_scale/
H A Dvpx_scale.h25 unsigned int interlaced);
/external/libpng/contrib/gregbook/
H A Dwpng.c6 maxval = 255) to PNG. Non-interlaced PNGs are written progressively;
7 interlaced PNGs are read and written in one memory-intensive blast.
182 wpng_info.interlaced = FALSE;
253 wpng_info.interlaced = TRUE;
418 " -interlace\twrite interlaced PNG image\n"
696 /* read and write the image, either in its entirety (if writing interlaced
697 * PNG) or row by row (if non-interlaced) */
702 if (wpng_info.interlaced) {
731 } else /* not interlaced: write progressively (row by row) */ {
H A Dwritepng.c153 interlace_type = mainprog_ptr->interlaced? PNG_INTERLACE_ADAM7 :
297 int writepng_encode_row(mainprog_info *mainprog_ptr) /* NON-interlaced only! */
327 int writepng_encode_finish(mainprog_info *mainprog_ptr) /* NON-interlaced! */
H A Dwritepng.h110 int interlaced; member in struct:_mainprog_info
/external/libpng/
H A Dpngpread.c941 row_info.width = png_ptr->iwidth; /* NOTE: width of current interlaced row */
960 * interlaced row count:
982 /* Blow up interlaced rows to full size */
983 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
1193 if (png_ptr->interlaced)
H A Dpngread.c402 row_info.width = png_ptr->iwidth; /* NOTE: width of current interlaced row */
450 /* If interlaced and we do not need a new row, combine row and return.
453 * untransformed) and, because of the libpng API for interlaced images, this
456 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE))
555 * interlaced count:
585 /* Blow up interlaced rows to full size */
586 if (png_ptr->interlaced &&
618 /* Read one or more rows of image data. If the image is interlaced,
635 * also, but you may. If the image is not interlaced, or if you have
720 if (png_ptr->interlaced)
[all...]
H A Dpngrutil.c852 png_ptr->interlaced = (png_byte)interlace_type;
3021 * handles the two methods of progressive display of interlaced images,
3077 /* For non-interlaced images this reduces to a memcpy(). A memcpy()
3084 if (png_ptr->interlaced && (png_ptr->transformations & PNG_INTERLACE) &&
3917 * take care to ensure that it works correctly if the image is interlaced -
4196 if (png_ptr->interlaced)
4268 if (png_ptr->interlaced)
4458 if (png_ptr->interlaced)
H A Dpngstruct.h266 png_uint_32 iwidth; /* width of current interlaced row in pixels */
296 png_byte interlaced; /* PNG_INTERLACE_NONE, PNG_INTERLACE_ADAM7 */ member in struct:png_struct_def

Completed in 296 milliseconds

123