Exemple #1
0
        public HResult OnClockRestart(long hnsSystemTime)
        {
            Debug.WriteLine("MediaSink:OnClockRestart");

            HResult hr;

            lock (this)
            {
                if (IsShutdown)
                {
                    return(MF_E_SHUTDOWN);
                }

                hr = StreamSink.Restart();
            }
            return(hr);
        }