Searched refs:jpeg_read_scanlines (Results 1 – 8 of 8) sorted by relevance
/external/jpeg/ |
D | example.c | 377 (void) jpeg_read_scanlines(&cinfo, buffer, 1); in read_JPEG_file()
|
D | jpeglib.h | 924 #define jpeg_read_scanlines jReadScanlines macro 1041 EXTERN(JDIMENSION) jpeg_read_scanlines JPP((j_decompress_ptr cinfo,
|
D | jdapistd.c | 178 jpeg_read_scanlines (j_decompress_ptr cinfo, JSAMPARRAY scanlines, in jpeg_read_scanlines() function
|
D | djpeg.c | 583 num_scanlines = jpeg_read_scanlines(&cinfo, dest_mgr->buffer, in main()
|
D | libjpeg.doc | 147 jpeg_read_scanlines(...); 160 into in-memory buffers passed to jpeg_read_scanlines(). 656 jpeg_read_scanlines(...); 658 Now you can read the decompressed image data by calling jpeg_read_scanlines() 660 to be read (ie, the height of your working buffer); jpeg_read_scanlines() 680 jpeg_read_scanlines() reads at least one scanline per call, until the 684 jpeg_read_scanlines() fills it. (The current implementation returns only a 686 always provide a loop that calls jpeg_read_scanlines() repeatedly until the 1174 buffer passed to jpeg_read_scanlines(). If the buffer is smaller, the 1608 * jpeg_read_scanlines(): will return the number of scanlines already [all …]
|
/external/skia/src/images/ |
D | SkImageDecoder_libjpeg.cpp | 164 int row_count = jpeg_read_scanlines(cinfo, &rowptr, 1); in skip_src_rows() 355 int row_count = jpeg_read_scanlines(&cinfo, &rowptr, 1); in onDecode() 434 int row_count = jpeg_read_scanlines(&cinfo, &rowptr, 1); in onDecode()
|
/external/webkit/Source/WebCore/platform/image-decoders/jpeg/ |
D | JPEGImageDecoder.cpp | 482 if (jpeg_read_scanlines(info, samples, 1) != 1) in outputScanlines()
|
/external/opencv/otherlibs/highgui/ |
D | grfmt_jpeg.cpp | 392 jpeg_read_scanlines( cinfo, buffer, 1 ); in ReadData()
|