libhwjpeg: resolve compilation errors lineage-18.1
authorfiliprrs <filiprrs@gmail.com>
Thu, 29 Jul 2021 22:39:21 +0000 (00:39 +0200)
committerfiliprrs <filiprrs@gmail.com>
Thu, 29 Jul 2021 22:51:28 +0000 (00:51 +0200)
Change-Id: I67cf8ea065145b006891bf631ab64e64f694dd90

libhwjpeg/AppMarkerWriter.cpp
libhwjpeg/hwjpeg-v4l2.cpp

index 7e18ab3be2cf1bc26f91c1b8ced8ec325ad42b4c..b32f3367238d866bac43dcd1a89c41ee169da9a0 100644 (file)
@@ -238,7 +238,7 @@ void CAppMarkerWriter::PrepareAppWriter(char *base, exif_attribute_t *exif, debu
 
             len = debug->debugSize[appid];
             if ((len == 0) || (len > (JPEG_MAX_SEGMENT_SIZE - JPEG_SEGMENT_LENFIELD_SIZE))) {
-                ALOGE("Invalid APP%d segment size, %zu bytes", appid, len);
+                ALOGE("Invalid APP%d segment size, %u bytes", appid, len);
                 return;
             }
 
@@ -260,7 +260,7 @@ void CAppMarkerWriter::PrepareAppWriter(char *base, exif_attribute_t *exif, debu
     //   |                                                              |
     //  SOI                                                           DHTofMain
 
-    ALOGD("APP1: %zu bytes(ThumbMax %zu)", m_szApp1, m_szMaxThumbSize);
+    ALOGD("APP1: %hu bytes(ThumbMax %zu)", m_szApp1, m_szMaxThumbSize);
 }
 
 #define APPMARKLEN (JPEG_MARKER_SIZE + JPEG_SEGMENT_LENFIELD_SIZE)
index 01a8742598165dee3f27ecb6a490af726b1506ae..40422e2cf59447a83efe8b35eaa1e839600b6ff4 100644 (file)
@@ -755,7 +755,7 @@ CHWJpegV4L2Decompressor::~CHWJpegV4L2Decompressor()
 bool CHWJpegV4L2Decompressor::PrepareCapture()
 {
     if (m_v4l2DstBuffer.length < m_v4l2Format.fmt.pix.sizeimage) {
-        ALOGE("The size of the buffer %zu is smaller than required %u",
+        ALOGE("The size of the buffer %u is smaller than required %u",
               m_v4l2DstBuffer.length, m_v4l2Format.fmt.pix.sizeimage);
         return false;
     }