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

/frameworks/base/core/java/android/hardware/camera2/
H A DDngCreator.java296 * @param dngOutput an {@link java.io.OutputStream} to write the DNG file to.
307 public void writeInputStream(@NonNull OutputStream dngOutput, @NonNull Size size, argument
309 if (dngOutput == null) {
310 throw new IllegalArgumentException("Null dngOutput passed to writeInputStream");
325 nativeWriteInputStream(dngOutput, pixels, width, height, offset);
351 * @param dngOutput an {@link java.io.OutputStream} to write the DNG file to.
361 public void writeByteBuffer(@NonNull OutputStream dngOutput, @NonNull Size size, argument
364 if (dngOutput == null) {
365 throw new IllegalArgumentException("Null dngOutput passed to writeByteBuffer");
377 writeByteBuffer(width, height, pixels, dngOutput, DEFAULT_PIXEL_STRID
398 writeImage(@onNull OutputStream dngOutput, @NonNull Image pixels) argument
464 writeByteBuffer(int width, int height, ByteBuffer pixels, OutputStream dngOutput, int pixelStride, int rowStride, long offset) argument
[all...]

Completed in 51 milliseconds