update package

This commit is contained in:
pigeatgarlic 2023-10-26 23:01:27 +07:00
parent a7590466de
commit bf13f4d401
4 changed files with 3 additions and 3 deletions

View File

@ -10,6 +10,5 @@ __declspec(dllexport) void __cdecl Init();
__declspec(dllexport) int __cdecl StartCallback(DECODE_CALLBACK callback);
__declspec(dllexport) int __cdecl StartQueue();
__declspec(dllexport) int __cdecl PopFromQueue(void* data,int* duration);
__declspec(dllexport) void __cdecl DeInit();
__declspec(dllexport) void __cdecl Wait();
}

View File

@ -332,6 +332,7 @@ StartCallback(DECODE_CALLBACK callback) {
// Create signal handler after logging has been initialized
mail::man->event<bool>(mail::shutdown)->view();
DeInit();
return 0;
}

View File

@ -294,7 +294,7 @@ namespace platf::dxgi {
return true;
}
std::string cmd = "tools\\ddprobe.exe";
std::string cmd = "ddprobe.exe";
// We start at 1 because 0 is automatic selection which can be overridden by
// the GPU driver control panel options. Since ddprobe.exe can have different

View File

@ -27,7 +27,7 @@ extern "C" {
#include <boost/algorithm/string/predicate.hpp>
#define SUNSHINE_SHADERS_DIR SUNSHINE_ASSETS_DIR "/shaders/directx"
#define SUNSHINE_SHADERS_DIR "./directx"
namespace platf {
using namespace std::literals;
}