Definition at line 2089 of file mainIDo.cpp. References GetCurCmdArg(), GetCurCmdNrArgs(), ILOG_INFO, mRefServer, and StageCall(). Referenced by HandleCmd(). 02090 { 02091 String dataSet = GetCurCmdArg(0); 02092 String doInfo = GetCurCmdArg(1); 02093 String logMsg("Staging video set definition and videos "); 02094 if (doInfo == "true") 02095 logMsg += "and video info "; 02096 ILOG_INFO(logMsg); 02097 bool fromOutput = false; 02098 if (GetCurCmdNrArgs() > 2) 02099 fromOutput = (GetCurCmdArg(2) == "true"); 02100 StageCall("copyvideoset", dataSet); 02101 if (fromOutput) 02102 { 02103 ILOG_INFO("Staging videos from reference (output) "); 02104 StageCall("syncvideofiles", dataSet + " " + doInfo, mRefServer); 02105 } 02106 else 02107 StageCall("syncvideofiles", dataSet + " " + doInfo); 02108 }
Here is the call graph for this function: ![]()
|