Home | History | Annotate | Download | only in libcamera2

Lines Matching defs:exifOut

257     unsigned char *exifOut = NULL;
308 exifOut = new unsigned char[bufSize];
309 if (exifOut == NULL) {
310 JPEG_ERROR_LOG("%s::Failed to allocate for exifOut\n", __func__);
311 delete[] exifOut;
314 memset(exifOut, 0, bufSize);
316 if (makeExif (exifOut, exifInfo, &exifLen)) {
318 delete[] exifOut;
324 memcpy(pcJpegBuffer+2, exifOut, exifLen);
328 delete[] exifOut;
336 int ExynosJpegEncoderForCamera::makeExif (unsigned char *exifOut,
343 pApp1Start = pCur = exifOut;