video: Always decode the first frame

This commit is contained in:
David Wendt 2020-12-22 23:18:52 -05:00 committed by Mike Welsh
parent 368c1cf3c5
commit 5b546bf2d8
1 changed files with 2 additions and 0 deletions

View File

@ -202,6 +202,8 @@ impl<'gc> TDisplayObject<'gc> for Video<'gc> {
write.stream = stream;
drop(write);
self.seek(context, 0);
if run_frame {
self.run_frame(context);
}