Home | History | Annotate | Download | only in libcamera

Lines Matching defs:exifOut

269     unsigned char *exifOut = NULL;
331 exifOut = new unsigned char[bufSize];
332 if (exifOut == NULL) {
333 JPEG_ERROR_LOG("%s::Failed to allocate for exifOut\n", __func__);
334 delete[] exifOut;
337 memset(exifOut, 0, bufSize);
339 if (makeExif (exifOut, exifInfo, &exifLen)) {
341 delete[] exifOut;
347 memcpy(pcJpegBuffer+2, exifOut, exifLen);
351 delete[] exifOut;
359 int ExynosJpegEncoderForCamera::makeExif (unsigned char *exifOut,
366 pApp1Start = pCur = exifOut;