public override void Start() { lock (this.SyncRoot) { IConsumerService consumerManager = this.Scope.GetService(typeof(IConsumerService)) as IConsumerService; try { //_videoCodecFactory = new VideoCodecFactory(); _videoCodecFactory = this.Scope.GetService(typeof(VideoCodecFactory)) as VideoCodecFactory; _checkVideoCodec = true; } catch (Exception ex) { log.Warn("No video codec factory available.", ex); } _firstPacketTime = _audioTime = _videoTime = _dataTime = -1; _connMsgOut = consumerManager.GetConsumerOutput(this); _connMsgOut.Subscribe(this, null); _recordPipe = new InMemoryPushPushPipe(); #if !(NET_1_1) Dictionary <string, object> recordParameterMap = new Dictionary <string, object>(); #else Hashtable recordParameterMap = new Hashtable(); #endif // Clear record flag recordParameterMap.Add("record", null); _recordPipe.Subscribe(this as IProvider, recordParameterMap); _recording = false; _recordingFilename = null; this.CodecInfo = new StreamCodecInfo(); _closed = false; _bytesReceived = 0; _creationTime = System.Environment.TickCount; } }
public override void Start() { lock (base.SyncRoot) { IConsumerService service = base.Scope.GetService(typeof(IConsumerService)) as IConsumerService; try { this._videoCodecFactory = new VideoCodecFactory(); this._checkVideoCodec = true; } catch (Exception exception) { log.Warn("No video codec factory available.", exception); } this._firstPacketTime = this._audioTime = this._videoTime = this._dataTime = -1; this._connMsgOut = service.GetConsumerOutput(this); this._connMsgOut.Subscribe(this, null); this._recordPipe = new InMemoryPushPushPipe(); Dictionary <string, object> parameterMap = new Dictionary <string, object>(); parameterMap.Add("record", null); this._recordPipe.Subscribe(this, parameterMap); this._recording = false; this._recordingFilename = null; base.CodecInfo = new StreamCodecInfo(); this._closed = false; this._bytesReceived = 0L; this._creationTime = Environment.TickCount; } }