コード例 #1
0
ファイル: ImmediateStreamer.cs プロジェクト: Viktor8/CRadio
        public void Play()
        {
            _component.Play();

            if (_frames == null)
            {
                LoadFrames();
            }

            if (_endFrameTimer == null)
            {
                _endFrameTimer = new Timer(TimerCallback, null, 50, 1000);
            }
        }