HomeSort by relevance Sort by last modified time
    Searched defs:jpegData (Results 1 - 3 of 3) sorted by null

  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
ImageReaderSubPane.java 326 byte[] jpegData = new byte[jpegBuffer.limit()];
327 jpegBuffer.get(jpegData);
330 imgBitmap = BitmapFactory.decodeByteArray(jpegData, 0, jpegData.length, opts);
641 ByteBuffer jpegData = img.getPlanes()[0].getBuffer();
642 jpegData.rewind();
643 outChannel.write(jpegData);
  /hardware/libhardware/tests/camera2/
CameraMultiStreamTests.cpp 477 const int32_t* jpegData;
495 jpegData = availableJpegSizes.data.i32;
507 getResolutionList(HAL_PIXEL_FORMAT_BLOB, &jpegData, &jpegCount);
560 GetMaxSize(jpegData, jpegCount, &jpegMaxSize, &maxIdx);
  /packages/apps/Camera2/src/com/android/camera/
PhotoModule.java 811 byte[] jpegData;
822 final byte[] jpegData = dataBundle.jpegData;
826 Bitmap original = BitmapFactory.decodeByteArray(jpegData, 0, jpegData.length);
853 dataBundle.jpegData = stream.toByteArray();
    [all...]

Completed in 961 milliseconds