FMediaTimeStamp

Timestamp value for media playback

Windows
MacOS
Linux

References

Module

Media

Header

/Engine/Source/Runtime/Media/Public/IMediaTimeSource.h

Include

#include "IMediaTimeSource.h"

Syntax

class FMediaTimeStamp

Remarks

Timestamp value for media playback

  • Time: Time value

  • SequenceIndex Sequence that is current for this time value

Within a single sequence time values will increase or decrease monotonically. A new sequence index is generated on each event that causes the time to no longer be monotonic. (e.g. seek or loop) A sequence index does not offer any information about the ordering of the time stamps on the timeline. Time values are comparable between all timestamps from a single playback, though, one needs to be careful to consider non-monotonic behavior if the sequence indices are not identical.

Sequence indices can very much offer ordering information as far as playback progression is concerned. Higher indices are also later in playback. (even if time values may be smaller: e.g. looping)

All comparison operators of this class will operate to indicate ordering relative to playback, not position on the timeline!

Variables

Name Description

Public variable

int64

 

SequenceIndex

Public variable

FTimespan

 

Time

Constructors

Name Description

Public function

FMediaTimeStamp()

Public function

FMediaTimeStamp

(
    const FTimespan& InTime
)

Public function

FMediaTimeStamp

(
    const FTimespan& InTime,
    int64 InSequenceIndex
)

Functions

Name Description

Public function

void

 

Invalidate()

Public function Const

bool

 

IsRelative()

Public function Const

bool

 

IsValid()

Operators

Name Description

Public function Const

FMediaTimeSt...

 

operator-

(
    const FMediaTimeStamp& Other
)

Public function Const

FMediaTimeSt...

 

operator-

(
    const FTimespan& Other
)

Public function Const

FMediaTimeSt...

 

operator+

(
    const FTimespan& Other
)

Public function

FMediaTimeSt...

 

operator+=

(
    const FTimespan& Other
)

Public function Const

bool

 

operator<

(
    const FMediaTimeStamp& Other
)

Public function Const

bool

 

operator<=

(
    const FMediaTimeStamp& Other
)

Public function

FMediaTimeSt...

 

operator-=

(
    const FMediaTimeStamp& Other
)

Public function

FMediaTimeSt...

 

operator-=

(
    const FTimespan& Other
)

Public function Const

bool

 

operator==

(
    const FMediaTimeStamp& Other
)

Public function Const

bool

 

operator>

(
    const FMediaTimeStamp& Other
)

Public function Const

bool

 

operator>=

(
    const FMediaTimeStamp& Other
)

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss