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

  /frameworks/av/services/camera/libcameraservice/api1/client2/
JpegCompressor.cpp 86 mCInfo.err = jpeg_std_error(&error);
87 mCInfo.err->error_exit = jpegErrorHandler;
89 jpeg_create_compress(&mCInfo);
99 mCInfo.dest = &jpegDestMgr;
102 mCInfo.image_width = mAuxBuffer->width;
103 mCInfo.image_height = mAuxBuffer->height;
104 mCInfo.input_components = 1; // 3;
105 mCInfo.in_color_space = JCS_GRAYSCALE; // JCS_RGB
107 ALOGV("%s: image_width = %d, image_height = %d", __FUNCTION__, mCInfo.image_width, mCInfo.image_height)
    [all...]
JpegCompressor.h 75 jpeg_compress_struct mCInfo;
  /device/generic/goldfish/camera/fake-pipeline2/
JpegCompressor.cpp 145 mCInfo.err = jpeg_std_error(&error);
146 mCInfo.err->error_exit = jpegErrorHandler;
148 jpeg_create_compress(&mCInfo);
159 mCInfo.dest = &jpegDestMgr;
163 mCInfo.image_width = mAuxBuffer.width;
164 mCInfo.image_height = mAuxBuffer.height;
165 mCInfo.input_components = 3;
166 mCInfo.in_color_space = JCS_RGB;
168 jpeg_set_defaults(&mCInfo);
173 jpeg_start_compress(&mCInfo, TRUE)
    [all...]
JpegCompressor.h 88 jpeg_compress_struct mCInfo;

Completed in 44 milliseconds