disable video capture

This commit is contained in:
DarthArgus
2017-10-29 14:02:30 -07:00
parent ab8a83da85
commit 298947364d
2 changed files with 8 additions and 6 deletions

2
.gitignore vendored
View File

@@ -3,6 +3,8 @@ src/external/3rd/library/dpvs/implementation/msvc8/release/
*.sdf
*.suo
*.aps
*/*.obj
*.log
*.vcxproj.user
dpvs.lib
*.lib

View File

@@ -262,7 +262,7 @@ namespace
const char * const ms_listGcwRegionsData = "listGcwRegionsData";
const char * const ms_listGcwGroupsData = "listGcwGroupsData";
#if PRODUCTION == 0
#if 0
const char * const ms_videoCaptureConfig = "videoCaptureConfig";
const char * const ms_videoCaptureStart = "videoCaptureStart";
const char * const ms_videoCaptureStop = "videoCaptureStop";
@@ -533,9 +533,9 @@ static const CommandParser::CmdInfo cmds[] =
{ms_listLfgData, 0, "", "List all possible LFG search criteria"},
{ms_listGcwRegionsData, 0, "", "List the GCW score categories region data"},
{ms_listGcwGroupsData, 0, "", "List the GCW score categories group data"},
{ms_videoCaptureConfig, 4, "<resolution (1-21)> <max seconds> <quality (1-100)> <filename>", "Configure video capture"},
/*{ms_videoCaptureConfig, 4, "<resolution (1-21)> <max seconds> <quality (1-100)> <filename>", "Configure video capture"},
{ms_videoCaptureStart, 0, "", "Start video capture"},
{ms_videoCaptureStop, 0, "", "Stop video capture"},
{ms_videoCaptureStop, 0, "", "Stop video capture"},*/
#endif // PRODUCTION
#ifdef _DEBUG
{"setMovementPercent", 1, "<value (like 1.5)>", "/setSpeed client side only"},
@@ -4892,7 +4892,7 @@ bool SwgCuiCommandParserScene::performParsing (const NetworkId & , const StringV
//-----------------------------------------------------------------
#if PRODUCTION == 0
#if 0
else if (isCommand (argv [0], ms_videoCaptureConfig))
{
if(5 <= argv.size())
@@ -4909,7 +4909,7 @@ bool SwgCuiCommandParserScene::performParsing (const NetworkId & , const StringV
//-----------------------------------------------------------------
#if PRODUCTION == 0
#if 0
else if (isCommand (argv [0], ms_videoCaptureStart))
{
Game::videoCaptureStart();
@@ -4918,7 +4918,7 @@ bool SwgCuiCommandParserScene::performParsing (const NetworkId & , const StringV
//-----------------------------------------------------------------
#if PRODUCTION == 0
#if 0
else if (isCommand (argv [0], ms_videoCaptureStop))
{
Game::videoCaptureStop();