Ejemplo n.º 1
0
        /// <summary>
        /// Clear the current seeking if its position matches the specified position </summary>
        /// <param name="position"> The position to compare with </param>
        public virtual void clearSeek(long position)
        {
            if (position != NO_SEEK)
            {
                frameBuffer.setClearOnInsert();

                if (pendingSeek.compareAndSet(position, NO_SEEK))
                {
                    markerTracker.checkSeekTimecode(position);
                }
            }
        }