Searched defs:BYTES_PER_RGB_PIX (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/
H A DDngCreator.java459 private static final int BYTES_PER_RGB_PIX = 3; // byts per pixel field in class:DngCreator
525 ByteBuffer buf = ByteBuffer.allocateDirect(BYTES_PER_RGB_PIX * width * height);
551 byte[] finalRow = new byte[BYTES_PER_RGB_PIX * width];
565 yuvToRgb(yuvPixel, j * BYTES_PER_RGB_PIX, /*out*/finalRow);
584 ByteBuffer buf = ByteBuffer.allocateDirect(BYTES_PER_RGB_PIX * width * height);
587 byte[] finalRow = new byte[BYTES_PER_RGB_PIX * width];
592 colorToRgb(pixelRow[j], j * BYTES_PER_RGB_PIX, /*out*/finalRow);

Completed in 35 milliseconds