Definition at line 198 of file mainVidSet.cpp. References Impala::CmdOptions::GetBool(), Impala::CmdOptions::GetInstance(), Impala::CmdOptions::GetInt(), MakeVideoTaskTableByFrames(), MakeVideoTaskTableByQuids(), MakeVideoTaskTableByVideo(), and MakeVideoTaskTableByVideoSize(). Referenced by mainVidSet(). 00199 { 00200 CmdOptions& options = CmdOptions::GetInstance(); 00201 int startTask = options.GetInt("startTask"); 00202 if ((cmd == "tasktable") || (startTask != -1)) 00203 { 00204 if (!quidFile.empty()) 00205 return MakeVideoTaskTableByQuids(videoSet, walker); 00206 if (options.GetBool("taskByVideoSize")) 00207 return MakeVideoTaskTableByVideoSize(videoSet, walker); 00208 return MakeVideoTaskTableByFrames(videoSet, walker); 00209 } 00210 return MakeVideoTaskTableByVideo(videoSet, walker); 00211 }
Here is the call graph for this function:
|