From bae05596e26617c5347c0bf773f798383ec8f812 Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Mon, 15 Jan 2024 22:04:48 -0800 Subject: [PATCH] fix VideoAV1 constructor --- VideoPlayer/VideoPlayerGame.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VideoPlayer/VideoPlayerGame.cs b/VideoPlayer/VideoPlayerGame.cs index 9db3efd..1da8a3b 100644 --- a/VideoPlayer/VideoPlayerGame.cs +++ b/VideoPlayer/VideoPlayerGame.cs @@ -59,7 +59,7 @@ namespace MoonWorks.Test GraphicsDevice.Submit(cmdbuf); // Load the video - video = new Video.VideoAV1(TestUtils.GetVideoPath("hello.obu"), 25); + video = new VideoAV1(GraphicsDevice, TestUtils.GetVideoPath("hello.obu"), 25); // Play the video videoPlayer = new VideoPlayer(GraphicsDevice);