[xiph-commits] r8819 - in trunk/oggdsf/src:
lib/codecs/cmml/libCMMLParse tools tools/CMMLRip tools/CMMLValidate
illiminable at motherfish-iii.xiph.org
illiminable at motherfish-iii.xiph.org
Tue Feb 1 06:23:36 PST 2005
Author: illiminable
Date: 2005-02-01 06:23:23 -0800 (Tue, 01 Feb 2005)
New Revision: 8819
Added:
trunk/oggdsf/src/lib/codecs/cmml/libCMMLParse/CMMLValidator.cpp
trunk/oggdsf/src/lib/codecs/cmml/libCMMLParse/CMMLValidator.h
trunk/oggdsf/src/tools/CMMLRip/
trunk/oggdsf/src/tools/CMMLRip/CMMLRip.cpp
trunk/oggdsf/src/tools/CMMLRip/CMMLRip.vcproj
trunk/oggdsf/src/tools/CMMLRip/ReadMe.txt
trunk/oggdsf/src/tools/CMMLRip/stdafx.cpp
trunk/oggdsf/src/tools/CMMLRip/stdafx.h
trunk/oggdsf/src/tools/CMMLValidate/
trunk/oggdsf/src/tools/CMMLValidate/CMMLValidate.cpp
trunk/oggdsf/src/tools/CMMLValidate/CMMLValidate.vcproj
trunk/oggdsf/src/tools/CMMLValidate/ReadMe.txt
trunk/oggdsf/src/tools/CMMLValidate/stdafx.cpp
trunk/oggdsf/src/tools/CMMLValidate/stdafx.h
Log:
* Add half done projects, so they get off my commit list.
Added: trunk/oggdsf/src/lib/codecs/cmml/libCMMLParse/CMMLValidator.cpp
===================================================================
--- trunk/oggdsf/src/lib/codecs/cmml/libCMMLParse/CMMLValidator.cpp 2005-02-01 14:22:10 UTC (rev 8818)
+++ trunk/oggdsf/src/lib/codecs/cmml/libCMMLParse/CMMLValidator.cpp 2005-02-01 14:23:23 UTC (rev 8819)
@@ -0,0 +1,9 @@
+#include ".\cmmlvalidator.h"
+
+CMMLValidator::CMMLValidator(void)
+{
+}
+
+CMMLValidator::~CMMLValidator(void)
+{
+}
Added: trunk/oggdsf/src/lib/codecs/cmml/libCMMLParse/CMMLValidator.h
===================================================================
--- trunk/oggdsf/src/lib/codecs/cmml/libCMMLParse/CMMLValidator.h 2005-02-01 14:22:10 UTC (rev 8818)
+++ trunk/oggdsf/src/lib/codecs/cmml/libCMMLParse/CMMLValidator.h 2005-02-01 14:23:23 UTC (rev 8819)
@@ -0,0 +1,8 @@
+#pragma once
+
+class CMMLValidator
+{
+public:
+ CMMLValidator(void);
+ ~CMMLValidator(void);
+};
Added: trunk/oggdsf/src/tools/CMMLRip/CMMLRip.cpp
===================================================================
--- trunk/oggdsf/src/tools/CMMLRip/CMMLRip.cpp 2005-02-01 14:22:10 UTC (rev 8818)
+++ trunk/oggdsf/src/tools/CMMLRip/CMMLRip.cpp 2005-02-01 14:23:23 UTC (rev 8819)
@@ -0,0 +1,35 @@
+// CMMLRip.cpp : Defines the entry point for the console application.
+//
+
+#include "stdafx.h"
+
+int __cdecl _tmain(int argc, _TCHAR* argv[])
+{
+ if ((argc != 3) || (argc != 4)) {
+ cout << "Usage : CMMLRip <Annodex File> <CMML File> [<Ogg File>>]"<<endl;
+ return 1;
+ }
+
+ string locAnxFileName = argv[1];
+ string locCMMLFileName = argv[2];
+ string locOggFileName = "";
+ bool locKeepOgg = false;
+ if (argc == 4) {
+ locOggFileName = argv[3];
+ locKeepOgg = true;
+ }
+
+ fstream locAnxFile;
+ locAnxFile.open(locAnxFileName, ios_base::in|ios_base::binary);
+ if (!locAnxFile.is_open()) {
+ cout<<"Cannot open annodex file ("<<locAnxFileName<<")"<<endl;
+ return 2;
+ }
+
+ fstream locCMMLFile;
+ locCMMLFile.open(locCMMLFileName, ios:base::out|ios_base::binary);
+
+
+ return 0;
+}
+
Added: trunk/oggdsf/src/tools/CMMLRip/CMMLRip.vcproj
===================================================================
--- trunk/oggdsf/src/tools/CMMLRip/CMMLRip.vcproj 2005-02-01 14:22:10 UTC (rev 8818)
+++ trunk/oggdsf/src/tools/CMMLRip/CMMLRip.vcproj 2005-02-01 14:23:23 UTC (rev 8819)
@@ -0,0 +1,153 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="7.10"
+ Name="CMMLRip"
+ ProjectGUID="{0A99562D-4B28-4F0C-93B2-06186069B9C0}"
+ Keyword="Win32Proj">
+ <Platforms>
+ <Platform
+ Name="Win32"/>
+ </Platforms>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="Debug"
+ IntermediateDirectory="Debug"
+ ConfigurationType="1"
+ CharacterSet="2">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="TRUE"
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="5"
+ UsePrecompiledHeader="3"
+ WarningLevel="3"
+ Detect64BitPortabilityProblems="TRUE"
+ DebugInformationFormat="4"/>
+ <Tool
+ Name="VCCustomBuildTool"/>
+ <Tool
+ Name="VCLinkerTool"
+ OutputFile="$(OutDir)/CMMLRip.exe"
+ LinkIncremental="2"
+ GenerateDebugInformation="TRUE"
+ ProgramDatabaseFile="$(OutDir)/CMMLRip.pdb"
+ SubSystem="1"
+ TargetMachine="1"/>
+ <Tool
+ Name="VCMIDLTool"/>
+ <Tool
+ Name="VCPostBuildEventTool"/>
+ <Tool
+ Name="VCPreBuildEventTool"/>
+ <Tool
+ Name="VCPreLinkEventTool"/>
+ <Tool
+ Name="VCResourceCompilerTool"/>
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"/>
+ <Tool
+ Name="VCXMLDataGeneratorTool"/>
+ <Tool
+ Name="VCWebDeploymentTool"/>
+ <Tool
+ Name="VCManagedWrapperGeneratorTool"/>
+ <Tool
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="Release"
+ IntermediateDirectory="Release"
+ ConfigurationType="1"
+ CharacterSet="2">
+ <Tool
+ Name="VCCLCompilerTool"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
+ RuntimeLibrary="4"
+ UsePrecompiledHeader="3"
+ WarningLevel="3"
+ Detect64BitPortabilityProblems="TRUE"
+ DebugInformationFormat="3"/>
+ <Tool
+ Name="VCCustomBuildTool"/>
+ <Tool
+ Name="VCLinkerTool"
+ OutputFile="$(OutDir)/CMMLRip.exe"
+ LinkIncremental="1"
+ GenerateDebugInformation="TRUE"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"/>
+ <Tool
+ Name="VCMIDLTool"/>
+ <Tool
+ Name="VCPostBuildEventTool"/>
+ <Tool
+ Name="VCPreBuildEventTool"/>
+ <Tool
+ Name="VCPreLinkEventTool"/>
+ <Tool
+ Name="VCResourceCompilerTool"/>
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"/>
+ <Tool
+ Name="VCXMLDataGeneratorTool"/>
+ <Tool
+ Name="VCWebDeploymentTool"/>
+ <Tool
+ Name="VCManagedWrapperGeneratorTool"/>
+ <Tool
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
+ <File
+ RelativePath=".\CMMLRip.cpp">
+ </File>
+ <File
+ RelativePath=".\stdafx.cpp">
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="1"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="1"/>
+ </FileConfiguration>
+ </File>
+ </Filter>
+ <Filter
+ Name="Header Files"
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
+ <File
+ RelativePath=".\stdafx.h">
+ </File>
+ </Filter>
+ <Filter
+ Name="Resource Files"
+ Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
+ UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
+ </Filter>
+ <File
+ RelativePath=".\ReadMe.txt">
+ </File>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>
Added: trunk/oggdsf/src/tools/CMMLRip/ReadMe.txt
===================================================================
--- trunk/oggdsf/src/tools/CMMLRip/ReadMe.txt 2005-02-01 14:22:10 UTC (rev 8818)
+++ trunk/oggdsf/src/tools/CMMLRip/ReadMe.txt 2005-02-01 14:23:23 UTC (rev 8819)
@@ -0,0 +1,32 @@
+========================================================================
+ CONSOLE APPLICATION : CMMLRip Project Overview
+========================================================================
+
+AppWizard has created this CMMLRip application for you.
+This file contains a summary of what you will find in each of the files that
+make up your CMMLRip application.
+
+
+CMMLRip.vcproj
+ This is the main project file for VC++ projects generated using an Application Wizard.
+ It contains information about the version of Visual C++ that generated the file, and
+ information about the platforms, configurations, and project features selected with the
+ Application Wizard.
+
+CMMLRip.cpp
+ This is the main application source file.
+
+/////////////////////////////////////////////////////////////////////////////
+Other standard files:
+
+StdAfx.h, StdAfx.cpp
+ These files are used to build a precompiled header (PCH) file
+ named CMMLRip.pch and a precompiled types file named StdAfx.obj.
+
+/////////////////////////////////////////////////////////////////////////////
+Other notes:
+
+AppWizard uses "TODO:" comments to indicate parts of the source code you
+should add to or customize.
+
+/////////////////////////////////////////////////////////////////////////////
Added: trunk/oggdsf/src/tools/CMMLRip/stdafx.cpp
===================================================================
--- trunk/oggdsf/src/tools/CMMLRip/stdafx.cpp 2005-02-01 14:22:10 UTC (rev 8818)
+++ trunk/oggdsf/src/tools/CMMLRip/stdafx.cpp 2005-02-01 14:23:23 UTC (rev 8819)
@@ -0,0 +1,8 @@
+// stdafx.cpp : source file that includes just the standard includes
+// CMMLRip.pch will be the pre-compiled header
+// stdafx.obj will contain the pre-compiled type information
+
+#include "stdafx.h"
+
+// TODO: reference any additional headers you need in STDAFX.H
+// and not in this file
Added: trunk/oggdsf/src/tools/CMMLRip/stdafx.h
===================================================================
--- trunk/oggdsf/src/tools/CMMLRip/stdafx.h 2005-02-01 14:22:10 UTC (rev 8818)
+++ trunk/oggdsf/src/tools/CMMLRip/stdafx.h 2005-02-01 14:23:23 UTC (rev 8819)
@@ -0,0 +1,12 @@
+// stdafx.h : include file for standard system include files,
+// or project specific include files that are used frequently, but
+// are changed infrequently
+//
+
+#pragma once
+
+
+#include <iostream>
+#include <tchar.h>
+
+// TODO: reference additional headers your program requires here
Added: trunk/oggdsf/src/tools/CMMLValidate/CMMLValidate.cpp
===================================================================
--- trunk/oggdsf/src/tools/CMMLValidate/CMMLValidate.cpp 2005-02-01 14:22:10 UTC (rev 8818)
+++ trunk/oggdsf/src/tools/CMMLValidate/CMMLValidate.cpp 2005-02-01 14:23:23 UTC (rev 8819)
@@ -0,0 +1,10 @@
+// CMMLValidate.cpp : Defines the entry point for the console application.
+//
+
+#include "stdafx.h"
+
+int _tmain(int argc, _TCHAR* argv[])
+{
+ return 0;
+}
+
Added: trunk/oggdsf/src/tools/CMMLValidate/CMMLValidate.vcproj
===================================================================
--- trunk/oggdsf/src/tools/CMMLValidate/CMMLValidate.vcproj 2005-02-01 14:22:10 UTC (rev 8818)
+++ trunk/oggdsf/src/tools/CMMLValidate/CMMLValidate.vcproj 2005-02-01 14:23:23 UTC (rev 8819)
@@ -0,0 +1,153 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="7.10"
+ Name="CMMLValidate"
+ ProjectGUID="{C1EEEFFD-5E6D-414D-A86B-104F8B4A5C40}"
+ Keyword="Win32Proj">
+ <Platforms>
+ <Platform
+ Name="Win32"/>
+ </Platforms>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="Debug"
+ IntermediateDirectory="Debug"
+ ConfigurationType="1"
+ CharacterSet="2">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="TRUE"
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="5"
+ UsePrecompiledHeader="3"
+ WarningLevel="3"
+ Detect64BitPortabilityProblems="TRUE"
+ DebugInformationFormat="4"/>
+ <Tool
+ Name="VCCustomBuildTool"/>
+ <Tool
+ Name="VCLinkerTool"
+ OutputFile="$(OutDir)/CMMLValidate.exe"
+ LinkIncremental="2"
+ GenerateDebugInformation="TRUE"
+ ProgramDatabaseFile="$(OutDir)/CMMLValidate.pdb"
+ SubSystem="1"
+ TargetMachine="1"/>
+ <Tool
+ Name="VCMIDLTool"/>
+ <Tool
+ Name="VCPostBuildEventTool"/>
+ <Tool
+ Name="VCPreBuildEventTool"/>
+ <Tool
+ Name="VCPreLinkEventTool"/>
+ <Tool
+ Name="VCResourceCompilerTool"/>
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"/>
+ <Tool
+ Name="VCXMLDataGeneratorTool"/>
+ <Tool
+ Name="VCWebDeploymentTool"/>
+ <Tool
+ Name="VCManagedWrapperGeneratorTool"/>
+ <Tool
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="Release"
+ IntermediateDirectory="Release"
+ ConfigurationType="1"
+ CharacterSet="2">
+ <Tool
+ Name="VCCLCompilerTool"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
+ RuntimeLibrary="4"
+ UsePrecompiledHeader="3"
+ WarningLevel="3"
+ Detect64BitPortabilityProblems="TRUE"
+ DebugInformationFormat="3"/>
+ <Tool
+ Name="VCCustomBuildTool"/>
+ <Tool
+ Name="VCLinkerTool"
+ OutputFile="$(OutDir)/CMMLValidate.exe"
+ LinkIncremental="1"
+ GenerateDebugInformation="TRUE"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"/>
+ <Tool
+ Name="VCMIDLTool"/>
+ <Tool
+ Name="VCPostBuildEventTool"/>
+ <Tool
+ Name="VCPreBuildEventTool"/>
+ <Tool
+ Name="VCPreLinkEventTool"/>
+ <Tool
+ Name="VCResourceCompilerTool"/>
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"/>
+ <Tool
+ Name="VCXMLDataGeneratorTool"/>
+ <Tool
+ Name="VCWebDeploymentTool"/>
+ <Tool
+ Name="VCManagedWrapperGeneratorTool"/>
+ <Tool
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
+ <File
+ RelativePath=".\CMMLValidate.cpp">
+ </File>
+ <File
+ RelativePath=".\stdafx.cpp">
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="1"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="1"/>
+ </FileConfiguration>
+ </File>
+ </Filter>
+ <Filter
+ Name="Header Files"
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
+ <File
+ RelativePath=".\stdafx.h">
+ </File>
+ </Filter>
+ <Filter
+ Name="Resource Files"
+ Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
+ UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
+ </Filter>
+ <File
+ RelativePath=".\ReadMe.txt">
+ </File>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>
Added: trunk/oggdsf/src/tools/CMMLValidate/ReadMe.txt
===================================================================
--- trunk/oggdsf/src/tools/CMMLValidate/ReadMe.txt 2005-02-01 14:22:10 UTC (rev 8818)
+++ trunk/oggdsf/src/tools/CMMLValidate/ReadMe.txt 2005-02-01 14:23:23 UTC (rev 8819)
@@ -0,0 +1,32 @@
+========================================================================
+ CONSOLE APPLICATION : CMMLValidate Project Overview
+========================================================================
+
+AppWizard has created this CMMLValidate application for you.
+This file contains a summary of what you will find in each of the files that
+make up your CMMLValidate application.
+
+
+CMMLValidate.vcproj
+ This is the main project file for VC++ projects generated using an Application Wizard.
+ It contains information about the version of Visual C++ that generated the file, and
+ information about the platforms, configurations, and project features selected with the
+ Application Wizard.
+
+CMMLValidate.cpp
+ This is the main application source file.
+
+/////////////////////////////////////////////////////////////////////////////
+Other standard files:
+
+StdAfx.h, StdAfx.cpp
+ These files are used to build a precompiled header (PCH) file
+ named CMMLValidate.pch and a precompiled types file named StdAfx.obj.
+
+/////////////////////////////////////////////////////////////////////////////
+Other notes:
+
+AppWizard uses "TODO:" comments to indicate parts of the source code you
+should add to or customize.
+
+/////////////////////////////////////////////////////////////////////////////
Added: trunk/oggdsf/src/tools/CMMLValidate/stdafx.cpp
===================================================================
--- trunk/oggdsf/src/tools/CMMLValidate/stdafx.cpp 2005-02-01 14:22:10 UTC (rev 8818)
+++ trunk/oggdsf/src/tools/CMMLValidate/stdafx.cpp 2005-02-01 14:23:23 UTC (rev 8819)
@@ -0,0 +1,8 @@
+// stdafx.cpp : source file that includes just the standard includes
+// CMMLValidate.pch will be the pre-compiled header
+// stdafx.obj will contain the pre-compiled type information
+
+#include "stdafx.h"
+
+// TODO: reference any additional headers you need in STDAFX.H
+// and not in this file
Added: trunk/oggdsf/src/tools/CMMLValidate/stdafx.h
===================================================================
--- trunk/oggdsf/src/tools/CMMLValidate/stdafx.h 2005-02-01 14:22:10 UTC (rev 8818)
+++ trunk/oggdsf/src/tools/CMMLValidate/stdafx.h 2005-02-01 14:23:23 UTC (rev 8819)
@@ -0,0 +1,12 @@
+// stdafx.h : include file for standard system include files,
+// or project specific include files that are used frequently, but
+// are changed infrequently
+//
+
+#pragma once
+
+
+#include <iostream>
+#include <tchar.h>
+
+// TODO: reference additional headers your program requires here
More information about the commits
mailing list