From f24368599056e1b81dcafa4aa75c4a7c4c338509 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 9 Jun 2016 13:33:31 -0500 Subject: [PATCH] Allow packet receiving to happen in parallel with video decoding by not using direct-submit --- viddec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viddec.cpp b/viddec.cpp index 320cc78..033fa4c 100644 --- a/viddec.cpp +++ b/viddec.cpp @@ -463,5 +463,5 @@ DECODER_RENDERER_CALLBACKS MoonlightInstance::s_DrCallbacks = { MoonlightInstance::VidDecSetup, MoonlightInstance::VidDecCleanup, MoonlightInstance::VidDecSubmitDecodeUnit, - CAPABILITY_SLICES_PER_FRAME(4) | CAPABILITY_DIRECT_SUBMIT + CAPABILITY_SLICES_PER_FRAME(4) };