HomeSort by relevance Sort by last modified time
    Searched full:jpeg_write_scanlines (Results 1 - 25 of 27) sorted by null

1 2

  /external/jpeg/
jcapistd.c 53 /* Ready for application to drive first pass through jpeg_write_scanlines
69 * Note: we warn about excess calls to jpeg_write_scanlines() since
77 jpeg_write_scanlines (j_compress_ptr cinfo, JSAMPARRAY scanlines,
95 * jpeg_write_scanlines. This lets output of the frame/scan headers be
97 * jpeg_start_compress and jpeg_write_scanlines.
example.c 147 /* jpeg_write_scanlines(...); */
157 /* jpeg_write_scanlines expects an array of pointers to scanlines.
162 (void) jpeg_write_scanlines(&cinfo, row_pointer, 1);
183 * In the above loop, we ignored the return value of jpeg_write_scanlines,
189 * then jpeg_write_scanlines will write all the lines passed (or else exit
jcapimin.c 188 * first call to jpeg_write_scanlines() or jpeg_write_raw_data().
jcmaster.c 427 /* Will write frame/scan headers at first jpeg_write_scanlines call */
480 * This is called by jpeg_write_scanlines if call_pass_startup is TRUE.
484 * jpeg_write_scanlines loop.
jpeglib.h 354 * jpeg_write_scanlines(). Application may use this to control its
915 #define jpeg_write_scanlines macro
    [all...]
libjpeg.doc 120 jpeg_write_scanlines(...);
132 The image data to be compressed is supplied to jpeg_write_scanlines() from
380 jpeg_write_scanlines(...);
382 Now write all the required image data by calling jpeg_write_scanlines()
412 jpeg_write_scanlines(&cinfo, row_pointer, 1);
415 jpeg_write_scanlines() returns the number of scanlines actually written.
    [all...]
cjpeg.c 585 (void) jpeg_write_scanlines(&cinfo, src_mgr->buffer, num_scanlines);
  /external/qemu/distrib/jpeg-6b/
jcapistd.c 53 /* Ready for application to drive first pass through jpeg_write_scanlines
69 * Note: we warn about excess calls to jpeg_write_scanlines() since
77 jpeg_write_scanlines (j_compress_ptr cinfo, JSAMPARRAY scanlines,
95 * jpeg_write_scanlines. This lets output of the frame/scan headers be
97 * jpeg_start_compress and jpeg_write_scanlines.
example.c 147 /* jpeg_write_scanlines(...); */
157 /* jpeg_write_scanlines expects an array of pointers to scanlines.
162 (void) jpeg_write_scanlines(&cinfo, row_pointer, 1);
183 * In the above loop, we ignored the return value of jpeg_write_scanlines,
189 * then jpeg_write_scanlines will write all the lines passed (or else exit
jcapimin.c 188 * first call to jpeg_write_scanlines() or jpeg_write_raw_data().
jcmaster.c 427 /* Will write frame/scan headers at first jpeg_write_scanlines call */
480 * This is called by jpeg_write_scanlines if call_pass_startup is TRUE.
484 * jpeg_write_scanlines loop.
jpeglib.h 354 * jpeg_write_scanlines(). Application may use this to control its
915 #define jpeg_write_scanlines macro
    [all...]
libjpeg.doc 120 jpeg_write_scanlines(...);
132 The image data to be compressed is supplied to jpeg_write_scanlines() from
380 jpeg_write_scanlines(...);
382 Now write all the required image data by calling jpeg_write_scanlines()
412 jpeg_write_scanlines(&cinfo, row_pointer, 1);
415 jpeg_write_scanlines() returns the number of scanlines actually written.
    [all...]
cjpeg.c 585 (void) jpeg_write_scanlines(&cinfo, src_mgr->buffer, num_scanlines);
  /external/chromium_org/third_party/iccjpeg/
iccjpeg.h 31 * the first call to jpeg_write_scanlines().
iccjpeg.c 46 * the first call to jpeg_write_scanlines().
  /frameworks/av/cmds/stagefright/
jpeg.cpp 83 jpeg_write_scanlines(&cinfo, &row_pointer, 1);
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-encoders/skia/
JPEGImageEncoder.cpp 150 jpeg_write_scanlines(&cinfo, &pixels, 1);
178 jpeg_write_scanlines(&cinfo, &rowData, 1);
  /external/qemu/android/utils/
jpeg-compress.c 194 jpeg_write_scanlines(&cinfo, (JSAMPARRAY)&rgb, 1);
200 jpeg_write_scanlines(&cinfo, (JSAMPARRAY)&rgb, 1);
  /device/generic/goldfish/camera/fake-pipeline2/
JpegCompressor.cpp 184 jpeg_write_scanlines(&mCInfo, chunk, kChunkSize);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
JpegCompressor.cpp 124 jpeg_write_scanlines(&mCInfo, chunk, kChunkSize);
  /packages/apps/Gallery2/jni_jpegstream/src/
jpeg_writer.cpp 153 if (jpeg_write_scanlines(&mInfo, row_pointer, 1) != 1) {
  /external/chromium_org/ui/gfx/codec/
jpeg_codec.cc 290 jpeg_write_scanlines(&cinfo, const_cast<unsigned char**>(&row), 1);
297 jpeg_write_scanlines(&cinfo, const_cast<unsigned char**>(&row), 1);
318 jpeg_write_scanlines(&cinfo, &row_buffer, 1);
  /hardware/ti/omap4xxx/camera/
Encoder_libjpeg.cpp 446 jpeg_write_scanlines(&cinfo, row, 1);
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libjpeg.cpp     [all...]

Completed in 6807 milliseconds

1 2