Exemplo n.º 1
0
 private Timecode(FrameRate frameRate)
 {
     this._frameRate = frameRate.ToInt();
 }
Exemplo n.º 2
0
 private Timecode(FrameRate frameRate, bool isDropFrame)
 {
     this._isDropFrame  = isDropFrame;
     this._rawFrameRate = frameRate;
     this._frameRate    = frameRate.ToInt();
 }