OutputConfiguration.TimestampBase Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Get the current timestamp base -or- Set timestamp base for this output target
public int TimestampBase { [Android.Runtime.Register("getTimestampBase", "()I", "", ApiSince=33)] get; [Android.Runtime.Register("setTimestampBase", "(I)V", "", ApiSince=33)] set; }
[<get: Android.Runtime.Register("getTimestampBase", "()I", "", ApiSince=33)>]
[<set: Android.Runtime.Register("setTimestampBase", "(I)V", "", ApiSince=33)>]
member this.TimestampBase : int with get, set
Property Value
The currently set timestamp base
- Attributes
Remarks
Property getter documentation:
Get the current timestamp base
If no #setTimestampBase
is called first, this function returns #TIMESTAMP_BASE_DEFAULT
.
Java documentation for android.hardware.camera2.params.OutputConfiguration.getTimestampBase()
.
Property setter documentation:
Set timestamp base for this output target
Timestamp base describes the time domain of images from this camera output and its relationship with CameraCharacteristics#SENSOR_INFO_TIMESTAMP_SOURCE
.
If this function is not called, the timestamp base for this output is #TIMESTAMP_BASE_DEFAULT
, with which the camera device adjusts timestamps based on the output target.
See #TIMESTAMP_BASE_DEFAULT
, #TIMESTAMP_BASE_SENSOR
, and #TIMESTAMP_BASE_CHOREOGRAPHER_SYNCED
for details of each timestamp base.
Java documentation for android.hardware.camera2.params.OutputConfiguration.setTimestampBase(int)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.