Enum SourceInteger64
  
  
  
  Assembly: OpenTK.Audio.OpenAL.dll
  Syntax
  
    public enum SourceInteger64
   
  Fields
  
    
      
        | Name | 
        Description | 
      
    
    
      
        | SampleOffsetClock | 
        AL_SAMPLE_OFFSET_CLOCK_SOFT
 
The playback position, expressed in fixed-point samples, along with the device clock, expressed in nanoseconds.
This attribute is read-only.
 
The first value in the returned vector is the sample offset, which is a 32.32 fixed-point value.
The whole number is stored in the upper 32 bits and the fractional component is in the lower 32 bits.
The value is similar to that returned by SampleOffset, just with more precision.
 
The second value is the device clock, in nanoseconds.
This updates at the same rate as the offset, and both are measured atomically with respect to one another. 
 |