Example #1
0
 /// <summary>Initializes a new instance of the <see cref="SubtitleProperties" />
 /// class, with defaults for all properties.</summary>
 internal SubtitleProperties(ParsingProperties properties)
 {
     headers           = properties.Headers;
     originalFrameRate = properties.InputFrameRate;
 }
Example #2
0
 public SubtitleProperties(Headers headers, float originalFrameRate, float currentFrameRate)
 {
     this.headers           = headers;
     this.originalFrameRate = originalFrameRate;
     this.currentFrameRate  = currentFrameRate;
 }