Home
last modified time | relevance | path

Searched refs:mCInfo (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/services/camera/libcameraservice/api1/client2/
DJpegCompressor.cpp86 mCInfo.err = jpeg_std_error(&error); in threadLoop()
87 mCInfo.err->error_exit = jpegErrorHandler; in threadLoop()
89 jpeg_create_compress(&mCInfo); in threadLoop()
99 mCInfo.dest = &jpegDestMgr; in threadLoop()
102 mCInfo.image_width = mAuxBuffer->width; in threadLoop()
103 mCInfo.image_height = mAuxBuffer->height; in threadLoop()
104 mCInfo.input_components = 1; // 3; in threadLoop()
105 mCInfo.in_color_space = JCS_GRAYSCALE; // JCS_RGB in threadLoop()
107 …ALOGV("%s: image_width = %d, image_height = %d", __FUNCTION__, mCInfo.image_width, mCInfo.image_he… in threadLoop()
109 jpeg_set_defaults(&mCInfo); in threadLoop()
[all …]
DJpegCompressor.h76 jpeg_compress_struct mCInfo; variable