Shut up some warnings when detecting VapourSynth registry path.
This commit is contained in:
parent
33de4dd98e
commit
a102ca5c73
@ -239,14 +239,17 @@ void VapourSynthCheckThread::detectVapourSynthPath3(int &success, QString &path)
|
|||||||
{
|
{
|
||||||
for (size_t k = 0; k < 3; k++)
|
for (size_t k = 0; k < 3; k++)
|
||||||
{
|
{
|
||||||
QString temp;
|
if (MUtils::Registry::reg_key_exists(MUtils::Registry::root_machine, QString::fromLatin1(VPS_REG_KEYS[i]), REG_SCOPE[k]))
|
||||||
if (MUtils::Registry::reg_value_read(MUtils::Registry::root_machine, QString::fromLatin1(VPS_REG_KEYS[i]), QString::fromLatin1(VPS_REG_NAME[j]), temp, REG_SCOPE[k]))
|
|
||||||
{
|
{
|
||||||
temp = cleanDir(temp);
|
QString temp;
|
||||||
if (VALID_DIR(temp))
|
if (MUtils::Registry::reg_value_read(MUtils::Registry::root_machine, QString::fromLatin1(VPS_REG_KEYS[i]), QString::fromLatin1(VPS_REG_NAME[j]), temp, REG_SCOPE[k]))
|
||||||
{
|
{
|
||||||
vapoursynthPath = temp;
|
temp = cleanDir(temp);
|
||||||
break;
|
if (VALID_DIR(temp))
|
||||||
|
{
|
||||||
|
vapoursynthPath = temp;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#define VER_X264_MAJOR 2
|
#define VER_X264_MAJOR 2
|
||||||
#define VER_X264_MINOR 7
|
#define VER_X264_MINOR 7
|
||||||
#define VER_X264_PATCH 5
|
#define VER_X264_PATCH 5
|
||||||
#define VER_X264_BUILD 1056
|
#define VER_X264_BUILD 1058
|
||||||
|
|
||||||
#define VER_X264_PORTABLE_EDITION (0)
|
#define VER_X264_PORTABLE_EDITION (0)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user