Home | History | Annotate | Download | only in camera

Lines Matching refs:tn_jpeg

901                     Encoder_libjpeg::params *main_jpeg = NULL, *tn_jpeg = NULL;
957 tn_jpeg = (Encoder_libjpeg::params*)
960 if (!tn_jpeg) {
961 tn_jpeg = NULL;
965 if (tn_jpeg) {
969 tn_jpeg->src = (uint8_t*) mPreviewBufs[current_snapshot];
970 tn_jpeg->src_size = mPreviewMemory->size / MAX_BUFFERS;
971 tn_jpeg->dst = (uint8_t*) malloc(tn_jpeg->src_size);
972 tn_jpeg->dst_size = tn_jpeg->src_size;
973 tn_jpeg->quality = tn_quality;
974 tn_jpeg->in_width = width;
975 tn_jpeg->in_height = height;
976 tn_jpeg->out_width = tn_width;
977 tn_jpeg->out_height = tn_height;
978 tn_jpeg->right_crop = 0;
979 tn_jpeg->start_offset = 0;
980 tn_jpeg->format = CameraParameters::PIXEL_FORMAT_YUV420SP;;
984 tn_jpeg,