mirror of
https://github.com/kingomarnajjar/Cognitive-Samples-VideoFrameAnalysis.git
synced 2026-07-31 02:26:41 +10:00
Remove readonly modifier from mutable reference type fields, as per https://msdn.microsoft.com/en-us/library/ms182302.aspx
This commit is contained in:
parent
996b9a04ba
commit
779049ed3a
1 changed files with 2 additions and 2 deletions
|
|
@ -128,8 +128,8 @@ namespace VideoFrameAnalyzer
|
||||||
protected Predicate<VideoFrame> _analysisPredicate = null;
|
protected Predicate<VideoFrame> _analysisPredicate = null;
|
||||||
protected VideoCapture _reader = null;
|
protected VideoCapture _reader = null;
|
||||||
protected Timer _timer = null;
|
protected Timer _timer = null;
|
||||||
protected readonly SemaphoreSlim _timerMutex = new SemaphoreSlim(1);
|
protected SemaphoreSlim _timerMutex = new SemaphoreSlim(1);
|
||||||
protected readonly AutoResetEvent _frameGrabTimer = new AutoResetEvent(false);
|
protected AutoResetEvent _frameGrabTimer = new AutoResetEvent(false);
|
||||||
protected bool _stopping = false;
|
protected bool _stopping = false;
|
||||||
protected Task _producerTask = null;
|
protected Task _producerTask = null;
|
||||||
protected Task _consumerTask = null;
|
protected Task _consumerTask = null;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue