ATUAV_RT.FixationDetector.getTimestampOffset C# (CSharp) Method

getTimestampOffset() private method

Sets the first timestamp to be at time zero, offsets all subsequent timestamps accordingly. Only call this method when SyncManager is Synchronized.
private getTimestampOffset ( int milliseconds ) : int
milliseconds int
return int
        private int getTimestampOffset(int milliseconds)
        {
            if (timestampOffset == -1)
            {
                timestampOffset = milliseconds;
            }
            return timestampOffset;
        }