Fix MPEG movie startup cadence

This commit is contained in:
gamer147
2026-07-28 12:16:16 -04:00
parent ac2416e2d0
commit b7f67c8715
10 changed files with 269 additions and 34 deletions

View File

@@ -13,6 +13,7 @@ internal interface IMovieDecoder : IDisposable
long? StopTimeMs { get; }
bool IsCompleted { get; }
string? Failure { get; }
long? FirstFramePresentationTimeMs => null;
bool TryTakeFrame(out RgbaImage frame);
MovieAudioInfo? AudioInfo => null;
bool AudioDecodingCompleted => true;