Merge "Camera: Adjust documentation and comments for insensitive language." into rvc-dev

This commit is contained in:
TreeHugger Robot
2020-06-21 22:53:21 +00:00
committed by Android (Google) Code Review
2 changed files with 7 additions and 6 deletions

View File

@@ -4086,10 +4086,11 @@ public final class CameraCharacteristics extends CameraMetadata<CameraCharacteri
/**
* <p>The accuracy of frame timestamp synchronization between physical cameras</p>
* <p>The accuracy of the frame timestamp synchronization determines the physical cameras'
* ability to start exposure at the same time. If the sensorSyncType is CALIBRATED,
* the physical camera sensors usually run in master-slave mode so that their shutter
* time is synchronized. For APPROXIMATE sensorSyncType, the camera sensors usually run in
* master-master mode, and there could be offset between their start of exposure.</p>
* ability to start exposure at the same time. If the sensorSyncType is CALIBRATED, the
* physical camera sensors usually run in leader/follower mode where one sensor generates a
* timing signal for the other, so that their shutter time is synchronized. For APPROXIMATE
* sensorSyncType, the camera sensors usually run in leader/leader mode, where both sensors
* use their own timing generator, and there could be offset between their start of exposure.</p>
* <p>In both cases, all images generated for a particular capture request still carry the same
* timestamps, so that they can be used to look up the matching frame number and
* onCaptureStarted callback.</p>

View File

@@ -477,8 +477,8 @@ public final class CaptureRequest extends CameraMetadata<CaptureRequest.Key<?>>
* A constrained high speed request list contains some constrained high speed capture requests
* with certain interleaved pattern that is suitable for high speed preview/video streaming. An
* active constrained high speed capture session only accepts constrained high speed request
* lists. This method can be used to do the sanity check when a constrained high speed capture
* session receives a request list via {@link CameraCaptureSession#setRepeatingBurst} or
* lists. This method can be used to do the correctness check when a constrained high speed
* capture session receives a request list via {@link CameraCaptureSession#setRepeatingBurst} or
* {@link CameraCaptureSession#captureBurst}. </p>
*
*