HomeSort by relevance Sort by last modified time
    Searched refs:last_y (Results 1 - 17 of 17) sorted by null

  /external/webp/include/webp/
decode.h 347 // *last_y is the index of last decoded row in raster scan order. Some pointers
348 // (*last_y, *width etc.) can be NULL if corresponding information is not
352 const WebPIDecoder* idec, int* last_y,
359 const WebPIDecoder* idec, int* last_y,
366 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v,
368 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height,
  /external/webp/src/dec/
webpi_dec.h 39 int last_y; // coordinate of the line that was last output member in struct:WebPDecParams
idec_dec.c 841 if (height != NULL) *height = idec->params_.last_y;
849 uint8_t* WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y,
857 if (last_y != NULL) *last_y = idec->params_.last_y;
865 uint8_t* WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y,
875 if (last_y != NULL) *last_y = idec->params_.last_y;
io_dec.c 279 uint8_t* const dst_a = buf->a + p->last_y * buf->a_stride;
281 uint8_t* const dst_y = buf->y + p->last_y * buf->y_stride;
290 assert(p->last_y + expected_num_lines_out <= io->scaled_height);
399 num_lines_out += ExportRGB(p, p->last_y + num_lines_out);
471 const int y_end = p->last_y + lines_left;
627 p->last_y += num_lines_out;