SubtitleEdit/libse/ContainerFormats/Mp4/TimeSegment.cs

9 lines
247 B
C#
Raw Normal View History

2017-07-14 18:34:00 +02:00
namespace Nikse.SubtitleEdit.Core.ContainerFormats.Mp4
{
public class TimeSegment
{
public uint? Duration { get; set; }
public uint? TimeOffset { get; set; }
2017-07-14 19:49:40 +02:00
public ulong BaseMediaDecodeTime { get; set; }
2017-07-14 18:34:00 +02:00
}
2017-07-14 19:49:40 +02:00
}