Home | History | Annotate | Download | only in testingcamera2

Lines Matching refs:timeStamp

577         long timestamp = img.getTimestamp();
578 File output = getOutputImageFile(img.getFormat(), timestamp);
616 long timestamp = img.getTimestamp();
618 TLog.e("No camera availble for camera info, not saving DNG (timestamp %d)",
619 timestamp);
622 TotalCaptureResult result = mCurrentCamera.getResultAt(timestamp);
624 TLog.e("No result matching raw image found, not saving DNG (timestamp %d)",
625 timestamp);
726 File getOutputImageFile(int type, long timestamp){
754 // Convert timestamp from boottime time base to the Date timebase
757 long timestampMs = (nowMs * NS_PER_MS - nowBootTimeNs + timestamp) / NS_PER_MS;
759 String timeStamp = new SimpleDateFormat("yyyy-MM-dd_HH-mm-ss_SSS").
765 "IMG_"+ timeStamp + ".jpg");
769 "IMG_"+ timeStamp + ".yuv");
773 "IMG_"+ timeStamp + ".dng");
777 "IMG_"+ timeStamp + ".raw10");
781 "IMG_"+ timeStamp + "_depth.png");
785 "IMG_"+ timeStamp + "_depth_points.txt");
789 "IMG_"+ timeStamp + ".unknown");