12345678910111213141516171819202122232425 |
- using System;
- namespace RenderHeads.Media.AVProVideo
- {
- public class Subtitle
- {
- public bool IsBefore(float time)
- {
- return time > (float)this.timeStartMs && time > (float)this.timeEndMs;
- }
- public bool IsTime(float time)
- {
- return time >= (float)this.timeStartMs && time < (float)this.timeEndMs;
- }
- public int index;
- public string text;
- public int timeStartMs;
- public int timeEndMs;
- }
- }
|