ImageUtils: Fix estimated bytes factor for P010

For P010, each pixel is a 16-bit and a 4:2:0 subsampled.
So, the estimated byte factor should be 3.

Bug: 263433055
Change-Id: I86cfa005f0769a65104cad6378f7ba1af759162a
This commit is contained in:
Kwangkyu Park
2022-12-22 16:35:59 +09:00
parent 0b62dccbbc
commit 15390d0a40

View File

@@ -255,10 +255,10 @@ class ImageUtils {
case ImageFormat.RAW_SENSOR:
case ImageFormat.RAW_PRIVATE: // round estimate, real size is unknown
case ImageFormat.DEPTH16:
case ImageFormat.YCBCR_P010:
estimatedBytePerPixel = 2.0;
break;
case PixelFormat.RGB_888:
case ImageFormat.YCBCR_P010:
estimatedBytePerPixel = 3.0;
break;
case PixelFormat.RGBA_8888: