1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-01 10:26:12 +03:00
occt/src/ViewerTest/ViewerTest_AviCommands.cxx
omy 35e08fe886 0024057: Eliminate compiler warning C4100 in MSVC++ with warning level 4
Got rid of warning C4100: 'identifier' : unreferenced formal parameter
Got rid of compile errors
2013-07-18 13:09:32 +04:00

102 lines
3.7 KiB
C++
Executable File

// Created on: 2008-06-30
// Created by: Alexander GRIGORIEV
// Copyright (c) 2008-2012 OPEN CASCADE SAS
//
// The content of this file is subject to the Open CASCADE Technology Public
// License Version 6.5 (the "License"). You may not use the content of this file
// except in compliance with the License. Please obtain a copy of the License
// at http://www.opencascade.org and read it completely before using this file.
//
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
//
// The Original Code and all software distributed under the License is
// distributed on an "AS IS" basis, without warranty of any kind, and the
// Initial Developer hereby disclaims all such warranties, including without
// limitation, any warranties of merchantability, fitness for a particular
// purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License.
#if (defined(_WIN32) || defined(__WIN32__)) && defined(HAVE_VIDEOCAPTURE)
#include <windows.h>
#include <OpenGl_AVIWriter.hxx>
#endif
#include <ViewerTest.hxx>
#include <Draw_Interpretor.hxx>
static Standard_Integer avi_record(Draw_Interpretor& /*di*/,
Standard_Integer argc, const char** argv)
{
if (argc < 2)
{
cout << "Syntax: " << argv[0] << " file | start | stop | save" << endl;
return 1;
}
Standard_Integer aResult = 1;
#if (defined(_WIN32) || defined(__WIN32__))
#ifdef HAVE_VIDEOCAPTURE
static OpenGl_AVIWriter * pAviWriter = 0L;
if (strncmp(argv[1], "file", 5) == 0) {
if (argc < 3) {
cout << "Please define the name of AVI file to create ..." << endl;
} else {
const char * aFilename = argv[2];
DWORD aFormat = mmioFOURCC('X','V','I','D');
if (argc > 3) {
const char * aFourcc = argv[3];
aFormat = mmioFOURCC(aFourcc[0], aFourcc[1], aFourcc[2], aFourcc[3]);
}
pAviWriter = new OpenGl_AVIWriter (aFilename, aFormat, 25);
aResult = 0;
}
} else if (pAviWriter == 0L) {
cout << "AVI Writer instance has not been initialized. Use command "
<< argv[0] << " file ..." << endl;
} else if (strncmp(argv[1], "start", 6) == 0) {
pAviWriter->StartRecording();
aResult = 0;
} else if (strncmp(argv[1], "stop", 5) == 0) {
pAviWriter->StopRecording();
aResult = 0;
} else if (strncmp(argv[1], "save", 5) == 0) {
pAviWriter->StopRecording();
delete pAviWriter;
pAviWriter = 0L;
aResult = 0;
} else if (strncmp(argv[1], "status", 7) == 0) {
cout << pAviWriter->GetLastErrorMessage() << endl;
aResult = 0;
}
#else
cout << "AVI writer capability was disabled\n";
#endif
#else
cout << "AVI writer is implemented only in Windows version\n";
#endif
return aResult;
}
//=======================================================================
//function : AviCommands
//purpose :
//=======================================================================
void ViewerTest::AviCommands(Draw_Interpretor& theCommands)
{
const char* group = "ViewerTest AVI commands";
theCommands.Add("vrecord", "vrecord [option]\n"
"where [option] can be:\n"
"\tfile <filename.avi> <FOURCC=VIDX': Create AVI file "
"for recording,\n"
"\tstart : begin/restart recording,\n"
"\tstop : stop recording,\n"
"\tstatus : log error message,\n"
"\tsave : close the AVI file\n",
__FILE__,
&avi_record, group); //Draft_Modification
}