├── AAFMipsIrixSDK └── MIPSpro │ └── sss-impl │ └── libSSRW2C.a ├── AAFPPCDarwinSDK └── g++ │ ├── Scripts │ ├── README │ ├── mkDistPackage │ ├── mkDistRoot │ └── rmDistRoot │ └── sss-impl │ ├── libSSRW2C.a │ └── libSSRW2C.dylib ├── AAFSparcSolarisSDK └── g++ │ └── sss-impl │ └── libSSRW2C.a ├── AAFSystemTest.ksh ├── AAFUniversalDarwinSDK └── g++ │ └── sss-impl │ ├── libSSRW2C.a │ └── libSSRW2C.dylib ├── AAFWinSDK ├── AAFAnalyzer │ ├── AAFAnalyzer.sln │ ├── AAFAnalyzerBase │ │ └── AAFAnalyzerBase.vcproj │ ├── AAFAnalyzerMain │ │ └── AAFAnalyzerMain.vcproj │ ├── AAFReport │ │ ├── AAF.ico │ │ ├── AAFReport.csproj │ │ ├── AAFReport.sln │ │ ├── AssemblyInfo.cs │ │ ├── Program │ │ │ ├── LICENSE.txt │ │ │ └── ReadMe.html │ │ ├── RunAndPlay.cs │ │ ├── frmRepMgr.cs │ │ └── frmRepMgr.resx │ ├── AnalyzerBase │ │ └── AnalyzerBase.vcproj │ ├── BaseTestImpl │ │ └── BaseTestImpl.vcproj │ ├── EPAnalyzerBase │ │ └── EPAnalyzerBase.vcproj │ ├── EditProtocolTestImpl │ │ └── EditProtocolTestImpl.vcproj │ ├── README.TXT │ ├── RegressionTest │ │ └── RegressionTest.vcproj │ ├── RegressionTestFiles │ │ └── RegressionTestFiles.vcproj │ ├── RegressionTestStructure │ │ └── RegressionTestStructure.vcproj │ ├── RequirementLib │ │ └── RequirementLib.vcproj │ ├── Setup │ │ └── Setup.vdproj │ └── TestPhaseLib │ │ └── TestPhaseLib.vcproj ├── vs10 │ ├── AAFAnalyzer │ │ ├── AAFAnalyzer.sln │ │ ├── AAFAnalyzerBase │ │ │ └── AAFAnalyzerBase.vcxproj │ │ ├── AAFAnalyzerMain │ │ │ └── AAFAnalyzerMain.vcxproj │ │ ├── AnalyzerBase │ │ │ └── AnalyzerBase.vcxproj │ │ ├── BaseTestImpl │ │ │ └── BaseTestImpl.vcxproj │ │ ├── EPAnalyzerBase │ │ │ └── EPAnalyzerBase.vcxproj │ │ ├── EditProtocolTestImpl │ │ │ └── EditProtocolTestImpl.vcxproj │ │ ├── NoWarnings.props │ │ ├── README.TXT │ │ ├── RegressionTestFiles │ │ │ └── RegressionTestFiles.vcxproj │ │ ├── RegressionTestStructure │ │ │ └── RegressionTestStructure.vcxproj │ │ ├── RequirementLib │ │ │ └── RequirementLib.vcxproj │ │ └── TestPhaseLib │ │ │ └── TestPhaseLib.vcxproj │ ├── AAFDebug_x64.props │ ├── AAFRelease.props │ ├── AAFReleaseAndDebug.props │ ├── AAFRelease_x64.props │ ├── AAFWinSDK.sln │ ├── DevUtils │ │ ├── Dump │ │ │ └── dump.vcxproj │ │ └── MXFDump │ │ │ └── mxfdump.vcxproj │ ├── Everything │ │ └── Everything.vcxproj │ ├── MakeSDK.vcxproj │ ├── MakeSDKExamples.vcxproj │ ├── MakeSDKExamples2.vcxproj │ ├── MakeSDKSharedFiles.mak │ ├── MakeSDKTests.vcxproj │ ├── MakeSDKUtilities.vcxproj │ ├── Test │ │ └── com │ │ │ ├── ComFileExtensionTest │ │ │ └── ComFileExtensionTest.vcxproj │ │ │ ├── ComFileKindTest │ │ │ └── ComFileKindTest.vcxproj │ │ │ ├── ComModTestAAF │ │ │ ├── ComModTestAAF.vcxproj │ │ │ ├── Laser.wav │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ │ ├── CreateSequence │ │ │ └── CreateSequence.vcxproj │ │ │ ├── EssenceAccess │ │ │ └── EssenceAccess.vcxproj │ │ │ ├── MetaModelVerification │ │ │ └── MetaModelVerification.vcxproj │ │ │ ├── MultiGenTest │ │ │ └── MultiGenTest.vcxproj │ │ │ ├── OpenExistingModify │ │ │ └── OpenExistingModify.vcxproj │ │ │ ├── ResultToTextTest │ │ │ └── ResultToTextTest.vcxproj │ │ │ ├── ScaleTest │ │ │ └── ScaleTest.vcxproj │ │ │ ├── UTF8FileNameTest │ │ │ └── UTF8FileNameTest.vcxproj │ │ │ └── XMLStoredFormat │ │ │ └── XMLStoredFormat.vcxproj │ ├── Utilities │ │ ├── AafOmf │ │ │ └── Debug │ │ │ │ └── Complx2x.omf │ │ ├── aafdump │ │ │ └── aafdump.vcxproj │ │ ├── aafembed │ │ │ └── aafembed.vcxproj │ │ ├── aafextract │ │ │ └── aafextract.vcxproj │ │ ├── aaffmtconv │ │ │ └── aaffmtconv.vcxproj │ │ ├── aafviewer │ │ │ ├── aaf2dot │ │ │ │ └── aaf2dot.vcxproj │ │ │ └── aafmeta2dot │ │ │ │ └── aafmeta2dot.vcxproj │ │ └── eli2aaf │ │ │ └── eli2aaf.vcxproj │ ├── examples │ │ └── com-api │ │ │ ├── ComAAFInfo │ │ │ └── ComAAFInfo.vcxproj │ │ │ ├── ComClientTestAAF │ │ │ └── ComClientTestAAF.vcxproj │ │ │ ├── ComCutsTestAAF │ │ │ └── ComCutsTestAAF.vcxproj │ │ │ ├── ComEssenceDataTest │ │ │ ├── ComEssenceDataTest.vcxproj │ │ │ └── Laser.wav │ │ │ ├── ComExtension │ │ │ ├── ComExtensionRead.vcxproj │ │ │ └── ComExtensionWrite.vcxproj │ │ │ ├── ComPersonnelExtension │ │ │ ├── ComPersonnelExtension.vcxproj │ │ │ └── ComPersonnelPluginWrite.vcxproj │ │ │ ├── ComPropDirectAccess │ │ │ └── ComPropDirectAccess.vcxproj │ │ │ ├── ComPropDirectDump │ │ │ └── ComPropDirectDump.vcxproj │ │ │ ├── ExportAS05Effects │ │ │ └── ExportAS05Effects.vcxproj │ │ │ ├── ExportAudioExample │ │ │ └── ExportAudioExample.vcxproj │ │ │ ├── ExportDV │ │ │ └── ExportDV.vcxproj │ │ │ ├── ExportJPEG │ │ │ └── ExportJPEG.vcxproj │ │ │ ├── ExportPCM │ │ │ └── ExportPCM.vcxproj │ │ │ ├── ExportSimpleComposition │ │ │ └── ExportSimpleComposition.vcxproj │ │ │ ├── ExportVC3 │ │ │ └── ExportVC3.vcxproj │ │ │ ├── ImportAudioExample │ │ │ └── ImportAudioExample.vcxproj │ │ │ ├── ImportDV │ │ │ └── ImportDV.vcxproj │ │ │ ├── ImportJPEG │ │ │ └── ImportJPEG.vcxproj │ │ │ ├── ImportPCM │ │ │ └── ImportPCM.vcxproj │ │ │ ├── ImportVC3 │ │ │ └── ImportVC3.vcxproj │ │ │ └── InfoDumper │ │ │ └── InfoDumper.vcxproj │ ├── examples2 │ │ ├── axDump │ │ │ └── axDump.vcxproj │ │ ├── axExample │ │ │ └── axExample.vcxproj │ │ ├── axFileGen │ │ │ └── axFileGen.vcxproj │ │ ├── axHrMap │ │ │ └── axHrMap.vcxproj │ │ ├── axLib │ │ │ └── axLib.vcxproj │ │ ├── axMasterMobEx │ │ │ └── axMasterMobEx.vcxproj │ │ ├── axPlugin │ │ │ └── axPlugin.vcxproj │ │ └── axPluginInfo │ │ │ └── axPluginInfo.vcxproj │ ├── include │ │ ├── AAFVersion.rc │ │ └── resource.h │ ├── meta │ │ └── headergen │ │ │ ├── AAFHeaderGen.props │ │ │ ├── classDefUids │ │ │ └── classDefUids.vcxproj │ │ │ ├── extEnumUid │ │ │ └── extEnumUid.vcxproj │ │ │ ├── genASPAIDs │ │ │ └── genASPAIDs.vcxproj │ │ │ ├── genDefInstances │ │ │ └── genDefInstances.vcxproj │ │ │ ├── generate │ │ │ ├── generate.mak │ │ │ └── generate.vcxproj │ │ │ ├── headerGenUtils │ │ │ └── headerGenUtils.vcxproj │ │ │ ├── headergen.sln │ │ │ ├── propertyDefUid │ │ │ └── propertyDefUid.vcxproj │ │ │ ├── propertyId │ │ │ └── propertyId.vcxproj │ │ │ ├── result │ │ │ └── result.vcxproj │ │ │ ├── storedObjectUid │ │ │ └── storedObjectUid.vcxproj │ │ │ └── typeDefUid │ │ │ └── typeDefUid.vcxproj │ ├── ref-impl │ │ ├── AAFBasicInterpolators │ │ │ └── AAFBasicInterpolators.vcxproj │ │ ├── AAFStandardCodecs │ │ │ └── AAFStandardCodecs.vcxproj │ │ ├── Impl │ │ │ ├── Impl.vcxproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── Om │ │ │ └── Om.vcxproj │ │ ├── aafiid │ │ │ └── AAFIID.vcxproj │ │ ├── aaflib │ │ │ └── AAFLIB.vcxproj │ │ ├── comapi │ │ │ ├── comapi.vcxproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── expat │ │ │ └── expat.vcxproj │ │ └── libjpeg │ │ │ └── libjpeg.vcxproj │ ├── sss-impl │ │ ├── Win32 │ │ │ └── ssrw_c.lib │ │ └── x64 │ │ │ └── ssrw_c.lib │ ├── update.bat │ └── update.cmd ├── vs7 │ ├── AAFAnalyzer │ │ ├── AAFAnalyzer.sln │ │ ├── AAFAnalyzerBase │ │ │ └── AAFAnalyzerBase.vcproj │ │ ├── AAFAnalyzerMain │ │ │ └── AAFAnalyzerMain.vcproj │ │ ├── AAFReport │ │ │ ├── AAF.ico │ │ │ ├── AAFReport.csproj │ │ │ ├── AAFReport.sln │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Program │ │ │ │ ├── LICENSE.txt │ │ │ │ └── ReadMe.html │ │ │ ├── RunAndPlay.cs │ │ │ ├── frmRepMgr.cs │ │ │ └── frmRepMgr.resx │ │ ├── AnalyzerBase │ │ │ └── AnalyzerBase.vcproj │ │ ├── BaseTestImpl │ │ │ └── BaseTestImpl.vcproj │ │ ├── EPAnalyzerBase │ │ │ └── EPAnalyzerBase.vcproj │ │ ├── EditProtocolTestImpl │ │ │ └── EditProtocolTestImpl.vcproj │ │ ├── README.TXT │ │ ├── RegressionTest │ │ │ └── RegressionTest.vcproj │ │ ├── RegressionTestFiles │ │ │ └── RegressionTestFiles.vcproj │ │ ├── RegressionTestStructure │ │ │ └── RegressionTestStructure.vcproj │ │ ├── RequirementLib │ │ │ └── RequirementLib.vcproj │ │ ├── Setup │ │ │ └── Setup.vdproj │ │ └── TestPhaseLib │ │ │ └── TestPhaseLib.vcproj │ ├── AAFWinSDK.sln │ ├── DevUtils │ │ ├── Dump │ │ │ └── dump.vcproj │ │ └── MXFDump │ │ │ └── mxfdump.vcproj │ ├── Everything │ │ └── Everything.vcproj │ ├── MakeSDK.vcproj │ ├── MakeSDKExamples.vcproj │ ├── MakeSDKExamples2.vcproj │ ├── MakeSDKUtilities.vcproj │ ├── Test │ │ └── com │ │ │ ├── ComFileKindTest │ │ │ └── ComFileKindTest.vcproj │ │ │ ├── ComModTestAAF │ │ │ ├── ComModTestAAF.vcproj │ │ │ ├── Laser.wav │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ │ ├── CreateSequence │ │ │ └── CreateSequence.vcproj │ │ │ ├── EssenceAccess │ │ │ └── EssenceAccess.vcproj │ │ │ ├── MetaModelVerification │ │ │ └── MetaModelVerification.vcproj │ │ │ ├── MultiGenTest │ │ │ └── MultiGenTest.vcproj │ │ │ ├── OpenExistingModify │ │ │ └── OpenExistingModify.vcproj │ │ │ ├── ResultToTextTest │ │ │ └── ResultToTextTest.vcproj │ │ │ ├── ScaleTest │ │ │ └── ScaleTest.vcproj │ │ │ ├── UTF8FileNameTest │ │ │ └── UTF8FileNameTest.vcproj │ │ │ └── XMLStoredFormat │ │ │ └── XMLStoredFormat.vcproj │ ├── Utilities │ │ ├── AAFConverterLib │ │ │ └── AAFConverterLib.vcproj │ │ ├── AafOmf │ │ │ └── AafOmf.vcproj │ │ ├── aafdump │ │ │ └── aafdump.vcproj │ │ ├── aafembed │ │ │ └── aafembed.vcproj │ │ ├── aafextract │ │ │ └── aafextract.vcproj │ │ ├── aaffmtconv │ │ │ └── aaffmtconv.vcproj │ │ ├── aafviewer │ │ │ ├── aaf2dot │ │ │ │ └── aaf2dot.vcproj │ │ │ └── aafmeta2dot │ │ │ │ └── aafmeta2dot.vcproj │ │ └── eli2aaf │ │ │ └── eli2aaf.vcproj │ ├── examples │ │ └── com-api │ │ │ ├── ComAAFInfo │ │ │ └── ComAAFInfo.vcproj │ │ │ ├── ComClientTestAAF │ │ │ └── ComClientTestAAF.vcproj │ │ │ ├── ComCutsTestAAF │ │ │ └── ComCutsTestAAF.vcproj │ │ │ ├── ComEssenceDataTest │ │ │ ├── ComEssenceDataTest.vcproj │ │ │ └── Laser.wav │ │ │ ├── ComExtension │ │ │ ├── ComExtensionRead.vcproj │ │ │ └── ComExtensionWrite.vcproj │ │ │ ├── ComPersonnelExtension │ │ │ ├── ComPersonnelExtension.vcproj │ │ │ └── ComPersonnelPluginWrite.vcproj │ │ │ ├── ComPropDirectAccess │ │ │ └── ComPropDirectAccess.vcproj │ │ │ ├── ComPropDirectDump │ │ │ └── ComPropDirectDump.vcproj │ │ │ ├── ExportAS05Effects │ │ │ └── ExportAS05Effects.vcproj │ │ │ ├── ExportAudioExample │ │ │ └── ExportAudioExample.vcproj │ │ │ ├── ExportDV │ │ │ └── ExportDV.vcproj │ │ │ ├── ExportJPEG │ │ │ └── ExportJPEG.vcproj │ │ │ ├── ExportPCM │ │ │ └── ExportPCM.vcproj │ │ │ ├── ExportSimpleComposition │ │ │ └── ExportSimpleComposition.vcproj │ │ │ ├── ExportVC3 │ │ │ └── ExportVC3.vcproj │ │ │ ├── ImportAudioExample │ │ │ └── ImportAudioExample.vcproj │ │ │ ├── ImportDV │ │ │ └── ImportDV.vcproj │ │ │ ├── ImportJPEG │ │ │ └── ImportJPEG.vcproj │ │ │ ├── ImportPCM │ │ │ └── ImportPCM.vcproj │ │ │ ├── ImportVC3 │ │ │ └── ImportVC3.vcproj │ │ │ └── InfoDumper │ │ │ └── InfoDumper.vcproj │ ├── examples2 │ │ ├── axDump │ │ │ └── axDump.vcproj │ │ ├── axExample │ │ │ └── axExample.vcproj │ │ ├── axFileGen │ │ │ └── axFileGen.vcproj │ │ ├── axHrMap │ │ │ └── axHrMap.vcproj │ │ ├── axLib │ │ │ └── axLib.vcproj │ │ ├── axMasterMobEx │ │ │ └── axMasterMobEx.vcproj │ │ ├── axPlugin │ │ │ └── axPlugin.vcproj │ │ └── axPluginInfo │ │ │ └── axPluginInfo.vcproj │ ├── include │ │ ├── AAFVersion.rc │ │ └── resource.h │ ├── ref-impl │ │ ├── AAFBasicInterpolators │ │ │ └── AAFBasicInterpolators.vcproj │ │ ├── AAFStandardCodecs │ │ │ └── AAFStandardCodecs.vcproj │ │ ├── Impl │ │ │ ├── Impl.vcproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── Om │ │ │ └── Om.vcproj │ │ ├── aafiid │ │ │ └── AAFIID.vcproj │ │ ├── aaflib │ │ │ └── AAFLIB.vcproj │ │ ├── comapi │ │ │ ├── comapi.vcproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── expat │ │ │ └── expat.vcproj │ │ └── libjpeg │ │ │ └── libjpeg.vcproj │ ├── sss-impl │ │ └── ssrw_c.lib │ ├── update.bat │ ├── update.cmd │ └── win32aafsdk.mak ├── vs8 │ ├── AAFAnalyzer │ │ ├── AAFAnalyzer.sln │ │ ├── AAFAnalyzerBase │ │ │ └── AAFAnalyzerBase.vcproj │ │ ├── AAFAnalyzerMain │ │ │ ├── AAFAnalyzerMain.vcproj │ │ │ └── Debug │ │ │ │ └── AAFAnalyzerMain.exe.embed.manifest.res │ │ ├── AAFReport │ │ │ ├── AAF.ico │ │ │ ├── AAFReport.csproj │ │ │ ├── AAFReport.sln │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Program │ │ │ │ └── LICENSE.txt │ │ │ ├── RunAndPlay.cs │ │ │ ├── frmRepMgr.cs │ │ │ └── frmRepMgr.resx │ │ ├── AnalyzerBase │ │ │ └── AnalyzerBase.vcproj │ │ ├── BaseTestImpl │ │ │ └── BaseTestImpl.vcproj │ │ ├── EPAnalyzerBase │ │ │ └── EPAnalyzerBase.vcproj │ │ ├── EditProtocolTestImpl │ │ │ └── EditProtocolTestImpl.vcproj │ │ ├── NoWarnings.vsprops │ │ ├── NoWarningsAsError.vsprops │ │ ├── README.TXT │ │ ├── RegressionTest │ │ │ └── RegressionTest.vcproj │ │ ├── RegressionTestFiles │ │ │ ├── Debug │ │ │ │ └── TestFileBuilder.exe.embed.manifest.res │ │ │ └── RegressionTestFiles.vcproj │ │ ├── RegressionTestStructure │ │ │ ├── Debug │ │ │ │ └── RegressionTestStructure.exe.embed.manifest.res │ │ │ └── RegressionTestStructure.vcproj │ │ ├── RequirementLib │ │ │ └── RequirementLib.vcproj │ │ ├── Setup │ │ │ └── Setup.vdproj │ │ └── TestPhaseLib │ │ │ └── TestPhaseLib.vcproj │ ├── AAFWinSDK.sln │ ├── DevUtils │ │ ├── Dump │ │ │ └── dump.vcproj │ │ └── MXFDump │ │ │ └── mxfdump.vcproj │ ├── Everything │ │ └── Everything.vcproj │ ├── MakeSDK.vcproj │ ├── MakeSDKExamples.vcproj │ ├── MakeSDKExamples2.vcproj │ ├── MakeSDKUtilities.vcproj │ ├── NoVS8Warnings.vsprops │ ├── NoVS8WarningsAsError.vsprops │ ├── Test │ │ └── com │ │ │ ├── ComFileKindTest │ │ │ └── ComFileKindTest.vcproj │ │ │ ├── ComModTestAAF │ │ │ ├── ComModTestAAF.vcproj │ │ │ ├── Laser.wav │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ │ ├── CreateSequence │ │ │ └── CreateSequence.vcproj │ │ │ ├── EssenceAccess │ │ │ └── EssenceAccess.vcproj │ │ │ ├── MetaModelVerification │ │ │ └── MetaModelVerification.vcproj │ │ │ ├── MultiGenTest │ │ │ └── MultiGenTest.vcproj │ │ │ ├── OpenExistingModify │ │ │ └── OpenExistingModify.vcproj │ │ │ ├── ResultToTextTest │ │ │ └── ResultToTextTest.vcproj │ │ │ ├── ScaleTest │ │ │ └── ScaleTest.vcproj │ │ │ ├── UTF8FileNameTest │ │ │ └── UTF8FileNameTest.vcproj │ │ │ └── XMLStoredFormat │ │ │ └── XMLStoredFormat.vcproj │ ├── Utilities │ │ ├── AAFConverterLib │ │ │ └── AAFConverterLib.vcproj │ │ ├── AafOmf │ │ │ └── AafOmf.vcproj │ │ ├── aafdump │ │ │ └── aafdump.vcproj │ │ ├── aafembed │ │ │ └── aafembed.vcproj │ │ ├── aafextract │ │ │ └── aafextract.vcproj │ │ ├── aaffmtconv │ │ │ └── aaffmtconv.vcproj │ │ ├── aafviewer │ │ │ ├── aaf2dot │ │ │ │ └── aaf2dot.vcproj │ │ │ └── aafmeta2dot │ │ │ │ └── aafmeta2dot.vcproj │ │ └── eli2aaf │ │ │ └── eli2aaf.vcproj │ ├── examples │ │ └── com-api │ │ │ ├── ComAAFInfo │ │ │ └── ComAAFInfo.vcproj │ │ │ ├── ComClientTestAAF │ │ │ └── ComClientTestAAF.vcproj │ │ │ ├── ComCutsTestAAF │ │ │ └── ComCutsTestAAF.vcproj │ │ │ ├── ComEssenceDataTest │ │ │ ├── ComEssenceDataTest.vcproj │ │ │ └── Laser.wav │ │ │ ├── ComExtension │ │ │ ├── ComExtensionRead.vcproj │ │ │ └── ComExtensionWrite.vcproj │ │ │ ├── ComPersonnelExtension │ │ │ ├── ComPersonnelExtension.vcproj │ │ │ └── ComPersonnelPluginWrite.vcproj │ │ │ ├── ComPropDirectAccess │ │ │ └── ComPropDirectAccess.vcproj │ │ │ ├── ComPropDirectDump │ │ │ └── ComPropDirectDump.vcproj │ │ │ ├── ExportAS05Effects │ │ │ └── ExportAS05Effects.vcproj │ │ │ ├── ExportAudioExample │ │ │ └── ExportAudioExample.vcproj │ │ │ ├── ExportDV │ │ │ └── ExportDV.vcproj │ │ │ ├── ExportJPEG │ │ │ └── ExportJPEG.vcproj │ │ │ ├── ExportPCM │ │ │ └── ExportPCM.vcproj │ │ │ ├── ExportSimpleComposition │ │ │ └── ExportSimpleComposition.vcproj │ │ │ ├── ExportVC3 │ │ │ └── ExportVC3.vcproj │ │ │ ├── ImportAudioExample │ │ │ └── ImportAudioExample.vcproj │ │ │ ├── ImportDV │ │ │ └── ImportDV.vcproj │ │ │ ├── ImportJPEG │ │ │ └── ImportJPEG.vcproj │ │ │ ├── ImportPCM │ │ │ └── ImportPCM.vcproj │ │ │ ├── ImportVC3 │ │ │ └── ImportVC3.vcproj │ │ │ └── InfoDumper │ │ │ └── InfoDumper.vcproj │ ├── examples2 │ │ ├── axDump │ │ │ └── axDump.vcproj │ │ ├── axExample │ │ │ └── axExample.vcproj │ │ ├── axFileGen │ │ │ └── axFileGen.vcproj │ │ ├── axHrMap │ │ │ └── axHrMap.vcproj │ │ ├── axLib │ │ │ └── axLib.vcproj │ │ ├── axMasterMobEx │ │ │ └── axMasterMobEx.vcproj │ │ ├── axPlugin │ │ │ └── axPlugin.vcproj │ │ └── axPluginInfo │ │ │ └── axPluginInfo.vcproj │ ├── include │ │ ├── AAFVersion.rc │ │ └── resource.h │ ├── meta │ │ └── headergen │ │ │ ├── NoVS8Warnings.vsprops │ │ │ ├── classDefUids │ │ │ └── classDefUids.vcproj │ │ │ ├── extEnumUid │ │ │ └── extEnumUid.vcproj │ │ │ ├── genASPAIDs │ │ │ └── genASPAIDs.vcproj │ │ │ ├── genDefInstances │ │ │ └── genDefInstances.vcproj │ │ │ ├── generate │ │ │ ├── generate.mak │ │ │ └── generate.vcproj │ │ │ ├── headerGenUtils │ │ │ └── headerGenUtils.vcproj │ │ │ ├── headergen.sln │ │ │ ├── propertyDefUid │ │ │ └── propertyDefUid.vcproj │ │ │ ├── propertyId │ │ │ └── propertyId.vcproj │ │ │ ├── result │ │ │ └── result.vcproj │ │ │ ├── storedObjectUid │ │ │ └── storedObjectUid.vcproj │ │ │ └── typeDefUid │ │ │ └── typeDefUid.vcproj │ ├── ref-impl │ │ ├── AAFBasicInterpolators │ │ │ └── AAFBasicInterpolators.vcproj │ │ ├── AAFStandardCodecs │ │ │ └── AAFStandardCodecs.vcproj │ │ ├── Impl │ │ │ ├── Impl.vcproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── Om │ │ │ └── Om.vcproj │ │ ├── aafiid │ │ │ └── AAFIID.vcproj │ │ ├── aaflib │ │ │ └── AAFLIB.vcproj │ │ ├── comapi │ │ │ ├── comapi.vcproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── expat │ │ │ └── expat.vcproj │ │ └── libjpeg │ │ │ └── libjpeg.vcproj │ ├── sss-impl │ │ └── ssrw_c.lib │ ├── update.bat │ ├── update.cmd │ └── win32aafsdk.mak └── vs9 │ ├── AAFAnalyzer │ ├── AAFAnalyzer.sln │ ├── AAFAnalyzerBase │ │ └── AAFAnalyzerBase.vcproj │ ├── AAFAnalyzerMain │ │ ├── AAFAnalyzerMain.vcproj │ │ └── Debug │ │ │ └── AAFAnalyzerMain.exe.embed.manifest.res │ ├── AAFReport │ │ ├── AAF.ico │ │ ├── AAFReport.csproj │ │ ├── AAFReport.sln │ │ ├── AssemblyInfo.cs │ │ ├── Program │ │ │ └── LICENSE.txt │ │ ├── RunAndPlay.cs │ │ ├── frmRepMgr.cs │ │ └── frmRepMgr.resx │ ├── AnalyzerBase │ │ └── AnalyzerBase.vcproj │ ├── BaseTestImpl │ │ └── BaseTestImpl.vcproj │ ├── EPAnalyzerBase │ │ └── EPAnalyzerBase.vcproj │ ├── EditProtocolTestImpl │ │ └── EditProtocolTestImpl.vcproj │ ├── NoWarnings.vsprops │ ├── NoWarningsAsError.vsprops │ ├── README.TXT │ ├── RegressionTest │ │ └── RegressionTest.vcproj │ ├── RegressionTestFiles │ │ ├── Debug │ │ │ └── TestFileBuilder.exe.embed.manifest.res │ │ └── RegressionTestFiles.vcproj │ ├── RegressionTestStructure │ │ ├── Debug │ │ │ └── RegressionTestStructure.exe.embed.manifest.res │ │ └── RegressionTestStructure.vcproj │ ├── RequirementLib │ │ └── RequirementLib.vcproj │ ├── Setup │ │ └── Setup.vdproj │ └── TestPhaseLib │ │ └── TestPhaseLib.vcproj │ ├── AAFWinSDK.sln │ ├── DevUtils │ ├── Dump │ │ └── dump.vcproj │ └── MXFDump │ │ └── mxfdump.vcproj │ ├── Everything │ ├── Everything.vcproj │ └── SecureOff.vsprops │ ├── MakeSDK.vcproj │ ├── MakeSDKExamples.vcproj │ ├── MakeSDKExamples2.vcproj │ ├── MakeSDKUtilities.vcproj │ ├── NoVS9Warnings.vsprops │ ├── NoVS9WarningsAsError.vsprops │ ├── Test │ └── com │ │ ├── ComFileExtensionTest │ │ └── ComFileExtensionTest.vcproj │ │ ├── ComFileKindTest │ │ └── ComFileKindTest.vcproj │ │ ├── ComModTestAAF │ │ ├── ComModTestAAF.vcproj │ │ ├── Laser.wav │ │ ├── stdafx.cpp │ │ └── stdafx.h │ │ ├── CreateSequence │ │ └── CreateSequence.vcproj │ │ ├── EssenceAccess │ │ └── EssenceAccess.vcproj │ │ ├── MetaModelVerification │ │ └── MetaModelVerification.vcproj │ │ ├── MultiGenTest │ │ └── MultiGenTest.vcproj │ │ ├── OpenExistingModify │ │ └── OpenExistingModify.vcproj │ │ ├── ResultToTextTest │ │ └── ResultToTextTest.vcproj │ │ ├── ScaleTest │ │ └── ScaleTest.vcproj │ │ ├── UTF8FileNameTest │ │ └── UTF8FileNameTest.vcproj │ │ └── XMLStoredFormat │ │ └── XMLStoredFormat.vcproj │ ├── Utilities │ ├── AAFConverterLib │ │ └── AAFConverterLib.vcproj │ ├── AafOmf │ │ ├── AafOmf.vcproj │ │ └── Debug │ │ │ └── Complx2x.omf │ ├── aafdump │ │ └── aafdump.vcproj │ ├── aafembed │ │ └── aafembed.vcproj │ ├── aafextract │ │ └── aafextract.vcproj │ ├── aaffmtconv │ │ └── aaffmtconv.vcproj │ ├── aafviewer │ │ ├── aaf2dot │ │ │ └── aaf2dot.vcproj │ │ └── aafmeta2dot │ │ │ └── aafmeta2dot.vcproj │ └── eli2aaf │ │ └── eli2aaf.vcproj │ ├── VS9x86_64ReleaseWarnings.vsprops │ ├── examples │ └── com-api │ │ ├── ComAAFInfo │ │ └── ComAAFInfo.vcproj │ │ ├── ComClientTestAAF │ │ └── ComClientTestAAF.vcproj │ │ ├── ComCutsTestAAF │ │ └── ComCutsTestAAF.vcproj │ │ ├── ComEssenceDataTest │ │ ├── ComEssenceDataTest.vcproj │ │ └── Laser.wav │ │ ├── ComExtension │ │ ├── ComExtensionRead.vcproj │ │ └── ComExtensionWrite.vcproj │ │ ├── ComPersonnelExtension │ │ ├── ComPersonnelExtension.vcproj │ │ └── ComPersonnelPluginWrite.vcproj │ │ ├── ComPropDirectAccess │ │ └── ComPropDirectAccess.vcproj │ │ ├── ComPropDirectDump │ │ └── ComPropDirectDump.vcproj │ │ ├── ExportAS05Effects │ │ └── ExportAS05Effects.vcproj │ │ ├── ExportAudioExample │ │ └── ExportAudioExample.vcproj │ │ ├── ExportDV │ │ └── ExportDV.vcproj │ │ ├── ExportJPEG │ │ └── ExportJPEG.vcproj │ │ ├── ExportPCM │ │ └── ExportPCM.vcproj │ │ ├── ExportSimpleComposition │ │ └── ExportSimpleComposition.vcproj │ │ ├── ExportVC3 │ │ └── ExportVC3.vcproj │ │ ├── ImportAudioExample │ │ └── ImportAudioExample.vcproj │ │ ├── ImportDV │ │ └── ImportDV.vcproj │ │ ├── ImportJPEG │ │ └── ImportJPEG.vcproj │ │ ├── ImportPCM │ │ └── ImportPCM.vcproj │ │ ├── ImportVC3 │ │ └── ImportVC3.vcproj │ │ └── InfoDumper │ │ └── InfoDumper.vcproj │ ├── examples2 │ ├── axDump │ │ └── axDump.vcproj │ ├── axExample │ │ └── axExample.vcproj │ ├── axFileGen │ │ └── axFileGen.vcproj │ ├── axHrMap │ │ └── axHrMap.vcproj │ ├── axLib │ │ └── axLib.vcproj │ ├── axMasterMobEx │ │ └── axMasterMobEx.vcproj │ ├── axPlugin │ │ └── axPlugin.vcproj │ └── axPluginInfo │ │ └── axPluginInfo.vcproj │ ├── include │ ├── AAFVersion.rc │ └── resource.h │ ├── meta │ └── headergen │ │ ├── NoVS9Warnings.vsprops │ │ ├── classDefUids │ │ └── classDefUids.vcproj │ │ ├── extEnumUid │ │ └── extEnumUid.vcproj │ │ ├── genASPAIDs │ │ └── genASPAIDs.vcproj │ │ ├── genDefInstances │ │ └── genDefInstances.vcproj │ │ ├── generate │ │ ├── generate.mak │ │ └── generate.vcproj │ │ ├── headerGenUtils │ │ └── headerGenUtils.vcproj │ │ ├── headergen.sln │ │ ├── propertyDefUid │ │ └── propertyDefUid.vcproj │ │ ├── propertyId │ │ └── propertyId.vcproj │ │ ├── result │ │ └── result.vcproj │ │ ├── storedObjectUid │ │ └── storedObjectUid.vcproj │ │ └── typeDefUid │ │ └── typeDefUid.vcproj │ ├── ref-impl │ ├── AAFBasicInterpolators │ │ └── AAFBasicInterpolators.vcproj │ ├── AAFStandardCodecs │ │ └── AAFStandardCodecs.vcproj │ ├── Impl │ │ ├── Impl.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── Om │ │ └── Om.vcproj │ ├── aafiid │ │ └── AAFIID.vcproj │ ├── aaflib │ │ └── AAFLIB.vcproj │ ├── comapi │ │ ├── comapi.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── expat │ │ └── expat.vcproj │ └── libjpeg │ │ └── libjpeg.vcproj │ ├── sss-impl │ ├── ssrw_c.lib │ └── x64 │ │ └── ssrw_c.lib │ ├── update.bat │ ├── update.cmd │ └── win32aafsdk.mak ├── AAFi386DarwinSDK └── g++ │ └── sss-impl │ ├── libSSRW2C.a │ └── libSSRW2C.dylib ├── AAFi686LinuxSDK └── g++ │ └── sss-impl │ └── libSSRW2C.a ├── AAFx86_64DarwinSDK └── g++ │ └── sss-impl │ └── libSSRW2C.a ├── AAFx86_64LinuxSDK └── g++ │ └── sss-impl │ └── libSSRW2C.a ├── DevUtils ├── Dump │ ├── GNUmakefile │ └── dump.cpp ├── GNUmakefile └── MXFDump │ ├── GNUmakefile │ ├── MXFDump.cpp │ ├── MXFLabels.h │ └── MXFMetaDictionary.h ├── EfficiencyStats.ksh ├── GNUmakefile ├── LEGAL └── AAFSDKPSL.TXT ├── README.TXT ├── ReleaseNotes.txt ├── RunModTestAndExamples.bash ├── RunModTestAndExamples.ksh ├── Utilities ├── AAFAnalyzer │ ├── AAFAnalyzer │ │ ├── AAFAnalyzerMain.cpp │ │ └── GNUmakefile │ ├── AAFAnalyzerBase │ │ ├── AAFComponentReference.cpp │ │ ├── AAFComponentReference.h │ │ ├── AAFContainment.cpp │ │ ├── AAFContainment.h │ │ ├── AAFGraphInfo.cpp │ │ ├── AAFGraphInfo.h │ │ ├── AAFMobReference.cpp │ │ ├── AAFMobReference.h │ │ ├── AAFObjNode.cpp │ │ ├── AAFObjNode.h │ │ ├── AAFSlotReference.cpp │ │ ├── AAFSlotReference.h │ │ ├── AAFTypedObjNode.cpp │ │ ├── AAFTypedObjNode.h │ │ ├── AAFTypedObjNodeDecorator.cpp │ │ ├── AAFTypedObjNodeDecorator.h │ │ ├── AAFTypedObjNodeImpl.cpp │ │ ├── AAFTypedObjNodeImpl.h │ │ ├── GNUmakefile │ │ ├── GraphBuilder.cpp │ │ ├── GraphBuilder.h │ │ ├── MobNodeMap.cpp │ │ ├── MobNodeMap.h │ │ ├── NodeFactory.cpp │ │ ├── NodeFactory.h │ │ ├── NodeFactoryImpl.cpp │ │ ├── NodeFactoryImpl.h │ │ ├── NodeRegistryGen.sh │ │ ├── RegistrationCode.cpp.gen │ │ ├── TypedNodeFactory.cpp │ │ ├── TypedNodeFactory.h │ │ ├── TypedNodeFactoryImpl.cpp │ │ ├── TypedNodeFactoryImpl.h │ │ ├── TypedNodeFactoryRegistry.cpp │ │ ├── TypedNodeFactoryRegistry.h │ │ ├── TypedNodeGen.sh │ │ ├── TypedNodeImplGen.sh │ │ ├── TypedNodeImplTemplate.cpp.gen │ │ ├── TypedNodeTemplate.cpp.gen │ │ ├── TypedVisitor.cpp │ │ ├── TypedVisitor.h │ │ ├── TypedVisitor.h.gen │ │ ├── TypedVisitorGen.sh │ │ └── generator.sh │ ├── AnalyzerBase │ │ ├── AnalyzerException.cpp │ │ ├── AnalyzerException.h │ │ ├── DepthFirstTraversal.cpp │ │ ├── DepthFirstTraversal.h │ │ ├── Edge.cpp │ │ ├── Edge.h │ │ ├── EdgeMap.cpp │ │ ├── EdgeMap.h │ │ ├── GNUmakefile │ │ ├── Node.cpp │ │ ├── Node.h │ │ ├── TestGraph.cpp │ │ ├── TestGraph.h │ │ ├── Visitor.cpp │ │ └── Visitor.h │ ├── BaseTestImpl │ │ ├── AcyclicAnalysis.cpp │ │ ├── AcyclicAnalysis.h │ │ ├── AcyclicVisitor.cpp │ │ ├── AcyclicVisitor.h │ │ ├── CompMobDependency.cpp │ │ ├── CompMobDependency.h │ │ ├── DumpPhase.cpp │ │ ├── DumpPhase.h │ │ ├── DumpVisitor.cpp │ │ ├── DumpVisitor.h │ │ ├── FileDumper.cpp │ │ ├── FileDumper.h │ │ ├── FileLoad.cpp │ │ ├── FileLoad.h │ │ ├── GNUmakefile │ │ ├── LoadPhase.cpp │ │ ├── LoadPhase.h │ │ ├── NodeRefCountVisitor.cpp │ │ ├── NodeRefCountVisitor.h │ │ ├── RefResolver.cpp │ │ ├── RefResolver.h │ │ ├── ResolveRefVisitor.cpp │ │ └── ResolveRefVisitor.h │ ├── Doc │ │ ├── AAFAnalyzerBaseFramework.pdf │ │ ├── AAFAnalyzerUML.MagicDraw12.5.mdzip │ │ ├── AnalyzerDocumentation.txt │ │ ├── EditProtocolTests_Assumptions_and_Issues.txt │ │ ├── INSTALL │ │ ├── ReadMe.txt │ │ ├── ToDo.txt │ │ ├── UpdateSept2007 │ │ │ ├── AnalyzerUpdateSept2007.ppt │ │ │ ├── ComplianceReportingUpdate2007.ppt │ │ │ └── dot │ │ │ │ ├── AAFContainWithRefEdges.dot │ │ │ │ ├── AAFContainment.dot │ │ │ │ ├── AAFContainment_OperationGroup.dot │ │ │ │ ├── DerivationChainAsImplemented.dot │ │ │ │ ├── DerivationChainStateLegend.doc │ │ │ │ └── ReferenceTraversal.dot │ │ ├── assumptions_and_issues_in_context.txt │ │ ├── requirements_to_implement.txt │ │ ├── template.cpp │ │ └── template.h │ ├── EPAnalyzerBase │ │ ├── EPCastException.cpp │ │ ├── EPCastException.h │ │ ├── EPDerivationChainObject.cpp │ │ ├── EPDerivationChainObject.h │ │ ├── EPEffect.cpp │ │ ├── EPEffect.h │ │ ├── EPObjects.cpp │ │ ├── EPObjects.h │ │ ├── EPTrack.cpp │ │ ├── EPTrack.h │ │ ├── EPTypedObjNode.cpp │ │ ├── EPTypedObjNode.h │ │ ├── EPTypedVisitor.cpp │ │ ├── EPTypedVisitor.h │ │ ├── EPTypedVisitor.h.gen │ │ ├── EPTypedVisitorGen.sh │ │ └── GNUmakefile │ ├── EditProtocolTestImpl │ │ ├── AllowedEditRateTable.cpp │ │ ├── AllowedEditRateTable.h │ │ ├── DecorateEPTest.cpp │ │ ├── DecorateEPTest.h │ │ ├── DerivationChainParser.cpp │ │ ├── DerivationChainParser.h │ │ ├── DerivationChainParserException.cpp │ │ ├── DerivationChainParserException.h │ │ ├── EPAnnotationTest.cpp │ │ ├── EPAnnotationTest.h │ │ ├── EPAnnotationVisitor.cpp │ │ ├── EPAnnotationVisitor.h │ │ ├── EPContainedTrackTest.cpp │ │ ├── EPContainedTrackTest.h │ │ ├── EPContainedTrackVisitor.cpp │ │ ├── EPContainedTrackVisitor.h │ │ ├── EPDefinitionTest.cpp │ │ ├── EPDefinitionTest.h │ │ ├── EPDefinitionVisitor.cpp │ │ ├── EPDefinitionVisitor.h │ │ ├── EPDerivationTest.cpp │ │ ├── EPDerivationTest.h │ │ ├── EPEditRateTest.cpp │ │ ├── EPEditRateTest.h │ │ ├── EPEditRateVisitor.cpp │ │ ├── EPEditRateVisitor.h │ │ ├── EPEffectTest.cpp │ │ ├── EPEffectTest.h │ │ ├── EPEffectVisitor.cpp │ │ ├── EPEffectVisitor.h │ │ ├── EPHeaderTest.cpp │ │ ├── EPHeaderTest.h │ │ ├── EPHeaderVisitor.cpp │ │ ├── EPHeaderVisitor.h │ │ ├── EPLocatorTest.cpp │ │ ├── EPLocatorTest.h │ │ ├── EPLocatorVisitor.cpp │ │ ├── EPLocatorVisitor.h │ │ ├── EPMobDepPhase.cpp │ │ ├── EPMobDepPhase.h │ │ ├── EPMultiChannelAudioTest.cpp │ │ ├── EPMultiChannelAudioTest.h │ │ ├── EPMultiChannelAudioVisitor.cpp │ │ ├── EPMultiChannelAudioVisitor.h │ │ ├── EPNameTest.cpp │ │ ├── EPNameTest.h │ │ ├── EPNameVisitor.cpp │ │ ├── EPNameVisitor.h │ │ ├── EPParameterTest.cpp │ │ ├── EPParameterTest.h │ │ ├── EPParameterVisitor.cpp │ │ ├── EPParameterVisitor.h │ │ ├── EPTrackContentsTest.cpp │ │ ├── EPTrackContentsTest.h │ │ ├── EPTrackContentsVisitor.cpp │ │ ├── EPTrackContentsVisitor.h │ │ └── GNUmakefile │ ├── GNUmakefile │ ├── RegressionTest │ │ ├── GNUmakefile │ │ ├── TestFiles │ │ │ ├── EPAcyclicTest.expected │ │ │ ├── EPAcyclicTest.xml │ │ │ ├── EPAnnotationTest.expected │ │ │ ├── EPAnnotationTest.xml │ │ │ ├── EPAnnotationTest2.expected │ │ │ ├── EPAnnotationTest2.xml │ │ │ ├── EPContainedTrackTest.expected │ │ │ ├── EPContainedTrackTest.xml │ │ │ ├── EPDefinitionTest.expected │ │ │ ├── EPDefinitionTest.xml │ │ │ ├── EPDefinitionTest2.expected │ │ │ ├── EPDefinitionTest2.xml │ │ │ ├── EPDerivationChain.dtd │ │ │ ├── EPDerivationTest1.expected │ │ │ ├── EPDerivationTest1.xml │ │ │ ├── EPDerivationTest2.expected │ │ │ ├── EPDerivationTest2.xml │ │ │ ├── EPDerivationTest3.expected │ │ │ ├── EPDerivationTest3.xml │ │ │ ├── EPDerivationTest4.expected │ │ │ ├── EPDerivationTest4.xml │ │ │ ├── EPEditRateTest.expected │ │ │ ├── EPEditRateTest.xml │ │ │ ├── EPEditRateTest2.expected │ │ │ ├── EPEditRateTest2.xml │ │ │ ├── EPEditRateTest3.expected │ │ │ ├── EPEditRateTest3.xml │ │ │ ├── EPEditRateTest4.expected │ │ │ ├── EPEditRateTest4.xml │ │ │ ├── EPEditRateTest5.expected │ │ │ ├── EPEditRateTest5.xml │ │ │ ├── EPEditRateTest6.expected │ │ │ ├── EPEditRateTest6.xml │ │ │ ├── EPEffectTest.expected │ │ │ ├── EPEffectTest.xml │ │ │ ├── EPHeaderTest1.expected │ │ │ ├── EPHeaderTest1.xml │ │ │ ├── EPHeaderTest2.expected │ │ │ ├── EPHeaderTest2.xml │ │ │ ├── EPHeaderTest3.expected │ │ │ ├── EPHeaderTest3.xml │ │ │ ├── EPMultiChannelAudioTest.expected │ │ │ ├── EPMultiChannelAudioTest.xml │ │ │ ├── EPNameTest.expected │ │ │ ├── EPNameTest.xml │ │ │ ├── EPParameterTest.expected │ │ │ ├── EPParameterTest.xml │ │ │ ├── EPTrackContentsTest.expected │ │ │ ├── EPTrackContentsTest.xml │ │ │ ├── GNUmakefile │ │ │ ├── GenDerivationTestXml.py │ │ │ ├── InputParser.cpp │ │ │ ├── InputParser.cpp.gen │ │ │ ├── InputParser.h │ │ │ ├── InputParserGen.sh │ │ │ ├── RunOneTest.sh │ │ │ ├── SlotInfo.h │ │ │ ├── TestFileBuilder.cpp │ │ │ ├── TestFileBuilder.h │ │ │ └── xmlformatall.sh │ │ └── TestStructure │ │ │ ├── AAFAnalyzerRegressionTest.expected │ │ │ ├── AAFAnalyzerTest.cpp │ │ │ ├── GNUmakefile │ │ │ ├── GraphBuilder-ResolveRefTest.xml │ │ │ ├── Test1Stub.cpp │ │ │ ├── Test1Stub.h │ │ │ ├── Test2Stub.cpp │ │ │ └── Test2Stub.h │ ├── RequirementLib │ │ ├── GNUmakefile │ │ ├── Requirement.cpp │ │ ├── Requirement.h │ │ ├── RequirementLoader.cpp │ │ ├── RequirementLoader.h │ │ ├── RequirementRegistry.cpp │ │ ├── RequirementRegistry.h │ │ ├── RequirementRegistryException.cpp │ │ ├── RequirementRegistryException.h │ │ ├── RequirementXMLException.cpp │ │ └── RequirementXMLException.h │ ├── Requirements │ │ ├── AAFRequirements.xml │ │ └── AAFRequirementsFormat.dtd │ ├── TestPhaseLib │ │ ├── DetailLevelTestResult.cpp │ │ ├── DetailLevelTestResult.h │ │ ├── GNUmakefile │ │ ├── HighLevelTestResult.cpp │ │ ├── HighLevelTestResult.h │ │ ├── LowLevelTestResult.cpp │ │ ├── LowLevelTestResult.h │ │ ├── RequirementMismatchException.cpp │ │ ├── RequirementMismatchException.h │ │ ├── Test.cpp │ │ ├── Test.h │ │ ├── TestInfo.cpp │ │ ├── TestInfo.h │ │ ├── TestInfoRegistrar.h │ │ ├── TestLevelTestResult.cpp │ │ ├── TestLevelTestResult.h │ │ ├── TestPhase.cpp │ │ ├── TestPhase.h │ │ ├── TestPhaseLevelTestResult.cpp │ │ ├── TestPhaseLevelTestResult.h │ │ ├── TestRegistry.cpp │ │ ├── TestRegistry.h │ │ ├── TestRegistryException.cpp │ │ ├── TestRegistryException.h │ │ ├── TestResult.cpp │ │ ├── TestResult.h │ │ ├── TopLevelTestResult.cpp │ │ └── TopLevelTestResult.h │ ├── aafanalyzer.mk │ └── python │ │ ├── analyzer.py │ │ ├── analyzerhtml.py │ │ ├── analyzerhtml_shortcut.py │ │ ├── parse.py │ │ ├── runanalyzer.py │ │ └── windist.py ├── AafOmf │ ├── AAFDomainExtensions.cpp │ ├── AAFDomainExtensions.h │ ├── AAFDomainUtils.cpp │ ├── AAFDomainUtils.h │ ├── AAFException.cpp │ ├── AAFException.h │ ├── Aaf2Omf.cpp │ ├── Aaf2Omf.h │ ├── AafOmf.cpp │ ├── AafOmf.h │ ├── AafOmfMain.cpp │ ├── Assertion.cpp │ ├── Assertion.h │ ├── AutoRelease.h │ ├── EffectTranslate.cpp │ ├── EffectTranslate.h │ ├── ExceptionBase.cpp │ ├── ExceptionBase.h │ ├── Extensions.cpp │ ├── Extensions.h │ ├── GNUmakefile │ ├── LoggerBase.cpp │ ├── LoggerBase.h │ ├── OMFDomainExtensionUtils.cpp │ ├── OMFDomainExtensionUtils.h │ ├── OMFDomainUtils.cpp │ ├── OMFDomainUtils.h │ ├── OMFException.cpp │ ├── OMFException.h │ ├── Omf2Aaf.cpp │ ├── Omf2Aaf.h │ ├── StreamLogger.cpp │ └── StreamLogger.h ├── GNUmakefile ├── Include │ └── CAAFBuiltinDefs.h ├── aaf2xtl │ ├── aaf2xtl │ │ └── aaf2xtl.cpp │ ├── aif2xtllib │ │ ├── Aif2XtlEssencePreprocessVisitor.cpp │ │ ├── Aif2XtlEssencePreprocessVisitor.h │ │ ├── Aif2XtlGroupVisitor.cpp │ │ ├── Aif2XtlGroupVisitor.h │ │ ├── Aif2XtlInit.cpp │ │ ├── Aif2XtlInit.h │ │ ├── Aif2XtlMobSelectVisitor.cpp │ │ ├── Aif2XtlMobSelectVisitor.h │ │ ├── Aif2XtlObjectRemoveVisitor.cpp │ │ ├── Aif2XtlObjectRemoveVisitor.h │ │ ├── Aif2XtlParseTreeNodeDecoration.cpp │ │ ├── Aif2XtlParseTreeNodeDecoration.h │ │ ├── Aif2XtlParseTreeNodeFactory.cpp │ │ ├── Aif2XtlParseTreeNodeFactory.h │ │ ├── Aif2XtlParseTreeNodes.cpp │ │ ├── Aif2XtlParseTreeNodes.h │ │ ├── Aif2XtlParseTreeVisitor.cpp │ │ ├── Aif2XtlParseTreeVisitor.h │ │ ├── Aif2XtlSeqEditVisitor.cpp │ │ ├── Aif2XtlSeqEditVisitor.h │ │ ├── Aif2XtlSeqOffsetVisitor.cpp │ │ ├── Aif2XtlSeqOffsetVisitor.h │ │ ├── Aif2XtlSourceClipVisitor.cpp │ │ ├── Aif2XtlSourceClipVisitor.h │ │ ├── Aif2XtlTimecode.cpp │ │ ├── Aif2XtlTimecode.h │ │ ├── Aif2XtlTransitionVisitor.cpp │ │ ├── Aif2XtlTransitionVisitor.h │ │ ├── Aif2XtlXmlGen.cpp │ │ ├── Aif2XtlXmlGen.h │ │ ├── Aif2XtlXmlGenVisitor.cpp │ │ └── Aif2XtlXmlGenVisitor.h │ ├── aiflib │ │ ├── AifParseTree.cpp │ │ ├── AifParseTree.h │ │ ├── AifParseTreeBuilder.cpp │ │ ├── AifParseTreeBuilder.h │ │ ├── AifParseTreeNode.cpp │ │ ├── AifParseTreeNode.h │ │ ├── AifParseTreeNodeFactory.cpp │ │ ├── AifParseTreeNodeFactory.h │ │ ├── AifParseTreeVisitor.cpp │ │ ├── AifParseTreeVisitor.h │ │ └── AifVersions.h │ ├── aifsantefelib │ │ ├── AifSanteFeLoad.cpp │ │ └── AifSanteFeLoad.h │ └── doc │ │ ├── Aaf2XtlSoftwareDescription.doc │ │ ├── Aaf2XtlSoftwareDescription.pdf │ │ ├── AifTree-MasterMob.vsd │ │ ├── AifTree.vsd │ │ ├── HowTo.txt │ │ ├── XTL-Containment.vsd │ │ └── aaf2xtl.vsd ├── aafdump │ ├── GNUmakefile │ ├── GSFStructuredStorage.cpp │ ├── GSFStructuredStorage.h │ ├── MStructuredStorage.cpp │ ├── MStructuredStorage.h │ ├── StructuredStorage.cpp │ ├── StructuredStorage.h │ └── aafdump.cpp ├── aafembed │ ├── GNUmakefile │ ├── aafembed.cpp │ ├── avilib.c │ └── avilib.h ├── aafextract │ ├── GNUmakefile │ └── aafextract.cpp ├── aaffmtconv │ ├── GNUmakefile │ └── aaffmtconv.cpp ├── aafviewer │ ├── COPYING │ ├── README │ ├── lib │ │ ├── aafviewer.jar │ │ ├── xercesImpl.jar │ │ ├── xmlParserAPIs.jar │ │ └── zvtm.jar │ ├── linux │ │ └── aafviewer │ ├── sample-aafviewer.cfg │ ├── src │ │ ├── aaf2dot │ │ │ ├── AAFDotInstanceMapper.cpp │ │ │ ├── AAFDotInstanceMapper.h │ │ │ ├── AxBaseObjIterExt.cpp │ │ │ ├── AxBaseObjIterExt.h │ │ │ ├── DotEdge.cpp │ │ │ ├── DotEdge.h │ │ │ ├── DotElement.cpp │ │ │ ├── DotElement.h │ │ │ ├── DotFactory.cpp │ │ │ ├── DotFactory.h │ │ │ ├── DotGraph.cpp │ │ │ ├── DotGraph.h │ │ │ ├── DotRecordNode.cpp │ │ │ ├── DotRecordNode.h │ │ │ ├── DotSubGraph.cpp │ │ │ ├── DotSubGraph.h │ │ │ ├── DotThingWithID.cpp │ │ │ ├── DotThingWithID.h │ │ │ ├── GNUmakefile │ │ │ ├── InstanceMapperProfile.cpp │ │ │ ├── InstanceMapperProfile.h │ │ │ ├── Logging.cpp │ │ │ ├── Logging.h │ │ │ ├── MapperSettings.cpp │ │ │ ├── MapperSettings.h │ │ │ ├── Utilities.cpp │ │ │ ├── Utilities.h │ │ │ └── aaf2dot.cpp │ │ ├── aafmeta2dot │ │ │ ├── AAFClassDefinition.cpp │ │ │ ├── AAFClassDefinition.h │ │ │ ├── AAFDefinitionHome.cpp │ │ │ ├── AAFDefinitionHome.h │ │ │ ├── AAFDotHome.cpp │ │ │ ├── AAFDotHome.h │ │ │ ├── AAFMetaDefinition.cpp │ │ │ ├── AAFMetaDefinition.h │ │ │ ├── AAFMetaMapProfile.cpp │ │ │ ├── AAFMetaMapProfile.h │ │ │ ├── AAFPropertyDefinition.cpp │ │ │ ├── AAFPropertyDefinition.h │ │ │ ├── AAFTypeDefinition.cpp │ │ │ ├── AAFTypeDefinition.h │ │ │ ├── AAFXsMapper.cpp │ │ │ ├── AAFXsMapper.h │ │ │ ├── DotEdge.cpp │ │ │ ├── DotEdge.h │ │ │ ├── DotElement.cpp │ │ │ ├── DotElement.h │ │ │ ├── DotFactory.cpp │ │ │ ├── DotFactory.h │ │ │ ├── DotGraph.cpp │ │ │ ├── DotGraph.h │ │ │ ├── DotLogging.cpp │ │ │ ├── DotLogging.h │ │ │ ├── DotProfile.cpp │ │ │ ├── DotProfile.h │ │ │ ├── DotRecordNode.cpp │ │ │ ├── DotRecordNode.h │ │ │ ├── DotSubGraph.cpp │ │ │ ├── DotSubGraph.h │ │ │ ├── DotThingWithID.cpp │ │ │ ├── DotThingWithID.h │ │ │ ├── DotUtilities.cpp │ │ │ ├── DotUtilities.h │ │ │ ├── GNUmakefile │ │ │ ├── Logging.cpp │ │ │ ├── Logging.h │ │ │ ├── Utilities.cpp │ │ │ ├── Utilities.h │ │ │ └── aafmeta2dot.cpp │ │ └── aafviewer │ │ │ ├── Makefile │ │ │ ├── lib │ │ │ ├── xercesImpl.jar │ │ │ ├── xmlParserAPIs.jar │ │ │ └── zvtm.jar │ │ │ └── src │ │ │ ├── bbc │ │ │ └── rd │ │ │ │ └── aaf │ │ │ │ └── aafviewer │ │ │ │ ├── AAFManager.java │ │ │ │ ├── AAFViewer.java │ │ │ │ ├── AAFViewerEvtHdlr.java │ │ │ │ ├── ConfigManager.java │ │ │ │ ├── DOTManager.java │ │ │ │ ├── Messages.java │ │ │ │ ├── PrefWindow.java │ │ │ │ ├── PrintUtilities.java │ │ │ │ ├── ProgPanel.java │ │ │ │ ├── StreamGobbler.java │ │ │ │ ├── TextViewer.java │ │ │ │ └── Utils.java │ │ │ └── com │ │ │ └── xerox │ │ │ └── VTM │ │ │ └── svg │ │ │ ├── SVGReaderExt.java │ │ │ └── SVGReaderExtListener.java │ ├── windows │ │ └── aafviewer.bat │ ├── xerces.license │ └── zvtm.license ├── comrules.mk └── eli2aaf │ ├── COPYING │ ├── GNUmakefile │ ├── README │ └── eli2aaf.cpp ├── bin ├── CONTENTS.D └── HTML.FMT ├── dist ├── CreateDistribution.bash ├── GNUmakefile ├── release-files.darwin ├── release-files.unix ├── release-files.win ├── sdk-files.darwin ├── sdk-files.unix └── sdk-files.win ├── doc ├── AAFProjectFAQ.html ├── aafcontainerspec-v1.0.1.pdf ├── aafeditprotocol.pdf ├── aafobjectspec-v1.0.1.pdf ├── aafobjectspec-v1.1.pdf └── aafstoredformatspec-v1.0.1.pdf ├── dodo ├── AAFAES3PCMDescriptor.dod ├── AAFAES3PCMDescriptor2.dod ├── AAFAIFCDescriptor.dod ├── AAFAuxiliaryDescriptor.dod ├── AAFBWFImportDescriptor.dod ├── AAFCDCIDescriptor.dod ├── AAFCDCIDescriptor2.dod ├── AAFCachePageAllocator.dod ├── AAFClassDef.dod ├── AAFClassExtension.dod ├── AAFCodecDef.dod ├── AAFCommentMarker.dod ├── AAFComponent.dod ├── AAFComponent2.dod ├── AAFCompositionMob.dod ├── AAFCompositionMob2.dod ├── AAFConstantValue.dod ├── AAFContainerDef.dod ├── AAFContentStorage.dod ├── AAFContext.dod ├── AAFControlPoint.dod ├── AAFDataDef.dod ├── AAFDataDef2.dod ├── AAFDataDef3.dod ├── AAFDataEssenceDescriptor.dod ├── AAFDefObject.dod ├── AAFDescriptiveClip.dod ├── AAFDescriptiveFramework.dod ├── AAFDescriptiveMarker.dod ├── AAFDescriptiveObject.dod ├── AAFDiagnosticOutput.dod ├── AAFDictionary.dod ├── AAFDictionary2.dod ├── AAFDigitalImageDescriptor.dod ├── AAFDigitalImageDescriptor2.dod ├── AAFEdgecode.dod ├── AAFEndian.dod ├── AAFEssenceAccess.dod ├── AAFEssenceCodec.dod ├── AAFEssenceCodec2.dod ├── AAFEssenceCodec3.dod ├── AAFEssenceContainer.dod ├── AAFEssenceData.dod ├── AAFEssenceData2.dod ├── AAFEssenceDataEx.dod ├── AAFEssenceDataStream.dod ├── AAFEssenceDataStream2.dod ├── AAFEssenceDescriptor.dod ├── AAFEssenceFormat.dod ├── AAFEssenceGroup.dod ├── AAFEssenceMultiAccess.dod ├── AAFEssencePlugin.dod ├── AAFEssenceStream.dod ├── AAFEvent.dod ├── AAFEventMobSlot.dod ├── AAFEventMobSlot2.dod ├── AAFFile.dod ├── AAFFileDescriptor.dod ├── AAFFileDescriptor2.dod ├── AAFFileEncoding.dod ├── AAFFiller.dod ├── AAFFilmDescriptor.dod ├── AAFFindSourceInfo.dod ├── AAFGPITrigger.dod ├── AAFGetFileBits.dod ├── AAFHTMLClip.dod ├── AAFHTMLDescriptor.dod ├── AAFHeader.dod ├── AAFHeader2.dod ├── AAFIdentification.dod ├── AAFImportDescriptor.dod ├── AAFInterpolationDef.dod ├── AAFInterpolator.dod ├── AAFKLVData.dod ├── AAFKLVDataDefinition.dod ├── AAFKLVEssenceDataParameters.dod ├── AAFKLVStreamParameters.dod ├── AAFLocator.dod ├── AAFMPEGVideoDescriptor.dod ├── AAFMasterMob.dod ├── AAFMasterMob2.dod ├── AAFMasterMob3.dod ├── AAFMasterMobEx.dod ├── AAFMetaDefinition.dod ├── AAFMetaDictionary.dod ├── AAFMob.dod ├── AAFMob2.dod ├── AAFMobSlot.dod ├── AAFModule.dod ├── AAFMultiEssenceCodec.dod ├── AAFMultipleDescriptor.dod ├── AAFNestedScope.dod ├── AAFNetworkLocator.dod ├── AAFObject.dod ├── AAFOperationDef.dod ├── AAFOperationGroup.dod ├── AAFPCMDescriptor.dod ├── AAFParameter.dod ├── AAFParameterDef.dod ├── AAFPhysicalDescriptor.dod ├── AAFPlainEssenceData.dod ├── AAFPlainStreamData.dod ├── AAFPlugin.dod ├── AAFPluginDef.dod ├── AAFPluginManager.dod ├── AAFPluginTypes.dod ├── AAFProgress.dod ├── AAFPropValData.dod ├── AAFProperty.dod ├── AAFPropertyDef.dod ├── AAFPropertyValue.dod ├── AAFPulldown.dod ├── AAFRGBADescriptor.dod ├── AAFRGBADescriptor2.dod ├── AAFRIFFChunk.dod ├── AAFRandomFile.dod ├── AAFRandomRawStorage.dod ├── AAFRawStorage.dod ├── AAFRecordingDescriptor.dod ├── AAFRoot.dod ├── AAFScopeReference.dod ├── AAFSearchSource.dod ├── AAFSegment.dod ├── AAFSelector.dod ├── AAFSequence.dod ├── AAFSetFileBits.dod ├── AAFSoundDescriptor.dod ├── AAFSourceClip.dod ├── AAFSourceMob.dod ├── AAFSourceReference.dod ├── AAFSourceReference2.dod ├── AAFStaticMobSlot.dod ├── AAFStreamAccess.dod ├── AAFStreamPropertyValue.dod ├── AAFStrongRefArrayValue.dod ├── AAFStrongRefSetValue.dod ├── AAFStrongRefValue.dod ├── AAFTIFFDescriptor.dod ├── AAFTaggedValue.dod ├── AAFTaggedValueDefinition.dod ├── AAFTapeDescriptor.dod ├── AAFTextClip.dod ├── AAFTextLocator.dod ├── AAFTimecode.dod ├── AAFTimecodeStream.dod ├── AAFTimecodeStream12M.dod ├── AAFTimelineMobSlot.dod ├── AAFTimelineMobSlot2.dod ├── AAFTransition.dod ├── AAFTypeDef.dod ├── AAFTypeDefCharacter.dod ├── AAFTypeDefEnum.dod ├── AAFTypeDefExtEnum.dod ├── AAFTypeDefFixedArray.dod ├── AAFTypeDefIndirect.dod ├── AAFTypeDefInt.dod ├── AAFTypeDefObjectRef.dod ├── AAFTypeDefOpaque.dod ├── AAFTypeDefRecord.dod ├── AAFTypeDefRename.dod ├── AAFTypeDefSet.dod ├── AAFTypeDefStream.dod ├── AAFTypeDefStream3.dod ├── AAFTypeDefStreamEx.dod ├── AAFTypeDefString.dod ├── AAFTypeDefStrongObjRef.dod ├── AAFTypeDefVariableArray.dod ├── AAFTypeDefVariableArrayEx.dod ├── AAFTypeDefWeakObjRef.dod ├── AAFTypes.dod ├── AAFVaryingValue.dod ├── AAFWAVEDescriptor.dod ├── AAFWeakRefArrayValue.dod ├── AAFWeakRefSetValue.dod ├── AAFWeakRefValue.dod ├── CopyrightMessage.txt ├── DelTargets.sh ├── EnumAAFClassDefs.dod ├── EnumAAFCodecDefs.dod ├── EnumAAFCodecFlavours.dod ├── EnumAAFComponents.dod ├── EnumAAFContainerDefs.dod ├── EnumAAFControlPoints.dod ├── EnumAAFDataDefs.dod ├── EnumAAFEssenceData.dod ├── EnumAAFFileDescriptors.dod ├── EnumAAFFileEncodings.dod ├── EnumAAFIdentifications.dod ├── EnumAAFInterpolationDefs.dod ├── EnumAAFKLVData.dod ├── EnumAAFKLVDataDefs.dod ├── EnumAAFLoadedPlugins.dod ├── EnumAAFLocators.dod ├── EnumAAFMobSlots.dod ├── EnumAAFMobs.dod ├── EnumAAFOperationDefs.dod ├── EnumAAFParameterDefs.dod ├── EnumAAFParameters.dod ├── EnumAAFPluginDefs.dod ├── EnumAAFPluginLocators.dod ├── EnumAAFProperties.dod ├── EnumAAFPropertyDefs.dod ├── EnumAAFPropertyValues.dod ├── EnumAAFRIFFChunks.dod ├── EnumAAFSegments.dod ├── EnumAAFStorablePropVals.dod ├── EnumAAFTaggedValueDefs.dod ├── EnumAAFTaggedValues.dod ├── EnumAAFTypeDefs.dod ├── GNUmakefile ├── GenAafIdl.sh ├── GenAafPrivateIdl.sh ├── GenAafPrivate_i.sh ├── GenAafPrivateh.sh ├── GenAaf_i.sh ├── GenAafh.sh ├── GenCLSIDs.sh ├── GenClassIDs.sh ├── GenDepend.sh ├── GenDepend2.sh ├── GenEnumValidation.pl ├── GenObjectInterfaces.pl ├── GenObjectTable.sh ├── GenObjectTable_i.sh ├── GenPluginIdl.sh ├── GenPlugin_i.sh ├── GenPluginh.sh ├── GenTargets.sh ├── aafobjects.mk ├── dod2iid.awk ├── dod2iid.pl ├── dododepend.mak ├── dodotargets.mak ├── enchiridion.txt ├── macros │ ├── base.mac │ ├── comc.mac │ ├── comcx.mac │ ├── comh.mac │ ├── comt.mac │ ├── cpp.mac │ ├── cppt.mac │ ├── dod2iid.mac │ ├── exp.mac │ ├── fidl.mac │ ├── frefh.mac │ ├── h.mac │ ├── idl.mac │ ├── implc.mac │ ├── implh.mac │ └── refh.mac ├── makefile ├── maketargets.mak ├── maketargets_gnu.mak ├── sync_copyright.pl └── tool │ ├── ArgDef.cpp │ ├── ArgDef.h │ ├── ArgDefTest.cpp │ ├── ArgSet.cpp │ ├── ArgSet.h │ ├── ArgSetTest.cpp │ ├── DodoMain.cpp │ ├── GNUmakefile │ ├── MacroDef.cpp │ ├── MacroDef.h │ ├── MacroDefTest.cpp │ ├── MacroSet.cpp │ ├── MacroSet.h │ ├── MacroSetTest.cpp │ ├── SourceInfo.cpp │ ├── SourceInfo.h │ ├── SourceInfoTest.cpp │ ├── TestMain.cpp │ ├── TextLine.cpp │ ├── TextLine.h │ ├── TextLineTest.cpp │ ├── TextStream.cpp │ ├── TextStream.h │ ├── TextStreamTest.cpp │ ├── Vect.h │ ├── fix_compiler_warnings.pl │ └── makefile ├── examples ├── GNUmakefile └── com-api │ ├── ComCutsOnlyTest │ ├── CutsOnlyExample.cpp │ └── GNUmakefile │ ├── ComEssenceDataTest │ ├── ComEssenceDataTest.cpp │ └── GNUmakefile │ ├── ComExtension │ ├── ComPersonnelExtension │ │ ├── AAFPersonnelExtension.cpp │ │ ├── AAFPersonnelExtension.def │ │ ├── AAFPersonnelExtension.h │ │ ├── AAFPersonnelExtension_i.c │ │ ├── CAAFAdminMob.cpp │ │ ├── CAAFAdminMob.h │ │ ├── CAAFPersonnelResource.cpp │ │ ├── CAAFPersonnelResource.h │ │ ├── GNUmakefile │ │ ├── extensionReadPlugin.cpp │ │ ├── extensionReadPlugin.h │ │ ├── extensionWritePlugin.cpp │ │ ├── extensionWritePlugin.h │ │ └── writePlugin.cpp │ ├── GNUmakefile │ ├── extensionRead.cpp │ ├── extensionRead.h │ ├── extensionUtils.cpp │ ├── extensionUtils.h │ ├── extensionWrite.cpp │ ├── extensionWrite.h │ ├── read.cpp │ └── write.cpp │ ├── ComPropDirectAccess │ ├── GNUmakefile │ └── propaccess.cpp │ ├── ComPropDirectDump │ ├── GNUmakefile │ └── dumper.cpp │ ├── ExportAS05Effects │ ├── ExportAS05Effects.cpp │ └── GNUmakefile │ ├── ExportAudioExample │ ├── ExportAudioExample.cpp │ ├── ExportAudioExample_NoCodecDef.aaf │ └── GNUmakefile │ ├── ExportDV │ ├── ExportDV.cpp │ ├── ExportDV_NoCodecDef.aaf │ └── GNUmakefile │ ├── ExportJPEG │ ├── ExportJPEG.cpp │ ├── ExportJPEG_NoCodecDef.aaf │ └── GNUmakefile │ ├── ExportPCM │ ├── ExportPCM.cpp │ ├── ExportPCM_NoCodecDef.aaf │ └── GNUmakefile │ ├── ExportSimpleComposition │ ├── ExportSimpleComposition.cpp │ └── GNUmakefile │ ├── ExportVC3 │ ├── ExportVC3.cpp │ ├── GNUmakefile │ ├── bgrai.1080p.1235.dnx │ ├── framebuffer.cpp │ └── framebuffer.h │ ├── GNUmakefile │ ├── ImportAudioExample │ ├── GNUmakefile │ └── ImportAudioExample.cpp │ ├── ImportDV │ ├── GNUmakefile │ └── ImportDV.cpp │ ├── ImportJPEG │ ├── GNUmakefile │ └── ImportJPEG.cpp │ ├── ImportPCM │ ├── GNUmakefile │ └── ImportPCM.cpp │ ├── ImportVC3 │ ├── GNUmakefile │ └── ImportVC3.cpp │ ├── InfoDumper │ ├── GNUmakefile │ └── InfoDumper.cpp │ ├── MetadataExample │ ├── GNUmakefile │ └── MetadataExample.cpp │ ├── comClientTest │ ├── AAFInfo.cpp │ ├── ComClientTestAAF.cpp │ └── GNUmakefile │ └── comexamplerules.mk ├── examples2 ├── GNUmakefile ├── axDump │ ├── GNUmakefile │ ├── axDump.cpp │ └── axDump.vcproj ├── axExample │ ├── GNUmakefile │ ├── axCompCreate.cpp │ ├── axEssenceCreate.cpp │ ├── axExample.cpp │ ├── axExample.h │ ├── axExample.vcproj │ └── axMetaCreate.cpp ├── axFileGen │ ├── FileGenOps │ │ ├── Alias.cpp │ │ ├── AudioEssenceSource.cpp │ │ ├── CommentMarker.cpp │ │ ├── CompositionMob.cpp │ │ ├── DataDef.cpp │ │ ├── EssenceDescriptor.cpp │ │ ├── EssenceWrite.cpp │ │ ├── Example.cpp │ │ ├── File.cpp │ │ ├── Filler.cpp │ │ ├── FormatSpecifiers.cpp │ │ ├── GNUmakefile │ │ ├── InstanceDump.cpp │ │ ├── Locator.cpp │ │ ├── MasterMob.cpp │ │ ├── Mob.cpp │ │ ├── MobSlots.cpp │ │ ├── OpDef.cpp │ │ ├── OperationGroup.cpp │ │ ├── ParamMaps.cpp │ │ ├── ParamMaps.h │ │ ├── Plugin.cpp │ │ ├── Properties.cpp │ │ ├── Rate.cpp │ │ ├── Rate.h │ │ ├── SampleSource.cpp │ │ ├── SampleSource.h │ │ ├── Sequence.cpp │ │ ├── SourceClip.cpp │ │ ├── SourceMob.cpp │ │ ├── TapeDescriptor.cpp │ │ ├── Template.cpp │ │ ├── Timecode.cpp │ │ ├── Transition.cpp │ │ ├── VideoEssenceSource.cpp │ │ ├── WaveHeader.cpp │ │ └── WaveHeader.h │ ├── GNUmakefile │ ├── axFileGen.cpp │ ├── axFileGen.h │ └── axFileGen.vcproj ├── axHrMap │ ├── GNUmakefile │ ├── axHrMap.cpp │ └── axHrMap.vcproj ├── axLib │ ├── AxBaseObj.cpp │ ├── AxBaseObj.h │ ├── AxBaseObjIter.cpp │ ├── AxBaseObjIter.h │ ├── AxComponent.cpp │ ├── AxComponent.h │ ├── AxContentStorage.cpp │ ├── AxContentStorage.h │ ├── AxDefObject.cpp │ ├── AxDefObject.h │ ├── AxDescriptiveFramework.cpp │ ├── AxDescriptiveFramework.h │ ├── AxDictionary.cpp │ ├── AxDictionary.h │ ├── AxEssence.cpp │ ├── AxEssence.h │ ├── AxEx.cpp │ ├── AxEx.h │ ├── AxFile.cpp │ ├── AxFile.h │ ├── AxHeader.cpp │ ├── AxHeader.h │ ├── AxHrMap.cpp │ ├── AxHrMap.h │ ├── AxInit.cpp │ ├── AxInit.h │ ├── AxIterator.cpp │ ├── AxIterator.h │ ├── AxKLVData.cpp │ ├── AxKLVData.h │ ├── AxMetaDef.cpp │ ├── AxMetaDef.h │ ├── AxMob.cpp │ ├── AxMob.h │ ├── AxMobSlot.cpp │ ├── AxMobSlot.h │ ├── AxObject.cpp │ ├── AxObject.h │ ├── AxParameter.cpp │ ├── AxParameter.h │ ├── AxPluginMgr.cpp │ ├── AxPluginMgr.h │ ├── AxProperty.cpp │ ├── AxProperty.h │ ├── AxPropertyValue.cpp │ ├── AxPropertyValue.h │ ├── AxPropertyValueDump.cpp │ ├── AxPropertyValueDump.h │ ├── AxSmartPointer.cpp │ ├── AxSmartPointer.h │ ├── AxStorageErrors.h │ ├── AxTaggedValue.cpp │ ├── AxTaggedValue.h │ ├── AxTypes.cpp │ ├── AxTypes.h │ ├── AxUtil.cpp │ ├── AxUtil.h │ ├── GNUmakefile │ └── axLib.vcproj ├── axMasterMobEx │ ├── GNUmakefile │ ├── axMasterMobEx.cpp │ └── axMasterMobEx.vcproj ├── axPlugin │ ├── AxImplNullEssenceCodec.cpp │ ├── AxImplNullEssenceCodec.h │ ├── AxImplPlugin.cpp │ ├── AxImplPlugin.h │ ├── AxPlugin.cpp │ ├── AxPlugin.h │ ├── AxPlugin.pdf │ ├── AxPluginEntryPoints.cpp │ ├── AxPluginFctry.cpp │ ├── AxPluginFctry.h │ ├── AxPluginFctryPrtcl.cpp │ ├── AxPluginFctryPrtcl.h │ ├── AxPluginFormatSpecifiers.cpp │ ├── AxPluginFormatSpecifiers.h │ ├── AxPluginIIDs.cpp │ ├── AxPluginMac.exp │ ├── AxPluginRegistry.cpp │ ├── AxPluginRegistry.h │ ├── AxPluginUnix.cpp │ ├── AxPluginUtil.cpp │ ├── AxPluginUtil.h │ ├── AxPluginWin.cpp │ ├── AxPluginWin.def │ ├── CAxClassFactory.cpp │ ├── CAxClassFactory.h │ ├── CAxEssenceCodec.cpp │ ├── CAxEssenceCodec.h │ ├── CAxNullEssenceCodec.cpp │ ├── CAxNullEssenceCodec.h │ ├── CAxPlugin.cpp │ ├── CAxPlugin.h │ ├── CAxUnknown.cpp │ ├── CAxUnknown.h │ ├── GNUmakefile │ ├── ReadMe │ └── axPlugin.vcproj ├── axPluginInfo │ ├── GNUmakefile │ ├── axPluginInfo.cpp │ └── axPluginInfo.vcproj └── axexamplerules.mk ├── meta ├── AAFMetaDict.xls ├── headergen │ ├── GNUmakefile │ ├── classDefUid.cpp │ ├── extEnumUid.cpp │ ├── genDefInstBuiltins.cpp │ ├── genDefInstances.cpp │ ├── headerGenTypes.h │ ├── headerGenUtils.cpp │ ├── headerGenUtils.h │ ├── install-builtins.bash │ ├── install-headers.bash │ ├── propertyDefUid.cpp │ ├── propertyId.cpp │ ├── result.cpp │ ├── storedObjectUid.cpp │ └── typeDefUid.cpp ├── makefile └── mkdict.awk ├── ref-impl ├── GNUmakefile ├── aafiid │ ├── GNUmakefile │ └── aafiid.cpp ├── aaflib │ ├── GNUmakefile │ ├── aaflib.cpp │ ├── aaflib.h │ ├── aaflibsgi.cpp │ ├── aaflibwin32.cpp │ └── aafrdli.h ├── bld_cfg │ ├── Darwin.mk │ ├── FreeBSD.mk │ ├── IRIX.mk │ ├── IRIX64.mk │ ├── Linux.mk │ ├── PPCDarwin.mk │ ├── Windows_98.mk │ ├── Windows_NT.mk │ ├── bld_cfg.h │ ├── common.mk │ └── depend.mk ├── doc │ ├── OM │ │ ├── Design │ │ │ ├── ObjectManagerDesign.doc │ │ │ └── StoredFormat.doc │ │ ├── contents.d │ │ ├── html.fmt │ │ └── makedocs.ksh │ └── com-api │ │ ├── DigImgAreas.bmp │ │ ├── DigImgAreas.gif │ │ ├── Makefile │ │ ├── README.txt │ │ ├── aafDSlogo.gif │ │ ├── doxygen.cfg │ │ ├── footer.html │ │ ├── frontCover.html │ │ ├── header.html │ │ └── styles.css ├── dtd │ └── OM │ │ └── ObjectManager.dtd ├── expat │ ├── COPYING │ ├── GNUmakefile │ ├── ascii.h │ ├── asciitab.h │ ├── expat.h │ ├── expat_config.h │ ├── expat_external.h │ ├── iasciitab.h │ ├── internal.h │ ├── latin1tab.h │ ├── nametab.h │ ├── utf8tab.h │ ├── xmlparse.c │ ├── xmlrole.c │ ├── xmlrole.h │ ├── xmltok.c │ ├── xmltok.h │ ├── xmltok_impl.c │ ├── xmltok_impl.h │ └── xmltok_ns.c ├── include │ ├── AAFCOMPlatform.h │ ├── AAFCOMPlatformTypes.h │ ├── AAFClassDefUIDs.h │ ├── AAFCodecDefs.h │ ├── AAFCompressionDefs.h │ ├── AAFContainerDefs.h │ ├── AAFDataDefs.h │ ├── AAFDefUIDs.h │ ├── AAFEssenceFormats.h │ ├── AAFExtEnum.h │ ├── AAFFileKinds.h │ ├── AAFFileMode.h │ ├── AAFInterpolatorDefs.h │ ├── AAFKLVDataDefs.h │ ├── AAFMetaDictionary.h │ ├── AAFMetaResult.h │ ├── AAFOPDefs.h │ ├── AAFOperationCategories.h │ ├── AAFOperationDefs.h │ ├── AAFParameterDefs.h │ ├── AAFPlatform.h │ ├── AAFPluginDefs.h │ ├── AAFPropertyDefs.h │ ├── AAFPropertyIDs.h │ ├── AAFResult.h │ ├── AAFSDKBuild.h │ ├── AAFSmartPointer.h │ ├── AAFSmartPointer2.h │ ├── AAFSmartPointerBase.h │ ├── AAFStoredObjectIDs.h │ ├── AAFTaggedValueDefs.h │ ├── AAFTypeDefUIDs.h │ ├── OM │ │ ├── OMAVLTree.h │ │ ├── OMArrayProperty.h │ │ ├── OMArrayPropertyIterator.h │ │ ├── OMArrayType.h │ │ ├── OMBufferedIStream.h │ │ ├── OMBufferedStream.h │ │ ├── OMCachePageAllocator.h │ │ ├── OMCachedDiskRawStorage.h │ │ ├── OMCachedRawStorage.h │ │ ├── OMCharacterStringProperty.h │ │ ├── OMCharacterType.h │ │ ├── OMClassDefinition.h │ │ ├── OMContainer.h │ │ ├── OMContainerElement.h │ │ ├── OMContainerIterator.h │ │ ├── OMContainerProperty.h │ │ ├── OMDataContainer.h │ │ ├── OMDataContainerIterator.h │ │ ├── OMDataSet.h │ │ ├── OMDataStream.h │ │ ├── OMDataStreamAccess.h │ │ ├── OMDataStreamProperty.h │ │ ├── OMDataStreamPropertyFilter.h │ │ ├── OMDataTypes.h │ │ ├── OMDataVector.h │ │ ├── OMDefinition.h │ │ ├── OMDictionary.h │ │ ├── OMDiskRawStorage.h │ │ ├── OMDynamicLibrary.h │ │ ├── OMEnumeratedType.h │ │ ├── OMExceptions.h │ │ ├── OMExtendibleEnumeratedType.h │ │ ├── OMFixedSizeProperty.h │ │ ├── OMGSF_SSStoredObjectFactory.h │ │ ├── OMIOStream.h │ │ ├── OMIdentitySet.h │ │ ├── OMIdentitySetIter.h │ │ ├── OMIndirectType.h │ │ ├── OMIntegerType.h │ │ ├── OMKLVStoredObject.h │ │ ├── OMKLVStoredObjectFactory.h │ │ ├── OMKLVStoredStream.h │ │ ├── OMKLVStoredStreamFilter.h │ │ ├── OMList.h │ │ ├── OMListIterator.h │ │ ├── OMMS_SSStoredObjectFactory.h │ │ ├── OMMXFStorage.h │ │ ├── OMMappedFileRawStorage.h │ │ ├── OMMemoryRawStorage.h │ │ ├── OMOStream.h │ │ ├── OMObject.h │ │ ├── OMObjectManager.h │ │ ├── OMObjectReference.h │ │ ├── OMObjectReferenceType.h │ │ ├── OMObjectSet.h │ │ ├── OMObjectVector.h │ │ ├── OMOpaqueType.h │ │ ├── OMPageCache.h │ │ ├── OMProperty.h │ │ ├── OMPropertyDefinition.h │ │ ├── OMPropertySet.h │ │ ├── OMPropertySetIterator.h │ │ ├── OMPropertyTable.h │ │ ├── OMRawStorage.h │ │ ├── OMRawStorageLockBytes.h │ │ ├── OMRecordType.h │ │ ├── OMRedBlackTree.h │ │ ├── OMRedBlackTreeIterator.h │ │ ├── OMRefProperty.h │ │ ├── OMRefSetProperty.h │ │ ├── OMRefVectorProperty.h │ │ ├── OMReferenceContainer.h │ │ ├── OMReferenceContainerIter.h │ │ ├── OMReferenceSet.h │ │ ├── OMReferenceSetIter.h │ │ ├── OMReferenceVector.h │ │ ├── OMReferenceVectorIter.h │ │ ├── OMRenamedType.h │ │ ├── OMSSStoredObject.h │ │ ├── OMSSStoredObjectFactory.h │ │ ├── OMSSStoredStream.h │ │ ├── OMSS_SSStoredObjectFactory.h │ │ ├── OMSet.h │ │ ├── OMSetIterator.h │ │ ├── OMSetProperty.h │ │ ├── OMSetPropertyIterator.h │ │ ├── OMSetType.h │ │ ├── OMSingleton.h │ │ ├── OMStackTrace.h │ │ ├── OMStoredStream.h │ │ ├── OMStoredStreamFilter.h │ │ ├── OMStream.h │ │ ├── OMStreamProperty.h │ │ ├── OMStreamType.h │ │ ├── OMStringType.h │ │ ├── OMStrongRefProperty.h │ │ ├── OMStrongRefSetProperty.h │ │ ├── OMStrongRefVectorProperty.h │ │ ├── OMStrongReference.h │ │ ├── OMStrongReferenceSet.h │ │ ├── OMStrongReferenceSetIter.h │ │ ├── OMStrongReferenceVector.h │ │ ├── OMStrongReferenceVectorIter.h │ │ ├── OMTransparentStoredStreamFilter.h │ │ ├── OMType.h │ │ ├── OMTypeDefinition.h │ │ ├── OMTypeVisitor.h │ │ ├── OMUniqueObjectIdentType.h │ │ ├── OMVariableSizeProperty.h │ │ ├── OMVector.h │ │ ├── OMVectorIterator.h │ │ ├── OMWeakRefProperty.h │ │ ├── OMWeakRefSetProperty.h │ │ ├── OMWeakRefVectorProperty.h │ │ ├── OMWeakReference.h │ │ ├── OMWeakReferenceSet.h │ │ ├── OMWeakReferenceSetIter.h │ │ ├── OMWeakReferenceVector.h │ │ ├── OMWeakReferenceVectorIter.h │ │ ├── OMWideStringProperty.h │ │ ├── OMWrappedRawStorage.h │ │ ├── OMXMLStoredObject.h │ │ ├── OMXMLStoredObjectFactory.h │ │ └── OMXMLStoredStream.h │ ├── com-api │ │ ├── AAF.h │ │ ├── AAF.idl │ │ ├── AAFPlugin.h │ │ ├── AAFPlugin.idl │ │ ├── AAFPluginTypes.h │ │ ├── AAFPluginTypes.idl │ │ ├── AAFPlugin_i.c │ │ ├── AAFPrivate.h │ │ ├── AAFPrivate.idl │ │ ├── AAFPrivate_i.c │ │ ├── AAFTypes.h │ │ ├── AAFTypes.idl │ │ └── AAF_i.c │ ├── ref-api │ │ ├── AAF.h │ │ ├── AAFPlugin.h │ │ ├── AAFPluginTypes.h │ │ ├── AAFPlugin_i.c │ │ ├── AAFPrivate.h │ │ ├── AAFPrivate_i.c │ │ ├── AAFTypes.h │ │ └── AAF_i.c │ └── utf8.h ├── libjpeg │ ├── GNUmakefile │ ├── README │ ├── ansi2knr.1 │ ├── ansi2knr.c │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── change.log │ ├── cjpeg.1 │ ├── cjpeg.c │ ├── ckconfig.c │ ├── coderules.doc │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── djpeg.1 │ ├── djpeg.c │ ├── example.c │ ├── filelist.doc │ ├── install-sh │ ├── install.doc │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jchuff.h │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.bcc │ ├── jconfig.cfg │ ├── jconfig.dj │ ├── jconfig.doc │ ├── jconfig.h │ ├── jconfig.mac │ ├── jconfig.manx │ ├── jconfig.mc6 │ ├── jconfig.sas │ ├── jconfig.st │ ├── jconfig.vc │ ├── jconfig.vms │ ├── jconfig.wat │ ├── jcparam.c │ ├── jcphuff.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdhuff.h │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdosabcc.obj │ ├── jdosamsc.obj │ ├── jdosaobj.doc │ ├── jdphuff.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jidctred.c │ ├── jinclude.h │ ├── jmemansi.c │ ├── jmemdos.c │ ├── jmemdosa.asm │ ├── jmemmac.c │ ├── jmemmgr.c │ ├── jmemname.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.1 │ ├── jpegtran.c │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ ├── jversion.h │ ├── libjpeg.doc │ ├── ltconfig │ ├── ltmain.sh │ ├── makcjpeg.st │ ├── makdjpeg.st │ ├── makeapps.ds │ ├── makefile.ansi │ ├── makefile.bcc │ ├── makefile.cfg │ ├── makefile.dj │ ├── makefile.manx │ ├── makefile.mc6 │ ├── makefile.mms │ ├── makefile.sas │ ├── makefile.unix │ ├── makefile.vc │ ├── makefile.vms │ ├── makefile.wat │ ├── makelib.ds │ ├── makeproj.mac │ ├── makljpeg.st │ ├── maktjpeg.st │ ├── makvms.opt │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.1 │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── readme.dos │ ├── structure.doc │ ├── testimg.bmp │ ├── testimg.jpg │ ├── testimg.ppm │ ├── testimgp.jpg │ ├── testorig.jpg │ ├── testprog.jpg │ ├── transupp.c │ ├── transupp.h │ ├── usage.doc │ ├── wizard.doc │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.1 │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── plugins │ ├── AAFINTP.DEF │ ├── AAFInterpCOM.cpp │ ├── AAFInterpObjectTable_i.cpp │ ├── AAFPluginCOM.cpp │ ├── AAFPluginObjectTable_i.cpp │ ├── AAFPluginUtils.cpp │ ├── AAFPluginUtils.h │ ├── AAFRational.cpp │ ├── AAFRational.h │ ├── AafPlugincom.def │ ├── CAAFAIFCCodec.cpp │ ├── CAAFAIFCCodec.h │ ├── CAAFBasicInterp.cpp │ ├── CAAFBasicInterp.h │ ├── CAAFCDCICodec.cpp │ ├── CAAFCDCICodec.h │ ├── CAAFCDCIDescriptorHelper.cpp │ ├── CAAFCDCIDescriptorHelper.h │ ├── CAAFDNxHDCodec.cpp │ ├── CAAFDNxHDCodec.h │ ├── CAAFDefaultStream.cpp │ ├── CAAFDefaultStream.h │ ├── CAAFEssenceDataStream.cpp │ ├── CAAFEssenceDataStream.h │ ├── CAAFEssenceFileContainer.cpp │ ├── CAAFEssenceFileContainer.h │ ├── CAAFEssenceFileStream.cpp │ ├── CAAFEssenceFileStream.h │ ├── CAAFEssenceRIFFWAVEContainer.cpp │ ├── CAAFEssenceRIFFWAVEContainer.h │ ├── CAAFEssenceRIFFWAVEStream.cpp │ ├── CAAFEssenceRIFFWAVEStream.h │ ├── CAAFJPEGCodec.cpp │ ├── CAAFJPEGCodec.h │ ├── CAAFJPEGDescriptorHelper.cpp │ ├── CAAFJPEGDescriptorHelper.h │ ├── CAAFPCMCodec.cpp │ ├── CAAFPCMCodec.h │ ├── CAAFVC3Codec.cpp │ ├── CAAFVC3Codec.h │ ├── CAAFWAVECodec.cpp │ ├── CAAFWAVECodec.h │ ├── GNUmakefile │ ├── jpegesdata.h │ ├── jpegesdatadst.cpp │ ├── jpegesdatasrc.cpp │ └── utf8.cpp ├── src │ ├── GNUmakefile │ ├── OM │ │ ├── GNUmakefile │ │ ├── OMAVLTreeT.h │ │ ├── OMArrayPropertyIteratorT.h │ │ ├── OMArrayPropertyT.h │ │ ├── OMArrayType.cpp │ │ ├── OMAssertions.cpp │ │ ├── OMAssertions.h │ │ ├── OMBufferedIStream.cpp │ │ ├── OMBufferedStream.cpp │ │ ├── OMByteArray.cpp │ │ ├── OMByteArray.h │ │ ├── OMCachePageAllocator.cpp │ │ ├── OMCachedDiskRawStorage.cpp │ │ ├── OMCachedRawStorage.cpp │ │ ├── OMCharacterStringPropertyT.h │ │ ├── OMCharacterType.cpp │ │ ├── OMClassDefinition.cpp │ │ ├── OMClassFactory.h │ │ ├── OMContainerElement.cpp │ │ ├── OMContainerElementT.h │ │ ├── OMContainerProperty.cpp │ │ ├── OMDataSet.cpp │ │ ├── OMDataStream.cpp │ │ ├── OMDataStreamAccess.cpp │ │ ├── OMDataStreamProperty.cpp │ │ ├── OMDataStreamPropertyFilter.cpp │ │ ├── OMDataTypes.cpp │ │ ├── OMDataVector.cpp │ │ ├── OMDefinition.cpp │ │ ├── OMDictionary.cpp │ │ ├── OMDiskRawStorage.cpp │ │ ├── OMDynamicLibrary.cpp │ │ ├── OMEnumeratedType.cpp │ │ ├── OMExceptions.cpp │ │ ├── OMExtendibleEnumeratedType.cpp │ │ ├── OMFile.cpp │ │ ├── OMFile.h │ │ ├── OMFixedSizePropertyT.h │ │ ├── OMGSFStructuredStorage.cpp │ │ ├── OMGSFStructuredStorage.h │ │ ├── OMGSF_SSStoredObjectFactory.cpp │ │ ├── OMIOStream.cpp │ │ ├── OMIdentitySetIterT.h │ │ ├── OMIdentitySetT.h │ │ ├── OMIndirectType.cpp │ │ ├── OMIntegerType.cpp │ │ ├── OMKLVStoredObject.cpp │ │ ├── OMKLVStoredObjectFactory.cpp │ │ ├── OMKLVStoredStream.cpp │ │ ├── OMKLVStoredStreamFilter.cpp │ │ ├── OMListIteratorT.h │ │ ├── OMListT.h │ │ ├── OMMSStructuredStorage.cpp │ │ ├── OMMSStructuredStorage.h │ │ ├── OMMS_SSStoredObjectFactory.cpp │ │ ├── OMMXFStorage.cpp │ │ ├── OMMappedFileRawStorage.cpp │ │ ├── OMMemoryRawStorage.cpp │ │ ├── OMOStream.cpp │ │ ├── OMObjectManager.cpp │ │ ├── OMObjectReference.cpp │ │ ├── OMObjectReferenceT.h │ │ ├── OMObjectReferenceType.cpp │ │ ├── OMOpaqueType.cpp │ │ ├── OMPageCache.cpp │ │ ├── OMPortability.h │ │ ├── OMProperty.cpp │ │ ├── OMPropertyDefinition.cpp │ │ ├── OMPropertySet.cpp │ │ ├── OMPropertySetIterator.cpp │ │ ├── OMPropertyTable.cpp │ │ ├── OMRawStorageLockBytes.cpp │ │ ├── OMRecordType.cpp │ │ ├── OMRedBlackTreeIteratorT.h │ │ ├── OMRedBlackTreeT.h │ │ ├── OMRefProperty.cpp │ │ ├── OMRefSetProperty.cpp │ │ ├── OMRefVectorProperty.cpp │ │ ├── OMReferenceSetIterT.h │ │ ├── OMReferenceSetT.h │ │ ├── OMReferenceVectorIterT.h │ │ ├── OMReferenceVectorT.h │ │ ├── OMRenamedType.cpp │ │ ├── OMRootStorable.cpp │ │ ├── OMRootStorable.h │ │ ├── OMSSSStorageRWInputSource.cpp │ │ ├── OMSSSStorageRWInputSource.h │ │ ├── OMSSStoredObject.cpp │ │ ├── OMSSStoredObjectFactory.cpp │ │ ├── OMSSStoredStream.cpp │ │ ├── OMSSStructuredStorage.cpp │ │ ├── OMSSStructuredStorage.h │ │ ├── OMSS_SSStoredObjectFactory.cpp │ │ ├── OMSetIteratorT.h │ │ ├── OMSetPropertyIteratorT.h │ │ ├── OMSetPropertyT.h │ │ ├── OMSetT.h │ │ ├── OMSetType.cpp │ │ ├── OMSingletonT.h │ │ ├── OMStackTrace.cpp │ │ ├── OMStorable.cpp │ │ ├── OMStorable.h │ │ ├── OMStoredObject.cpp │ │ ├── OMStoredObject.h │ │ ├── OMStoredObjectFactory.cpp │ │ ├── OMStoredObjectFactory.h │ │ ├── OMStoredPropertySetIndex.cpp │ │ ├── OMStoredPropertySetIndex.h │ │ ├── OMStoredSetIndex.cpp │ │ ├── OMStoredSetIndex.h │ │ ├── OMStoredVectorIndex.cpp │ │ ├── OMStoredVectorIndex.h │ │ ├── OMStream.cpp │ │ ├── OMStreamPropertyT.h │ │ ├── OMStreamType.cpp │ │ ├── OMStringType.cpp │ │ ├── OMStrongRefPropertyT.h │ │ ├── OMStrongRefSetPropertyT.h │ │ ├── OMStrongRefVectorPropertyT.h │ │ ├── OMStrongReference.cpp │ │ ├── OMStrongReferenceSet.cpp │ │ ├── OMStrongReferenceSetIterT.h │ │ ├── OMStrongReferenceVector.cpp │ │ ├── OMStrongReferenceVectorIterT.h │ │ ├── OMSymbolspace.cpp │ │ ├── OMSymbolspace.h │ │ ├── OMType.cpp │ │ ├── OMTypeDefinition.cpp │ │ ├── OMTypeVisitor.cpp │ │ ├── OMUniqueObjectIdentType.cpp │ │ ├── OMUtilities.cpp │ │ ├── OMUtilities.h │ │ ├── OMVariableSizePropertyT.h │ │ ├── OMVectorIteratorT.h │ │ ├── OMVectorT.h │ │ ├── OMWString.cpp │ │ ├── OMWString.h │ │ ├── OMWeakRefPropertyT.h │ │ ├── OMWeakRefSetPropertyT.h │ │ ├── OMWeakRefVectorPropertyT.h │ │ ├── OMWeakReference.cpp │ │ ├── OMWeakReferenceSet.cpp │ │ ├── OMWeakReferenceSetIterT.h │ │ ├── OMWeakReferenceVector.cpp │ │ ├── OMWeakReferenceVectorIterT.h │ │ ├── OMWideStringProperty.cpp │ │ ├── OMWrappedRawStorage.cpp │ │ ├── OMXMLReader.cpp │ │ ├── OMXMLReader.h │ │ ├── OMXMLStorage.cpp │ │ ├── OMXMLStorage.h │ │ ├── OMXMLStoredObject.cpp │ │ ├── OMXMLStoredObjectFactory.cpp │ │ ├── OMXMLStoredStream.cpp │ │ ├── OMXMLUtilities.cpp │ │ ├── OMXMLUtilities.h │ │ ├── OMXMLWriter.cpp │ │ ├── OMXMLWriter.h │ │ └── utf8.cpp │ ├── com-api │ │ ├── AAFCLSIDs.h │ │ ├── AAFObjectTable.h │ │ ├── AAFObjectTable_i.cpp │ │ ├── CAAFAES3PCMDescriptor.cpp │ │ ├── CAAFAES3PCMDescriptor.h │ │ ├── CAAFAIFCDescriptor.cpp │ │ ├── CAAFAIFCDescriptor.h │ │ ├── CAAFAuxiliaryDescriptor.cpp │ │ ├── CAAFAuxiliaryDescriptor.h │ │ ├── CAAFBWFImportDescriptor.cpp │ │ ├── CAAFBWFImportDescriptor.h │ │ ├── CAAFCDCIDescriptor.cpp │ │ ├── CAAFCDCIDescriptor.h │ │ ├── CAAFCachePageAllocator.cpp │ │ ├── CAAFCachePageAllocator.h │ │ ├── CAAFClassDef.cpp │ │ ├── CAAFClassDef.h │ │ ├── CAAFCodecDef.cpp │ │ ├── CAAFCodecDef.h │ │ ├── CAAFCommentMarker.cpp │ │ ├── CAAFCommentMarker.h │ │ ├── CAAFComponent.cpp │ │ ├── CAAFComponent.h │ │ ├── CAAFCompositionMob.cpp │ │ ├── CAAFCompositionMob.h │ │ ├── CAAFConstantValue.cpp │ │ ├── CAAFConstantValue.h │ │ ├── CAAFContainerDef.cpp │ │ ├── CAAFContainerDef.h │ │ ├── CAAFContentStorage.cpp │ │ ├── CAAFContentStorage.h │ │ ├── CAAFControlPoint.cpp │ │ ├── CAAFControlPoint.h │ │ ├── CAAFDataDef.cpp │ │ ├── CAAFDataDef.h │ │ ├── CAAFDataEssenceDescriptor.cpp │ │ ├── CAAFDataEssenceDescriptor.h │ │ ├── CAAFDefObject.cpp │ │ ├── CAAFDefObject.h │ │ ├── CAAFDescriptiveClip.cpp │ │ ├── CAAFDescriptiveClip.h │ │ ├── CAAFDescriptiveFramework.cpp │ │ ├── CAAFDescriptiveFramework.h │ │ ├── CAAFDescriptiveMarker.cpp │ │ ├── CAAFDescriptiveMarker.h │ │ ├── CAAFDescriptiveObject.cpp │ │ ├── CAAFDescriptiveObject.h │ │ ├── CAAFDictionary.cpp │ │ ├── CAAFDictionary.h │ │ ├── CAAFDigitalImageDescriptor.cpp │ │ ├── CAAFDigitalImageDescriptor.h │ │ ├── CAAFEdgecode.cpp │ │ ├── CAAFEdgecode.h │ │ ├── CAAFEnumValidation.cpp │ │ ├── CAAFEnumValidation.h │ │ ├── CAAFEssenceAccess.cpp │ │ ├── CAAFEssenceAccess.h │ │ ├── CAAFEssenceData.cpp │ │ ├── CAAFEssenceData.h │ │ ├── CAAFEssenceDescriptor.cpp │ │ ├── CAAFEssenceDescriptor.h │ │ ├── CAAFEssenceFormat.cpp │ │ ├── CAAFEssenceFormat.h │ │ ├── CAAFEssenceGroup.cpp │ │ ├── CAAFEssenceGroup.h │ │ ├── CAAFEvent.cpp │ │ ├── CAAFEvent.h │ │ ├── CAAFEventMobSlot.cpp │ │ ├── CAAFEventMobSlot.h │ │ ├── CAAFFile.cpp │ │ ├── CAAFFile.h │ │ ├── CAAFFileDescriptor.cpp │ │ ├── CAAFFileDescriptor.h │ │ ├── CAAFFileEncoding.cpp │ │ ├── CAAFFileEncoding.h │ │ ├── CAAFFiller.cpp │ │ ├── CAAFFiller.h │ │ ├── CAAFFilmDescriptor.cpp │ │ ├── CAAFFilmDescriptor.h │ │ ├── CAAFFindSourceInfo.cpp │ │ ├── CAAFFindSourceInfo.h │ │ ├── CAAFGPITrigger.cpp │ │ ├── CAAFGPITrigger.h │ │ ├── CAAFGetFileBits.cpp │ │ ├── CAAFGetFileBits.h │ │ ├── CAAFHTMLClip.cpp │ │ ├── CAAFHTMLClip.h │ │ ├── CAAFHTMLDescriptor.cpp │ │ ├── CAAFHTMLDescriptor.h │ │ ├── CAAFHeader.cpp │ │ ├── CAAFHeader.h │ │ ├── CAAFIdentification.cpp │ │ ├── CAAFIdentification.h │ │ ├── CAAFImportDescriptor.cpp │ │ ├── CAAFImportDescriptor.h │ │ ├── CAAFInterpolationDef.cpp │ │ ├── CAAFInterpolationDef.h │ │ ├── CAAFKLVData.cpp │ │ ├── CAAFKLVData.h │ │ ├── CAAFKLVDataDefinition.cpp │ │ ├── CAAFKLVDataDefinition.h │ │ ├── CAAFLocator.cpp │ │ ├── CAAFLocator.h │ │ ├── CAAFMPEGVideoDescriptor.cpp │ │ ├── CAAFMPEGVideoDescriptor.h │ │ ├── CAAFMasterMob.cpp │ │ ├── CAAFMasterMob.h │ │ ├── CAAFMetaDefinition.cpp │ │ ├── CAAFMetaDefinition.h │ │ ├── CAAFMetaDictionary.cpp │ │ ├── CAAFMetaDictionary.h │ │ ├── CAAFMob.cpp │ │ ├── CAAFMob.h │ │ ├── CAAFMobSlot.cpp │ │ ├── CAAFMobSlot.h │ │ ├── CAAFModule.cpp │ │ ├── CAAFMultipleDescriptor.cpp │ │ ├── CAAFMultipleDescriptor.h │ │ ├── CAAFNestedScope.cpp │ │ ├── CAAFNestedScope.h │ │ ├── CAAFNetworkLocator.cpp │ │ ├── CAAFNetworkLocator.h │ │ ├── CAAFObject.cpp │ │ ├── CAAFObject.h │ │ ├── CAAFOperationDef.cpp │ │ ├── CAAFOperationDef.h │ │ ├── CAAFOperationGroup.cpp │ │ ├── CAAFOperationGroup.h │ │ ├── CAAFPCMDescriptor.cpp │ │ ├── CAAFPCMDescriptor.h │ │ ├── CAAFParameter.cpp │ │ ├── CAAFParameter.h │ │ ├── CAAFParameterDef.cpp │ │ ├── CAAFParameterDef.h │ │ ├── CAAFPhysicalDescriptor.cpp │ │ ├── CAAFPhysicalDescriptor.h │ │ ├── CAAFPlainEssenceData.cpp │ │ ├── CAAFPlainEssenceData.h │ │ ├── CAAFPlainStreamData.cpp │ │ ├── CAAFPlainStreamData.h │ │ ├── CAAFPluginDef.cpp │ │ ├── CAAFPluginDef.h │ │ ├── CAAFPluginManager.cpp │ │ ├── CAAFPluginManager.h │ │ ├── CAAFPropValData.cpp │ │ ├── CAAFPropValData.h │ │ ├── CAAFProperty.cpp │ │ ├── CAAFProperty.h │ │ ├── CAAFPropertyDef.cpp │ │ ├── CAAFPropertyDef.h │ │ ├── CAAFPropertyValue.cpp │ │ ├── CAAFPropertyValue.h │ │ ├── CAAFPulldown.cpp │ │ ├── CAAFPulldown.h │ │ ├── CAAFRGBADescriptor.cpp │ │ ├── CAAFRGBADescriptor.h │ │ ├── CAAFRIFFChunk.cpp │ │ ├── CAAFRIFFChunk.h │ │ ├── CAAFRandomFile.cpp │ │ ├── CAAFRandomFile.h │ │ ├── CAAFRandomRawStorage.cpp │ │ ├── CAAFRandomRawStorage.h │ │ ├── CAAFRawStorage.cpp │ │ ├── CAAFRawStorage.h │ │ ├── CAAFRecordingDescriptor.cpp │ │ ├── CAAFRecordingDescriptor.h │ │ ├── CAAFRoot.cpp │ │ ├── CAAFRoot.h │ │ ├── CAAFScopeReference.cpp │ │ ├── CAAFScopeReference.h │ │ ├── CAAFSegment.cpp │ │ ├── CAAFSegment.h │ │ ├── CAAFSelector.cpp │ │ ├── CAAFSelector.h │ │ ├── CAAFSequence.cpp │ │ ├── CAAFSequence.h │ │ ├── CAAFSetFileBits.cpp │ │ ├── CAAFSetFileBits.h │ │ ├── CAAFSoundDescriptor.cpp │ │ ├── CAAFSoundDescriptor.h │ │ ├── CAAFSourceClip.cpp │ │ ├── CAAFSourceClip.h │ │ ├── CAAFSourceMob.cpp │ │ ├── CAAFSourceMob.h │ │ ├── CAAFSourceReference.cpp │ │ ├── CAAFSourceReference.h │ │ ├── CAAFStaticMobSlot.cpp │ │ ├── CAAFStaticMobSlot.h │ │ ├── CAAFStreamPropertyValue.cpp │ │ ├── CAAFStreamPropertyValue.h │ │ ├── CAAFStrongRefArrayValue.cpp │ │ ├── CAAFStrongRefArrayValue.h │ │ ├── CAAFStrongRefSetValue.cpp │ │ ├── CAAFStrongRefSetValue.h │ │ ├── CAAFStrongRefValue.cpp │ │ ├── CAAFStrongRefValue.h │ │ ├── CAAFTIFFDescriptor.cpp │ │ ├── CAAFTIFFDescriptor.h │ │ ├── CAAFTaggedValue.cpp │ │ ├── CAAFTaggedValue.h │ │ ├── CAAFTaggedValueDefinition.cpp │ │ ├── CAAFTaggedValueDefinition.h │ │ ├── CAAFTapeDescriptor.cpp │ │ ├── CAAFTapeDescriptor.h │ │ ├── CAAFTextClip.cpp │ │ ├── CAAFTextClip.h │ │ ├── CAAFTextLocator.cpp │ │ ├── CAAFTextLocator.h │ │ ├── CAAFTimecode.cpp │ │ ├── CAAFTimecode.h │ │ ├── CAAFTimecodeStream.cpp │ │ ├── CAAFTimecodeStream.h │ │ ├── CAAFTimecodeStream12M.cpp │ │ ├── CAAFTimecodeStream12M.h │ │ ├── CAAFTimelineMobSlot.cpp │ │ ├── CAAFTimelineMobSlot.h │ │ ├── CAAFTransition.cpp │ │ ├── CAAFTransition.h │ │ ├── CAAFTypeDef.cpp │ │ ├── CAAFTypeDef.h │ │ ├── CAAFTypeDefCharacter.cpp │ │ ├── CAAFTypeDefCharacter.h │ │ ├── CAAFTypeDefEnum.cpp │ │ ├── CAAFTypeDefEnum.h │ │ ├── CAAFTypeDefExtEnum.cpp │ │ ├── CAAFTypeDefExtEnum.h │ │ ├── CAAFTypeDefFixedArray.cpp │ │ ├── CAAFTypeDefFixedArray.h │ │ ├── CAAFTypeDefIndirect.cpp │ │ ├── CAAFTypeDefIndirect.h │ │ ├── CAAFTypeDefInt.cpp │ │ ├── CAAFTypeDefInt.h │ │ ├── CAAFTypeDefObjectRef.cpp │ │ ├── CAAFTypeDefObjectRef.h │ │ ├── CAAFTypeDefOpaque.cpp │ │ ├── CAAFTypeDefOpaque.h │ │ ├── CAAFTypeDefRecord.cpp │ │ ├── CAAFTypeDefRecord.h │ │ ├── CAAFTypeDefRename.cpp │ │ ├── CAAFTypeDefRename.h │ │ ├── CAAFTypeDefSet.cpp │ │ ├── CAAFTypeDefSet.h │ │ ├── CAAFTypeDefStream.cpp │ │ ├── CAAFTypeDefStream.h │ │ ├── CAAFTypeDefString.cpp │ │ ├── CAAFTypeDefString.h │ │ ├── CAAFTypeDefStrongObjRef.cpp │ │ ├── CAAFTypeDefStrongObjRef.h │ │ ├── CAAFTypeDefVariableArray.cpp │ │ ├── CAAFTypeDefVariableArray.h │ │ ├── CAAFTypeDefWeakObjRef.cpp │ │ ├── CAAFTypeDefWeakObjRef.h │ │ ├── CAAFVaryingValue.cpp │ │ ├── CAAFVaryingValue.h │ │ ├── CAAFWAVEDescriptor.cpp │ │ ├── CAAFWAVEDescriptor.h │ │ ├── CAAFWeakRefArrayValue.cpp │ │ ├── CAAFWeakRefArrayValue.h │ │ ├── CAAFWeakRefSetValue.cpp │ │ ├── CAAFWeakRefSetValue.h │ │ ├── CAAFWeakRefValue.cpp │ │ ├── CAAFWeakRefValue.h │ │ ├── CEnumAAFClassDefs.cpp │ │ ├── CEnumAAFClassDefs.h │ │ ├── CEnumAAFCodecDefs.cpp │ │ ├── CEnumAAFCodecDefs.h │ │ ├── CEnumAAFCodecFlavours.cpp │ │ ├── CEnumAAFCodecFlavours.h │ │ ├── CEnumAAFComponents.cpp │ │ ├── CEnumAAFComponents.h │ │ ├── CEnumAAFContainerDefs.cpp │ │ ├── CEnumAAFContainerDefs.h │ │ ├── CEnumAAFControlPoints.cpp │ │ ├── CEnumAAFControlPoints.h │ │ ├── CEnumAAFDataDefs.cpp │ │ ├── CEnumAAFDataDefs.h │ │ ├── CEnumAAFEssenceData.cpp │ │ ├── CEnumAAFEssenceData.h │ │ ├── CEnumAAFFileDescriptors.cpp │ │ ├── CEnumAAFFileDescriptors.h │ │ ├── CEnumAAFFileEncodings.cpp │ │ ├── CEnumAAFFileEncodings.h │ │ ├── CEnumAAFIdentifications.cpp │ │ ├── CEnumAAFIdentifications.h │ │ ├── CEnumAAFInterpolationDefs.cpp │ │ ├── CEnumAAFInterpolationDefs.h │ │ ├── CEnumAAFKLVData.cpp │ │ ├── CEnumAAFKLVData.h │ │ ├── CEnumAAFKLVDataDefs.cpp │ │ ├── CEnumAAFKLVDataDefs.h │ │ ├── CEnumAAFLoadedPlugins.cpp │ │ ├── CEnumAAFLoadedPlugins.h │ │ ├── CEnumAAFLocators.cpp │ │ ├── CEnumAAFLocators.h │ │ ├── CEnumAAFMobSlots.cpp │ │ ├── CEnumAAFMobSlots.h │ │ ├── CEnumAAFMobs.cpp │ │ ├── CEnumAAFMobs.h │ │ ├── CEnumAAFOperationDefs.cpp │ │ ├── CEnumAAFOperationDefs.h │ │ ├── CEnumAAFParameterDefs.cpp │ │ ├── CEnumAAFParameterDefs.h │ │ ├── CEnumAAFParameters.cpp │ │ ├── CEnumAAFParameters.h │ │ ├── CEnumAAFPluginDefs.cpp │ │ ├── CEnumAAFPluginDefs.h │ │ ├── CEnumAAFPluginLocators.cpp │ │ ├── CEnumAAFPluginLocators.h │ │ ├── CEnumAAFProperties.cpp │ │ ├── CEnumAAFProperties.h │ │ ├── CEnumAAFPropertyDefs.cpp │ │ ├── CEnumAAFPropertyDefs.h │ │ ├── CEnumAAFPropertyValues.cpp │ │ ├── CEnumAAFPropertyValues.h │ │ ├── CEnumAAFRIFFChunks.cpp │ │ ├── CEnumAAFRIFFChunks.h │ │ ├── CEnumAAFSegments.cpp │ │ ├── CEnumAAFSegments.h │ │ ├── CEnumAAFStorablePropVals.cpp │ │ ├── CEnumAAFStorablePropVals.h │ │ ├── CEnumAAFTaggedValueDefs.cpp │ │ ├── CEnumAAFTaggedValueDefs.h │ │ ├── CEnumAAFTaggedValues.cpp │ │ ├── CEnumAAFTaggedValues.h │ │ ├── CEnumAAFTypeDefs.cpp │ │ ├── CEnumAAFTypeDefs.h │ │ ├── GNUmakefile │ │ └── com-dll │ │ │ ├── AAFCOM.DEF │ │ │ ├── AAFCOM.cpp │ │ │ ├── AAFObjectCreation.cpp │ │ │ ├── CAAFClassFactory.cpp │ │ │ ├── CAAFClassFactory.h │ │ │ ├── CAAFInProcServer.cpp │ │ │ ├── CAAFInProcServer.h │ │ │ ├── CAAFServer.cpp │ │ │ ├── CAAFServer.h │ │ │ ├── CAAFUnknown.cpp │ │ │ ├── CAAFUnknown.h │ │ │ ├── GNUmakefile │ │ │ └── utf8.cpp │ └── impl │ │ ├── AAFClassIDs.h │ │ ├── AAFComponentVisitor.h │ │ ├── AAFObjectModel.cpp │ │ ├── AAFObjectModel.h │ │ ├── AAFObjectModelProcs.cpp │ │ ├── AAFObjectModelProcs.h │ │ ├── AAFUtils.cpp │ │ ├── AAFUtils.h │ │ ├── GNUmakefile │ │ ├── ImplAAFAES3PCMDescriptor.cpp │ │ ├── ImplAAFAES3PCMDescriptor.h │ │ ├── ImplAAFAIFCDescriptor.cpp │ │ ├── ImplAAFAIFCDescriptor.h │ │ ├── ImplAAFAuxiliaryDescriptor.cpp │ │ ├── ImplAAFAuxiliaryDescriptor.h │ │ ├── ImplAAFBWFImportDescriptor.cpp │ │ ├── ImplAAFBWFImportDescriptor.h │ │ ├── ImplAAFBaseClassFactory.cpp │ │ ├── ImplAAFBaseClassFactory.h │ │ ├── ImplAAFBuiltinClasses.cpp │ │ ├── ImplAAFBuiltinClasses.h │ │ ├── ImplAAFBuiltinDefs.h │ │ ├── ImplAAFBuiltinTypes.cpp │ │ ├── ImplAAFBuiltinTypes.h │ │ ├── ImplAAFCDCIDescriptor.cpp │ │ ├── ImplAAFCDCIDescriptor.h │ │ ├── ImplAAFCachePageAllocator.cpp │ │ ├── ImplAAFCachePageAllocator.h │ │ ├── ImplAAFClassDef.cpp │ │ ├── ImplAAFClassDef.h │ │ ├── ImplAAFClientDiagnostics.cpp │ │ ├── ImplAAFClientDiagnostics.h │ │ ├── ImplAAFCloneResolver.cpp │ │ ├── ImplAAFCloneResolver.h │ │ ├── ImplAAFCodecDef.cpp │ │ ├── ImplAAFCodecDef.h │ │ ├── ImplAAFCollection.h │ │ ├── ImplAAFCommentMarker.cpp │ │ ├── ImplAAFCommentMarker.h │ │ ├── ImplAAFComponent.cpp │ │ ├── ImplAAFComponent.h │ │ ├── ImplAAFCompositionMob.cpp │ │ ├── ImplAAFCompositionMob.h │ │ ├── ImplAAFConstantValue.cpp │ │ ├── ImplAAFConstantValue.h │ │ ├── ImplAAFContainerDef.cpp │ │ ├── ImplAAFContainerDef.h │ │ ├── ImplAAFContentStorage.cpp │ │ ├── ImplAAFContentStorage.h │ │ ├── ImplAAFContext.cpp │ │ ├── ImplAAFContext.h │ │ ├── ImplAAFControlPoint.cpp │ │ ├── ImplAAFControlPoint.h │ │ ├── ImplAAFDataDef.cpp │ │ ├── ImplAAFDataDef.h │ │ ├── ImplAAFDataEssenceDescriptor.cpp │ │ ├── ImplAAFDataEssenceDescriptor.h │ │ ├── ImplAAFDefObject.cpp │ │ ├── ImplAAFDefObject.h │ │ ├── ImplAAFDescriptiveClip.cpp │ │ ├── ImplAAFDescriptiveClip.h │ │ ├── ImplAAFDescriptiveFramework.cpp │ │ ├── ImplAAFDescriptiveFramework.h │ │ ├── ImplAAFDescriptiveMarker.cpp │ │ ├── ImplAAFDescriptiveMarker.h │ │ ├── ImplAAFDescriptiveObject.cpp │ │ ├── ImplAAFDescriptiveObject.h │ │ ├── ImplAAFDictionary.cpp │ │ ├── ImplAAFDictionary.cpp_ContainerDefs │ │ ├── ImplAAFDictionary.cpp_DataDefs │ │ ├── ImplAAFDictionary.h │ │ ├── ImplAAFDigitalImageDescrip.cpp │ │ ├── ImplAAFDigitalImageDescriptor.h │ │ ├── ImplAAFEdgecode.cpp │ │ ├── ImplAAFEdgecode.h │ │ ├── ImplAAFEnumerator.h │ │ ├── ImplAAFEssenceAccess.cpp │ │ ├── ImplAAFEssenceAccess.h │ │ ├── ImplAAFEssenceData.cpp │ │ ├── ImplAAFEssenceData.h │ │ ├── ImplAAFEssenceDescriptor.cpp │ │ ├── ImplAAFEssenceDescriptor.h │ │ ├── ImplAAFEssenceFormat.cpp │ │ ├── ImplAAFEssenceFormat.h │ │ ├── ImplAAFEssenceGroup.cpp │ │ ├── ImplAAFEssenceGroup.h │ │ ├── ImplAAFEssencePlugin.cpp │ │ ├── ImplAAFEssencePlugin.h │ │ ├── ImplAAFEvent.cpp │ │ ├── ImplAAFEvent.h │ │ ├── ImplAAFEventMobSlot.cpp │ │ ├── ImplAAFEventMobSlot.h │ │ ├── ImplAAFFile.cpp │ │ ├── ImplAAFFile.h │ │ ├── ImplAAFFileDescriptor.cpp │ │ ├── ImplAAFFileDescriptor.h │ │ ├── ImplAAFFileEncoding.cpp │ │ ├── ImplAAFFileEncoding.h │ │ ├── ImplAAFFiller.cpp │ │ ├── ImplAAFFiller.h │ │ ├── ImplAAFFilmDescriptor.cpp │ │ ├── ImplAAFFilmDescriptor.h │ │ ├── ImplAAFFindSourceInfo.cpp │ │ ├── ImplAAFFindSourceInfo.h │ │ ├── ImplAAFGPITrigger.cpp │ │ ├── ImplAAFGPITrigger.h │ │ ├── ImplAAFGetFileBits.cpp │ │ ├── ImplAAFGetFileBits.h │ │ ├── ImplAAFHTMLClip.cpp │ │ ├── ImplAAFHTMLClip.h │ │ ├── ImplAAFHTMLDescriptor.cpp │ │ ├── ImplAAFHTMLDescriptor.h │ │ ├── ImplAAFHeader.cpp │ │ ├── ImplAAFHeader.h │ │ ├── ImplAAFIdentification.cpp │ │ ├── ImplAAFIdentification.h │ │ ├── ImplAAFImportDescriptor.cpp │ │ ├── ImplAAFImportDescriptor.h │ │ ├── ImplAAFInterpolationDef.cpp │ │ ├── ImplAAFInterpolationDef.h │ │ ├── ImplAAFKLVData.cpp │ │ ├── ImplAAFKLVData.h │ │ ├── ImplAAFKLVDataDefinition.cpp │ │ ├── ImplAAFKLVDataDefinition.h │ │ ├── ImplAAFLocator.cpp │ │ ├── ImplAAFLocator.h │ │ ├── ImplAAFMPEGVideoDescriptor.cpp │ │ ├── ImplAAFMPEGVideoDescriptor.h │ │ ├── ImplAAFMasterMob.cpp │ │ ├── ImplAAFMasterMob.h │ │ ├── ImplAAFMetaDefinition.cpp │ │ ├── ImplAAFMetaDefinition.h │ │ ├── ImplAAFMetaDictionary.cpp │ │ ├── ImplAAFMetaDictionary.h │ │ ├── ImplAAFMob.cpp │ │ ├── ImplAAFMob.h │ │ ├── ImplAAFMobSlot.cpp │ │ ├── ImplAAFMobSlot.h │ │ ├── ImplAAFModule.cpp │ │ ├── ImplAAFModule.h │ │ ├── ImplAAFMultipleDescriptor.cpp │ │ ├── ImplAAFMultipleDescriptor.h │ │ ├── ImplAAFNestedScope.cpp │ │ ├── ImplAAFNestedScope.h │ │ ├── ImplAAFNetworkLocator.cpp │ │ ├── ImplAAFNetworkLocator.h │ │ ├── ImplAAFOMCachePageAllocator.cpp │ │ ├── ImplAAFOMCachePageAllocator.h │ │ ├── ImplAAFOMRawStorage.cpp │ │ ├── ImplAAFOMRawStorage.h │ │ ├── ImplAAFObject.cpp │ │ ├── ImplAAFObject.h │ │ ├── ImplAAFObjectCreation.h │ │ ├── ImplAAFOperationDef.cpp │ │ ├── ImplAAFOperationDef.h │ │ ├── ImplAAFOperationGroup.cpp │ │ ├── ImplAAFOperationGroup.h │ │ ├── ImplAAFPCMDescriptor.cpp │ │ ├── ImplAAFPCMDescriptor.h │ │ ├── ImplAAFParameter.cpp │ │ ├── ImplAAFParameter.h │ │ ├── ImplAAFParameterDef.cpp │ │ ├── ImplAAFParameterDef.h │ │ ├── ImplAAFPhysicalDescriptor.cpp │ │ ├── ImplAAFPhysicalDescriptor.h │ │ ├── ImplAAFPlainEssenceData.cpp │ │ ├── ImplAAFPlainEssenceData.h │ │ ├── ImplAAFPlainStreamData.cpp │ │ ├── ImplAAFPlainStreamData.h │ │ ├── ImplAAFPluginDef.cpp │ │ ├── ImplAAFPluginDef.h │ │ ├── ImplAAFPluginFile.cpp │ │ ├── ImplAAFPluginFile.h │ │ ├── ImplAAFPluginManager.cpp │ │ ├── ImplAAFPluginManager.h │ │ ├── ImplAAFPropValData.cpp │ │ ├── ImplAAFPropValData.h │ │ ├── ImplAAFProperty.cpp │ │ ├── ImplAAFProperty.h │ │ ├── ImplAAFPropertyDef.cpp │ │ ├── ImplAAFPropertyDef.h │ │ ├── ImplAAFPropertyValue.cpp │ │ ├── ImplAAFPropertyValue.h │ │ ├── ImplAAFPulldown.cpp │ │ ├── ImplAAFPulldown.h │ │ ├── ImplAAFRGBADescriptor.cpp │ │ ├── ImplAAFRGBADescriptor.h │ │ ├── ImplAAFRIFFChunk.cpp │ │ ├── ImplAAFRIFFChunk.h │ │ ├── ImplAAFRandomFile.cpp │ │ ├── ImplAAFRandomFile.h │ │ ├── ImplAAFRandomRawStorage.cpp │ │ ├── ImplAAFRandomRawStorage.h │ │ ├── ImplAAFRawStorage.cpp │ │ ├── ImplAAFRawStorage.h │ │ ├── ImplAAFRecordingDescriptor.cpp │ │ ├── ImplAAFRecordingDescriptor.h │ │ ├── ImplAAFRefArrayValue.cpp │ │ ├── ImplAAFRefArrayValue.h │ │ ├── ImplAAFRefContainerValue.cpp │ │ ├── ImplAAFRefContainerValue.h │ │ ├── ImplAAFRefSetValue.cpp │ │ ├── ImplAAFRefSetValue.h │ │ ├── ImplAAFRefValue.cpp │ │ ├── ImplAAFRefValue.h │ │ ├── ImplAAFRoot.cpp │ │ ├── ImplAAFRoot.h │ │ ├── ImplAAFScopeReference.cpp │ │ ├── ImplAAFScopeReference.h │ │ ├── ImplAAFSearchableStack.h │ │ ├── ImplAAFSegment.cpp │ │ ├── ImplAAFSegment.h │ │ ├── ImplAAFSelector.cpp │ │ ├── ImplAAFSelector.h │ │ ├── ImplAAFSequence.cpp │ │ ├── ImplAAFSequence.h │ │ ├── ImplAAFSetFileBits.cpp │ │ ├── ImplAAFSetFileBits.h │ │ ├── ImplAAFSmartPointer.h │ │ ├── ImplAAFSoundDescriptor.cpp │ │ ├── ImplAAFSoundDescriptor.h │ │ ├── ImplAAFSourceClip.cpp │ │ ├── ImplAAFSourceClip.h │ │ ├── ImplAAFSourceMob.cpp │ │ ├── ImplAAFSourceMob.h │ │ ├── ImplAAFSourceReference.cpp │ │ ├── ImplAAFSourceReference.h │ │ ├── ImplAAFStaticMobSlot.cpp │ │ ├── ImplAAFStaticMobSlot.h │ │ ├── ImplAAFStorable.cpp │ │ ├── ImplAAFStorable.h │ │ ├── ImplAAFStreamPropertyValue.cpp │ │ ├── ImplAAFStreamPropertyValue.h │ │ ├── ImplAAFStrongRefArrayValue.cpp │ │ ├── ImplAAFStrongRefArrayValue.h │ │ ├── ImplAAFStrongRefSetValue.cpp │ │ ├── ImplAAFStrongRefSetValue.h │ │ ├── ImplAAFStrongRefValue.cpp │ │ ├── ImplAAFStrongRefValue.h │ │ ├── ImplAAFTIFFDescriptor.cpp │ │ ├── ImplAAFTIFFDescriptor.h │ │ ├── ImplAAFTaggedValue.cpp │ │ ├── ImplAAFTaggedValue.h │ │ ├── ImplAAFTaggedValueDefinition.cpp │ │ ├── ImplAAFTaggedValueDefinition.h │ │ ├── ImplAAFTaggedValueUtil.cpp │ │ ├── ImplAAFTaggedValueUtil.h │ │ ├── ImplAAFTapeDescriptor.cpp │ │ ├── ImplAAFTapeDescriptor.h │ │ ├── ImplAAFTextClip.cpp │ │ ├── ImplAAFTextClip.h │ │ ├── ImplAAFTextLocator.cpp │ │ ├── ImplAAFTextLocator.h │ │ ├── ImplAAFTimecode.cpp │ │ ├── ImplAAFTimecode.h │ │ ├── ImplAAFTimecodeStream.cpp │ │ ├── ImplAAFTimecodeStream.h │ │ ├── ImplAAFTimecodeStream12M.cpp │ │ ├── ImplAAFTimecodeStream12M.h │ │ ├── ImplAAFTimelineMobSlot.cpp │ │ ├── ImplAAFTimelineMobSlot.h │ │ ├── ImplAAFTransition.cpp │ │ ├── ImplAAFTransition.h │ │ ├── ImplAAFTypeDef.cpp │ │ ├── ImplAAFTypeDef.h │ │ ├── ImplAAFTypeDefArray.cpp │ │ ├── ImplAAFTypeDefArray.h │ │ ├── ImplAAFTypeDefCharacter.cpp │ │ ├── ImplAAFTypeDefCharacter.h │ │ ├── ImplAAFTypeDefEnum.cpp │ │ ├── ImplAAFTypeDefEnum.h │ │ ├── ImplAAFTypeDefExtEnum.cpp │ │ ├── ImplAAFTypeDefExtEnum.h │ │ ├── ImplAAFTypeDefFixedArray.cpp │ │ ├── ImplAAFTypeDefFixedArray.h │ │ ├── ImplAAFTypeDefIndirect.cpp │ │ ├── ImplAAFTypeDefIndirect.h │ │ ├── ImplAAFTypeDefInt.cpp │ │ ├── ImplAAFTypeDefInt.h │ │ ├── ImplAAFTypeDefObjectRef.cpp │ │ ├── ImplAAFTypeDefObjectRef.h │ │ ├── ImplAAFTypeDefOpaque.cpp │ │ ├── ImplAAFTypeDefOpaque.h │ │ ├── ImplAAFTypeDefRecord.cpp │ │ ├── ImplAAFTypeDefRecord.h │ │ ├── ImplAAFTypeDefRename.cpp │ │ ├── ImplAAFTypeDefRename.h │ │ ├── ImplAAFTypeDefSet.cpp │ │ ├── ImplAAFTypeDefSet.h │ │ ├── ImplAAFTypeDefStream.cpp │ │ ├── ImplAAFTypeDefStream.h │ │ ├── ImplAAFTypeDefString.cpp │ │ ├── ImplAAFTypeDefString.h │ │ ├── ImplAAFTypeDefStrongObjRef.cpp │ │ ├── ImplAAFTypeDefStrongObjRef.h │ │ ├── ImplAAFTypeDefVariableArray.h │ │ ├── ImplAAFTypeDefVariableArry.cpp │ │ ├── ImplAAFTypeDefWeakObjRef.cpp │ │ ├── ImplAAFTypeDefWeakObjRef.h │ │ ├── ImplAAFTypeDefsGen.h │ │ ├── ImplAAFUID.h │ │ ├── ImplAAFVaryingValue.cpp │ │ ├── ImplAAFVaryingValue.h │ │ ├── ImplAAFWAVEDescriptor.cpp │ │ ├── ImplAAFWAVEDescriptor.h │ │ ├── ImplAAFWeakRefArrayValue.cpp │ │ ├── ImplAAFWeakRefArrayValue.h │ │ ├── ImplAAFWeakRefSetValue.cpp │ │ ├── ImplAAFWeakRefSetValue.h │ │ ├── ImplAAFWeakRefValue.cpp │ │ ├── ImplAAFWeakRefValue.h │ │ ├── ImplEnumAAFClassDefs.cpp │ │ ├── ImplEnumAAFClassDefs.h │ │ ├── ImplEnumAAFCodecDefs.cpp │ │ ├── ImplEnumAAFCodecDefs.h │ │ ├── ImplEnumAAFCodecFlavours.cpp │ │ ├── ImplEnumAAFCodecFlavours.h │ │ ├── ImplEnumAAFComponents.cpp │ │ ├── ImplEnumAAFComponents.h │ │ ├── ImplEnumAAFContainerDefs.cpp │ │ ├── ImplEnumAAFContainerDefs.h │ │ ├── ImplEnumAAFControlPoints.cpp │ │ ├── ImplEnumAAFControlPoints.h │ │ ├── ImplEnumAAFDataDefs.cpp │ │ ├── ImplEnumAAFDataDefs.h │ │ ├── ImplEnumAAFEssenceData.cpp │ │ ├── ImplEnumAAFEssenceData.h │ │ ├── ImplEnumAAFFileDescriptors.h │ │ ├── ImplEnumAAFFileEncodings.cpp │ │ ├── ImplEnumAAFFileEncodings.h │ │ ├── ImplEnumAAFIdentifications.cpp │ │ ├── ImplEnumAAFIdentifications.h │ │ ├── ImplEnumAAFInterpolateDefs.cpp │ │ ├── ImplEnumAAFInterpolationDefs.h │ │ ├── ImplEnumAAFKLVData.cpp │ │ ├── ImplEnumAAFKLVData.h │ │ ├── ImplEnumAAFKLVDataDefs.cpp │ │ ├── ImplEnumAAFKLVDataDefs.h │ │ ├── ImplEnumAAFLoadedPlugins.cpp │ │ ├── ImplEnumAAFLoadedPlugins.h │ │ ├── ImplEnumAAFLocators.cpp │ │ ├── ImplEnumAAFLocators.h │ │ ├── ImplEnumAAFMobSlots.cpp │ │ ├── ImplEnumAAFMobSlots.h │ │ ├── ImplEnumAAFMobs.cpp │ │ ├── ImplEnumAAFMobs.h │ │ ├── ImplEnumAAFOperationDefs.cpp │ │ ├── ImplEnumAAFOperationDefs.h │ │ ├── ImplEnumAAFParameterDefs.cpp │ │ ├── ImplEnumAAFParameterDefs.h │ │ ├── ImplEnumAAFParameters.cpp │ │ ├── ImplEnumAAFParameters.h │ │ ├── ImplEnumAAFPluginDefs.cpp │ │ ├── ImplEnumAAFPluginDefs.h │ │ ├── ImplEnumAAFPluginLocators.cpp │ │ ├── ImplEnumAAFPluginLocators.h │ │ ├── ImplEnumAAFProperties.cpp │ │ ├── ImplEnumAAFProperties.h │ │ ├── ImplEnumAAFPropertyDefs.cpp │ │ ├── ImplEnumAAFPropertyDefs.h │ │ ├── ImplEnumAAFPropertyValues.cpp │ │ ├── ImplEnumAAFPropertyValues.h │ │ ├── ImplEnumAAFRIFFChunks.h │ │ ├── ImplEnumAAFSegments.cpp │ │ ├── ImplEnumAAFSegments.h │ │ ├── ImplEnumAAFStorablePropVals.cpp │ │ ├── ImplEnumAAFStorablePropVals.h │ │ ├── ImplEnumAAFTaggedValueDefs.cpp │ │ ├── ImplEnumAAFTaggedValueDefs.h │ │ ├── ImplEnumAAFTaggedValues.cpp │ │ ├── ImplEnumAAFTaggedValues.h │ │ ├── ImplEnumAAFTypeDefs.cpp │ │ ├── ImplEnumAAFTypeDefs.h │ │ ├── aafErr.cpp │ │ ├── aafErr.h │ │ ├── aafTable.cpp │ │ └── aafTable.h └── xsd │ └── aafxml │ ├── README.txt │ ├── build-schema.bat │ ├── build-schema.sh │ ├── classdef.xsl │ ├── constraints.xsl │ ├── example │ ├── aaf.xsd │ ├── example.xml │ └── ns1.xsd │ ├── main.xsl │ ├── merge.xsl │ ├── metadict-20050803.xml │ ├── metadict.xsd │ ├── metadict2schema.xsd │ ├── normalise.xsl │ ├── propdef.xsl │ ├── typedef.xsl │ └── util.xsl ├── ss-impl └── ref │ └── h │ ├── ref.hxx │ ├── storage.h │ ├── tchar.h │ └── wchar.h ├── sss-impl └── include │ ├── SsrwInputSource.h │ ├── StructuredStorage.h │ └── Types.h ├── test ├── GNUmakefile └── com │ ├── ComFileExtensionTest │ ├── ComFileExtDevUtilVerifyTest.sh │ ├── ComFileExtensionTest.cpp │ └── GNUmakefile │ ├── ComFileKindTest │ ├── ComFileKindTest.cpp │ └── GNUmakefile │ ├── ComModTestAAF │ ├── AAFWideString.cpp │ ├── AAFWideString.h │ ├── CAAFModuleTest.cpp │ ├── CAAFModuleTest.h │ ├── ComModTestAAF.cpp │ ├── GNUmakefile │ ├── Laser.wav │ ├── ModuleTest.cpp │ ├── ModuleTest.h │ ├── ModuleTests │ │ ├── CAAFAES3PCMDescriptorTest.cpp │ │ ├── CAAFAIFCDescriptorTest.cpp │ │ ├── CAAFAuxiliaryDescriptorTest.cpp │ │ ├── CAAFBWFImportDescriptorTest.cpp │ │ ├── CAAFCDCIDescriptorTest.cpp │ │ ├── CAAFCachePageAllocatorTest.cpp │ │ ├── CAAFClassDefTest.cpp │ │ ├── CAAFCodecDefTest.cpp │ │ ├── CAAFCommentMarkerTest.cpp │ │ ├── CAAFComponentTest.cpp │ │ ├── CAAFCompositionMobTest.cpp │ │ ├── CAAFConstantValueTest.cpp │ │ ├── CAAFContainerDefTest.cpp │ │ ├── CAAFContentStorageTest.cpp │ │ ├── CAAFControlPointTest.cpp │ │ ├── CAAFDataDefTest.cpp │ │ ├── CAAFDataEssenceDescriptorTest.cpp │ │ ├── CAAFDefObjectTest.cpp │ │ ├── CAAFDescriptiveClipTest.cpp │ │ ├── CAAFDescriptiveFrameworkTest.cpp │ │ ├── CAAFDescriptiveMarkerTest.cpp │ │ ├── CAAFDescriptiveObjectTest.cpp │ │ ├── CAAFDictionaryTest.cpp │ │ ├── CAAFDigitalImageDescripTest.cpp │ │ ├── CAAFEdgecodeTest.cpp │ │ ├── CAAFEssenceAccessTest.cpp │ │ ├── CAAFEssenceDataTest.cpp │ │ ├── CAAFEssenceDescriptorTest.cpp │ │ ├── CAAFEssenceFormatTest.cpp │ │ ├── CAAFEssenceGroupTest.cpp │ │ ├── CAAFEssencePluginTest.cpp │ │ ├── CAAFEventMobSlotTest.cpp │ │ ├── CAAFEventTest.cpp │ │ ├── CAAFFileDescriptorTest.cpp │ │ ├── CAAFFileEncodingTest.cpp │ │ ├── CAAFFileTest.cpp │ │ ├── CAAFFileTest.h │ │ ├── CAAFFillerTest.cpp │ │ ├── CAAFFilmDescriptorTest.cpp │ │ ├── CAAFFindSourceInfoTest.cpp │ │ ├── CAAFGPITriggerTest.cpp │ │ ├── CAAFGetFileBitsTest.cpp │ │ ├── CAAFHTMLClipTest.cpp │ │ ├── CAAFHTMLDescriptorTest.cpp │ │ ├── CAAFHeaderTest.cpp │ │ ├── CAAFIdentificationTest.cpp │ │ ├── CAAFImportDescriptorTest.cpp │ │ ├── CAAFInterpolationDefTest.cpp │ │ ├── CAAFKLVDataDefinitionTest.cpp │ │ ├── CAAFKLVDataTest.cpp │ │ ├── CAAFLocatorTest.cpp │ │ ├── CAAFMPEGVideoDescriptorTest.cpp │ │ ├── CAAFMasterMobTest.cpp │ │ ├── CAAFMetaDefinitionTest.cpp │ │ ├── CAAFMobSlotTest.cpp │ │ ├── CAAFMobTest.cpp │ │ ├── CAAFMultipleDescriptorTest.cpp │ │ ├── CAAFNestedScopeTest.cpp │ │ ├── CAAFNetworkLocatorTest.cpp │ │ ├── CAAFObjectTest.cpp │ │ ├── CAAFOperationDefTest.cpp │ │ ├── CAAFOperationGroupTest.cpp │ │ ├── CAAFPCMDescriptorTest.cpp │ │ ├── CAAFParameterDefTest.cpp │ │ ├── CAAFParameterTest.cpp │ │ ├── CAAFPhysicalDescriptorTest.cpp │ │ ├── CAAFPlainEssenceDataTest.cpp │ │ ├── CAAFPlainStreamDataTest.cpp │ │ ├── CAAFPluginDefTest.cpp │ │ ├── CAAFPluginManagerTest.cpp │ │ ├── CAAFPropertyDefTest.cpp │ │ ├── CAAFPropertyTest.cpp │ │ ├── CAAFPropertyValueTest.cpp │ │ ├── CAAFPulldownTest.cpp │ │ ├── CAAFRGBADescriptorTest.cpp │ │ ├── CAAFRIFFChunkTest.cpp │ │ ├── CAAFRandomFileTest.cpp │ │ ├── CAAFRandomRawStorageTest.cpp │ │ ├── CAAFRawStorageTest.cpp │ │ ├── CAAFRecordingDescriptorTest.cpp │ │ ├── CAAFScopeReferenceTest.cpp │ │ ├── CAAFSegmentTest.cpp │ │ ├── CAAFSelectorTest.cpp │ │ ├── CAAFSequenceTest.cpp │ │ ├── CAAFSetFileBitsTest.cpp │ │ ├── CAAFSoundDescriptorTest.cpp │ │ ├── CAAFSourceClipTest.cpp │ │ ├── CAAFSourceMobTest.cpp │ │ ├── CAAFSourceReferenceTest.cpp │ │ ├── CAAFStaticMobSlotTest.cpp │ │ ├── CAAFTIFFDescriptorTest.cpp │ │ ├── CAAFTaggedValueDefinitionTest.cpp │ │ ├── CAAFTaggedValueTest.cpp │ │ ├── CAAFTapeDescriptorTest.cpp │ │ ├── CAAFTextClipTest.cpp │ │ ├── CAAFTextLocatorTest.cpp │ │ ├── CAAFTimecodeStream12MTest.cpp │ │ ├── CAAFTimecodeStreamTest.cpp │ │ ├── CAAFTimecodeTest.cpp │ │ ├── CAAFTimelineMobSlotTest.cpp │ │ ├── CAAFTransitionTest.cpp │ │ ├── CAAFTypeDefCharacterTest.cpp │ │ ├── CAAFTypeDefEnumTest.cpp │ │ ├── CAAFTypeDefExtEnumTest.cpp │ │ ├── CAAFTypeDefFixedArrayTest.cpp │ │ ├── CAAFTypeDefIndirectTest.cpp │ │ ├── CAAFTypeDefIntTest.cpp │ │ ├── CAAFTypeDefObjectRefTest.cpp │ │ ├── CAAFTypeDefOpaqueTest.cpp │ │ ├── CAAFTypeDefRecordTest.cpp │ │ ├── CAAFTypeDefRenameTest.cpp │ │ ├── CAAFTypeDefSetTest.cpp │ │ ├── CAAFTypeDefStreamTest.cpp │ │ ├── CAAFTypeDefStringTest.cpp │ │ ├── CAAFTypeDefStrongObjRefTest.cpp │ │ ├── CAAFTypeDefTest.cpp │ │ ├── CAAFTypeDefVariableArryTest.cpp │ │ ├── CAAFTypeDefWeakObjRefTest.cpp │ │ ├── CAAFVaryingValueTest.cpp │ │ ├── CAAFWAVEDescriptorTest.cpp │ │ ├── CEnumAAFClassDefsTest.cpp │ │ ├── CEnumAAFCodecDefsTest.cpp │ │ ├── CEnumAAFCodecFlavoursTest.cpp │ │ ├── CEnumAAFComponentsTest.cpp │ │ ├── CEnumAAFContainerDefsTest.cpp │ │ ├── CEnumAAFControlPointsTest.cpp │ │ ├── CEnumAAFDataDefsTest.cpp │ │ ├── CEnumAAFEssenceDataTest.cpp │ │ ├── CEnumAAFFileDescriptorsTest.cpp │ │ ├── CEnumAAFFileEncodingsTest.cpp │ │ ├── CEnumAAFIdentificationsTest.cpp │ │ ├── CEnumAAFInterpolateDefsTest.cpp │ │ ├── CEnumAAFKLVDataDefsTest.cpp │ │ ├── CEnumAAFKLVDataTest.cpp │ │ ├── CEnumAAFLoadedPluginsTest.cpp │ │ ├── CEnumAAFLocatorsTest.cpp │ │ ├── CEnumAAFMobSlotsTest.cpp │ │ ├── CEnumAAFMobsTest.cpp │ │ ├── CEnumAAFOperationDefsTest.cpp │ │ ├── CEnumAAFParameterDefsTest.cpp │ │ ├── CEnumAAFParametersTest.cpp │ │ ├── CEnumAAFPluginDescTest.cpp │ │ ├── CEnumAAFPluginLocatorsTest.cpp │ │ ├── CEnumAAFPropertiesTest.cpp │ │ ├── CEnumAAFPropertyDefsTest.cpp │ │ ├── CEnumAAFPropertyValuesTest.cpp │ │ ├── CEnumAAFRIFFChunksTest.cpp │ │ ├── CEnumAAFSegmentsTest.cpp │ │ ├── CEnumAAFTaggedValueDefsTest.cpp │ │ ├── CEnumAAFTaggedValuesTest.cpp │ │ ├── CEnumAAFTypeDefsTest.cpp │ │ ├── CEnumeratorTest.h │ │ ├── EssenceTestData.h │ │ ├── GNUmakefile │ │ ├── ModuleTestsCommon.cpp │ │ └── ModuleTestsCommon.h │ └── utf8.cpp │ ├── CreateSequence │ ├── CreateSequence.cpp │ └── GNUmakefile │ ├── EssenceAccess │ ├── EssenceAccess.cpp │ └── GNUmakefile │ ├── GNUmakefile │ ├── MemoryLeakTest │ ├── GNUmakefile │ ├── MemoryLeakTest.cpp │ ├── README.txt │ ├── RealWorldSample1.aaf │ └── overlaps.supp │ ├── MetaModelVerification │ ├── GNUmakefile │ ├── MetaModelVerification.cpp │ ├── MetaModelVerification.h │ └── ResultCodes.h │ ├── MultiGenTest │ ├── GNUmakefile │ ├── MultiGenTest.cpp │ ├── MultiGenTest.h │ ├── MultiGenTest.pl │ ├── MultiGenTests │ │ ├── AddMasterMob.cpp │ │ ├── EssenceOp.cpp │ │ ├── FileOp.cpp │ │ ├── FindMasterMob.cpp │ │ ├── GNUmakefile │ │ ├── LoadLib.cpp │ │ ├── MobOp.cpp │ │ ├── MultiGenCommon.cpp │ │ ├── MultiGenCommon.h │ │ ├── SlotOp.cpp │ │ └── noop.cpp │ ├── ReadMe.html │ ├── archive │ │ ├── schemasoft │ │ │ └── schemasoft_cfg.pl │ │ └── v102_vs_V11 │ │ │ ├── mgt.9April.out.gz │ │ │ └── v102_vs_v11_cfg.pl │ └── samples │ │ ├── sample_cfg.pl │ │ └── sample_test_log.txt.gz │ ├── OpenExistingModify │ ├── AAFHeaderTest_v102.aaf │ ├── GNUmakefile │ └── OpenExistingModify.cpp │ ├── ResultToTextTest │ ├── GNUmakefile │ └── ResultToTextTest.cpp │ ├── ScaleTest │ ├── 1frame.dv │ ├── GNUmakefile │ ├── README.txt │ ├── ScaleTest.cpp │ ├── createtest.sh │ └── runaaftest.sh │ ├── UTF16StoredString │ ├── GNUmakefile │ └── UTF16StoredString.cpp │ ├── UTF8FileNameTest │ ├── GNUmakefile │ ├── UTF8FileNameTest.cpp │ └── utf8.cpp │ └── XMLStoredFormat │ ├── GNUmakefile │ ├── TestCharacter.cpp │ ├── TestEnum.cpp │ ├── TestExampleFiles.cpp │ ├── TestExtEnum.cpp │ ├── TestFixedArray.cpp │ ├── TestIndirect.cpp │ ├── TestInteger.cpp │ ├── TestOpaque.cpp │ ├── TestRecord.cpp │ ├── TestRename.cpp │ ├── TestSet.cpp │ ├── TestStream.cpp │ ├── TestString.cpp │ ├── TestVarArray.cpp │ ├── TestWeakRef.cpp │ ├── XMLStoredFormatTest.cpp │ ├── XMLStoredFormatTest.h │ └── input │ ├── AVID_Newscutter_sequence_be.xml │ ├── AVID_Newscutter_sequence_le.xml │ ├── axExample_be.xml │ ├── axExample_le.xml │ ├── axExample_stream0 │ ├── axExample_stream1 │ ├── axExample_stream2 │ ├── axExample_stream3 │ ├── testCharacter.xml │ ├── testEnum.xml │ ├── testExtEnum.xml │ ├── testFixedArray.xml │ ├── testIndirect.xml │ ├── testInteger.xml │ ├── testOpaque.xml │ ├── testRecord.xml │ ├── testRename.xml │ ├── testSet.xml │ ├── testStream.xml │ ├── testStream_empty │ ├── testStream_simple │ ├── testString.xml │ ├── testVarArray.xml │ └── testWeakRef.xml ├── unixaafsdk.mak └── update.ksh /AAFPPCDarwinSDK/g++/Scripts/README: -------------------------------------------------------------------------------- 1 | These scripts are helpers for various build targets. 2 | 3 | -------------------------------------------------------------------------------- /AAFSystemTest.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFSystemTest.ksh -------------------------------------------------------------------------------- /AAFWinSDK/AAFAnalyzer/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/AAFAnalyzer/README.TXT -------------------------------------------------------------------------------- /AAFWinSDK/vs10/AAFDebug_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs10/AAFDebug_x64.props -------------------------------------------------------------------------------- /AAFWinSDK/vs10/AAFRelease.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs10/AAFRelease.props -------------------------------------------------------------------------------- /AAFWinSDK/vs10/AAFWinSDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs10/AAFWinSDK.sln -------------------------------------------------------------------------------- /AAFWinSDK/vs10/MakeSDK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs10/MakeSDK.vcxproj -------------------------------------------------------------------------------- /AAFWinSDK/vs10/include/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs10/include/resource.h -------------------------------------------------------------------------------- /AAFWinSDK/vs10/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs10/update.bat -------------------------------------------------------------------------------- /AAFWinSDK/vs10/update.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs10/update.cmd -------------------------------------------------------------------------------- /AAFWinSDK/vs7/AAFWinSDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs7/AAFWinSDK.sln -------------------------------------------------------------------------------- /AAFWinSDK/vs7/MakeSDK.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs7/MakeSDK.vcproj -------------------------------------------------------------------------------- /AAFWinSDK/vs7/include/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs7/include/resource.h -------------------------------------------------------------------------------- /AAFWinSDK/vs7/sss-impl/ssrw_c.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs7/sss-impl/ssrw_c.lib -------------------------------------------------------------------------------- /AAFWinSDK/vs7/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs7/update.bat -------------------------------------------------------------------------------- /AAFWinSDK/vs7/update.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs7/update.cmd -------------------------------------------------------------------------------- /AAFWinSDK/vs7/win32aafsdk.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs7/win32aafsdk.mak -------------------------------------------------------------------------------- /AAFWinSDK/vs8/AAFWinSDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs8/AAFWinSDK.sln -------------------------------------------------------------------------------- /AAFWinSDK/vs8/MakeSDK.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs8/MakeSDK.vcproj -------------------------------------------------------------------------------- /AAFWinSDK/vs8/include/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs8/include/resource.h -------------------------------------------------------------------------------- /AAFWinSDK/vs8/sss-impl/ssrw_c.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs8/sss-impl/ssrw_c.lib -------------------------------------------------------------------------------- /AAFWinSDK/vs8/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs8/update.bat -------------------------------------------------------------------------------- /AAFWinSDK/vs8/update.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs8/update.cmd -------------------------------------------------------------------------------- /AAFWinSDK/vs8/win32aafsdk.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs8/win32aafsdk.mak -------------------------------------------------------------------------------- /AAFWinSDK/vs9/AAFWinSDK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs9/AAFWinSDK.sln -------------------------------------------------------------------------------- /AAFWinSDK/vs9/MakeSDK.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs9/MakeSDK.vcproj -------------------------------------------------------------------------------- /AAFWinSDK/vs9/include/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs9/include/resource.h -------------------------------------------------------------------------------- /AAFWinSDK/vs9/sss-impl/ssrw_c.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs9/sss-impl/ssrw_c.lib -------------------------------------------------------------------------------- /AAFWinSDK/vs9/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs9/update.bat -------------------------------------------------------------------------------- /AAFWinSDK/vs9/update.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs9/update.cmd -------------------------------------------------------------------------------- /AAFWinSDK/vs9/win32aafsdk.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/AAFWinSDK/vs9/win32aafsdk.mak -------------------------------------------------------------------------------- /DevUtils/Dump/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/DevUtils/Dump/GNUmakefile -------------------------------------------------------------------------------- /DevUtils/Dump/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/DevUtils/Dump/dump.cpp -------------------------------------------------------------------------------- /DevUtils/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/DevUtils/GNUmakefile -------------------------------------------------------------------------------- /DevUtils/MXFDump/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/DevUtils/MXFDump/GNUmakefile -------------------------------------------------------------------------------- /DevUtils/MXFDump/MXFDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/DevUtils/MXFDump/MXFDump.cpp -------------------------------------------------------------------------------- /DevUtils/MXFDump/MXFLabels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/DevUtils/MXFDump/MXFLabels.h -------------------------------------------------------------------------------- /EfficiencyStats.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/EfficiencyStats.ksh -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LEGAL/AAFSDKPSL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/LEGAL/AAFSDKPSL.TXT -------------------------------------------------------------------------------- /README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/README.TXT -------------------------------------------------------------------------------- /ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ReleaseNotes.txt -------------------------------------------------------------------------------- /RunModTestAndExamples.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/RunModTestAndExamples.bash -------------------------------------------------------------------------------- /RunModTestAndExamples.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/RunModTestAndExamples.ksh -------------------------------------------------------------------------------- /Utilities/AAFAnalyzer/Doc/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AAFAnalyzer/Doc/INSTALL -------------------------------------------------------------------------------- /Utilities/AAFAnalyzer/Doc/ToDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AAFAnalyzer/Doc/ToDo.txt -------------------------------------------------------------------------------- /Utilities/AAFAnalyzer/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AAFAnalyzer/GNUmakefile -------------------------------------------------------------------------------- /Utilities/AafOmf/AAFDomainUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/AAFDomainUtils.h -------------------------------------------------------------------------------- /Utilities/AafOmf/AAFException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/AAFException.cpp -------------------------------------------------------------------------------- /Utilities/AafOmf/AAFException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/AAFException.h -------------------------------------------------------------------------------- /Utilities/AafOmf/Aaf2Omf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/Aaf2Omf.cpp -------------------------------------------------------------------------------- /Utilities/AafOmf/Aaf2Omf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/Aaf2Omf.h -------------------------------------------------------------------------------- /Utilities/AafOmf/AafOmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/AafOmf.cpp -------------------------------------------------------------------------------- /Utilities/AafOmf/AafOmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/AafOmf.h -------------------------------------------------------------------------------- /Utilities/AafOmf/AafOmfMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/AafOmfMain.cpp -------------------------------------------------------------------------------- /Utilities/AafOmf/Assertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/Assertion.cpp -------------------------------------------------------------------------------- /Utilities/AafOmf/Assertion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/Assertion.h -------------------------------------------------------------------------------- /Utilities/AafOmf/AutoRelease.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/AutoRelease.h -------------------------------------------------------------------------------- /Utilities/AafOmf/EffectTranslate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/EffectTranslate.h -------------------------------------------------------------------------------- /Utilities/AafOmf/ExceptionBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/ExceptionBase.cpp -------------------------------------------------------------------------------- /Utilities/AafOmf/ExceptionBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/ExceptionBase.h -------------------------------------------------------------------------------- /Utilities/AafOmf/Extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/Extensions.cpp -------------------------------------------------------------------------------- /Utilities/AafOmf/Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/Extensions.h -------------------------------------------------------------------------------- /Utilities/AafOmf/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/GNUmakefile -------------------------------------------------------------------------------- /Utilities/AafOmf/LoggerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/LoggerBase.cpp -------------------------------------------------------------------------------- /Utilities/AafOmf/LoggerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/LoggerBase.h -------------------------------------------------------------------------------- /Utilities/AafOmf/OMFDomainUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/OMFDomainUtils.h -------------------------------------------------------------------------------- /Utilities/AafOmf/OMFException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/OMFException.cpp -------------------------------------------------------------------------------- /Utilities/AafOmf/OMFException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/OMFException.h -------------------------------------------------------------------------------- /Utilities/AafOmf/Omf2Aaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/Omf2Aaf.cpp -------------------------------------------------------------------------------- /Utilities/AafOmf/Omf2Aaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/Omf2Aaf.h -------------------------------------------------------------------------------- /Utilities/AafOmf/StreamLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/StreamLogger.cpp -------------------------------------------------------------------------------- /Utilities/AafOmf/StreamLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/AafOmf/StreamLogger.h -------------------------------------------------------------------------------- /Utilities/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/GNUmakefile -------------------------------------------------------------------------------- /Utilities/aaf2xtl/doc/AifTree.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aaf2xtl/doc/AifTree.vsd -------------------------------------------------------------------------------- /Utilities/aaf2xtl/doc/HowTo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aaf2xtl/doc/HowTo.txt -------------------------------------------------------------------------------- /Utilities/aaf2xtl/doc/aaf2xtl.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aaf2xtl/doc/aaf2xtl.vsd -------------------------------------------------------------------------------- /Utilities/aafdump/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aafdump/GNUmakefile -------------------------------------------------------------------------------- /Utilities/aafdump/aafdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aafdump/aafdump.cpp -------------------------------------------------------------------------------- /Utilities/aafembed/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aafembed/GNUmakefile -------------------------------------------------------------------------------- /Utilities/aafembed/aafembed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aafembed/aafembed.cpp -------------------------------------------------------------------------------- /Utilities/aafembed/avilib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aafembed/avilib.c -------------------------------------------------------------------------------- /Utilities/aafembed/avilib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aafembed/avilib.h -------------------------------------------------------------------------------- /Utilities/aafextract/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aafextract/GNUmakefile -------------------------------------------------------------------------------- /Utilities/aaffmtconv/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aaffmtconv/GNUmakefile -------------------------------------------------------------------------------- /Utilities/aafviewer/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aafviewer/COPYING -------------------------------------------------------------------------------- /Utilities/aafviewer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aafviewer/README -------------------------------------------------------------------------------- /Utilities/aafviewer/lib/zvtm.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aafviewer/lib/zvtm.jar -------------------------------------------------------------------------------- /Utilities/aafviewer/xerces.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aafviewer/xerces.license -------------------------------------------------------------------------------- /Utilities/aafviewer/zvtm.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/aafviewer/zvtm.license -------------------------------------------------------------------------------- /Utilities/comrules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/comrules.mk -------------------------------------------------------------------------------- /Utilities/eli2aaf/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/eli2aaf/COPYING -------------------------------------------------------------------------------- /Utilities/eli2aaf/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/eli2aaf/GNUmakefile -------------------------------------------------------------------------------- /Utilities/eli2aaf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/eli2aaf/README -------------------------------------------------------------------------------- /Utilities/eli2aaf/eli2aaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/Utilities/eli2aaf/eli2aaf.cpp -------------------------------------------------------------------------------- /bin/CONTENTS.D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/bin/CONTENTS.D -------------------------------------------------------------------------------- /bin/HTML.FMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/bin/HTML.FMT -------------------------------------------------------------------------------- /dist/CreateDistribution.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dist/CreateDistribution.bash -------------------------------------------------------------------------------- /dist/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dist/GNUmakefile -------------------------------------------------------------------------------- /dist/release-files.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dist/release-files.darwin -------------------------------------------------------------------------------- /dist/release-files.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dist/release-files.unix -------------------------------------------------------------------------------- /dist/release-files.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dist/release-files.win -------------------------------------------------------------------------------- /dist/sdk-files.darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dist/sdk-files.darwin -------------------------------------------------------------------------------- /dist/sdk-files.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dist/sdk-files.unix -------------------------------------------------------------------------------- /dist/sdk-files.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dist/sdk-files.win -------------------------------------------------------------------------------- /doc/AAFProjectFAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/doc/AAFProjectFAQ.html -------------------------------------------------------------------------------- /doc/aafcontainerspec-v1.0.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/doc/aafcontainerspec-v1.0.1.pdf -------------------------------------------------------------------------------- /doc/aafeditprotocol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/doc/aafeditprotocol.pdf -------------------------------------------------------------------------------- /doc/aafobjectspec-v1.0.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/doc/aafobjectspec-v1.0.1.pdf -------------------------------------------------------------------------------- /doc/aafobjectspec-v1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/doc/aafobjectspec-v1.1.pdf -------------------------------------------------------------------------------- /doc/aafstoredformatspec-v1.0.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/doc/aafstoredformatspec-v1.0.1.pdf -------------------------------------------------------------------------------- /dodo/AAFAES3PCMDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFAES3PCMDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFAES3PCMDescriptor2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFAES3PCMDescriptor2.dod -------------------------------------------------------------------------------- /dodo/AAFAIFCDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFAIFCDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFAuxiliaryDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFAuxiliaryDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFBWFImportDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFBWFImportDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFCDCIDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFCDCIDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFCDCIDescriptor2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFCDCIDescriptor2.dod -------------------------------------------------------------------------------- /dodo/AAFCachePageAllocator.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFCachePageAllocator.dod -------------------------------------------------------------------------------- /dodo/AAFClassDef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFClassDef.dod -------------------------------------------------------------------------------- /dodo/AAFClassExtension.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFClassExtension.dod -------------------------------------------------------------------------------- /dodo/AAFCodecDef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFCodecDef.dod -------------------------------------------------------------------------------- /dodo/AAFCommentMarker.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFCommentMarker.dod -------------------------------------------------------------------------------- /dodo/AAFComponent.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFComponent.dod -------------------------------------------------------------------------------- /dodo/AAFComponent2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFComponent2.dod -------------------------------------------------------------------------------- /dodo/AAFCompositionMob.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFCompositionMob.dod -------------------------------------------------------------------------------- /dodo/AAFCompositionMob2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFCompositionMob2.dod -------------------------------------------------------------------------------- /dodo/AAFConstantValue.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFConstantValue.dod -------------------------------------------------------------------------------- /dodo/AAFContainerDef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFContainerDef.dod -------------------------------------------------------------------------------- /dodo/AAFContentStorage.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFContentStorage.dod -------------------------------------------------------------------------------- /dodo/AAFContext.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFContext.dod -------------------------------------------------------------------------------- /dodo/AAFControlPoint.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFControlPoint.dod -------------------------------------------------------------------------------- /dodo/AAFDataDef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDataDef.dod -------------------------------------------------------------------------------- /dodo/AAFDataDef2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDataDef2.dod -------------------------------------------------------------------------------- /dodo/AAFDataDef3.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDataDef3.dod -------------------------------------------------------------------------------- /dodo/AAFDataEssenceDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDataEssenceDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFDefObject.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDefObject.dod -------------------------------------------------------------------------------- /dodo/AAFDescriptiveClip.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDescriptiveClip.dod -------------------------------------------------------------------------------- /dodo/AAFDescriptiveFramework.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDescriptiveFramework.dod -------------------------------------------------------------------------------- /dodo/AAFDescriptiveMarker.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDescriptiveMarker.dod -------------------------------------------------------------------------------- /dodo/AAFDescriptiveObject.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDescriptiveObject.dod -------------------------------------------------------------------------------- /dodo/AAFDiagnosticOutput.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDiagnosticOutput.dod -------------------------------------------------------------------------------- /dodo/AAFDictionary.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDictionary.dod -------------------------------------------------------------------------------- /dodo/AAFDictionary2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDictionary2.dod -------------------------------------------------------------------------------- /dodo/AAFDigitalImageDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFDigitalImageDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFEdgecode.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEdgecode.dod -------------------------------------------------------------------------------- /dodo/AAFEndian.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEndian.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceAccess.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceAccess.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceCodec.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceCodec.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceCodec2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceCodec2.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceCodec3.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceCodec3.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceContainer.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceContainer.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceData.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceData.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceData2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceData2.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceDataEx.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceDataEx.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceDataStream.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceDataStream.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceDataStream2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceDataStream2.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceFormat.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceFormat.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceGroup.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceGroup.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceMultiAccess.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceMultiAccess.dod -------------------------------------------------------------------------------- /dodo/AAFEssencePlugin.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssencePlugin.dod -------------------------------------------------------------------------------- /dodo/AAFEssenceStream.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEssenceStream.dod -------------------------------------------------------------------------------- /dodo/AAFEvent.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEvent.dod -------------------------------------------------------------------------------- /dodo/AAFEventMobSlot.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEventMobSlot.dod -------------------------------------------------------------------------------- /dodo/AAFEventMobSlot2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFEventMobSlot2.dod -------------------------------------------------------------------------------- /dodo/AAFFile.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFFile.dod -------------------------------------------------------------------------------- /dodo/AAFFileDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFFileDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFFileDescriptor2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFFileDescriptor2.dod -------------------------------------------------------------------------------- /dodo/AAFFileEncoding.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFFileEncoding.dod -------------------------------------------------------------------------------- /dodo/AAFFiller.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFFiller.dod -------------------------------------------------------------------------------- /dodo/AAFFilmDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFFilmDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFFindSourceInfo.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFFindSourceInfo.dod -------------------------------------------------------------------------------- /dodo/AAFGPITrigger.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFGPITrigger.dod -------------------------------------------------------------------------------- /dodo/AAFGetFileBits.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFGetFileBits.dod -------------------------------------------------------------------------------- /dodo/AAFHTMLClip.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFHTMLClip.dod -------------------------------------------------------------------------------- /dodo/AAFHTMLDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFHTMLDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFHeader.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFHeader.dod -------------------------------------------------------------------------------- /dodo/AAFHeader2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFHeader2.dod -------------------------------------------------------------------------------- /dodo/AAFIdentification.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFIdentification.dod -------------------------------------------------------------------------------- /dodo/AAFImportDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFImportDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFInterpolationDef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFInterpolationDef.dod -------------------------------------------------------------------------------- /dodo/AAFInterpolator.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFInterpolator.dod -------------------------------------------------------------------------------- /dodo/AAFKLVData.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFKLVData.dod -------------------------------------------------------------------------------- /dodo/AAFKLVDataDefinition.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFKLVDataDefinition.dod -------------------------------------------------------------------------------- /dodo/AAFKLVStreamParameters.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFKLVStreamParameters.dod -------------------------------------------------------------------------------- /dodo/AAFLocator.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFLocator.dod -------------------------------------------------------------------------------- /dodo/AAFMPEGVideoDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFMPEGVideoDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFMasterMob.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFMasterMob.dod -------------------------------------------------------------------------------- /dodo/AAFMasterMob2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFMasterMob2.dod -------------------------------------------------------------------------------- /dodo/AAFMasterMob3.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFMasterMob3.dod -------------------------------------------------------------------------------- /dodo/AAFMasterMobEx.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFMasterMobEx.dod -------------------------------------------------------------------------------- /dodo/AAFMetaDefinition.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFMetaDefinition.dod -------------------------------------------------------------------------------- /dodo/AAFMetaDictionary.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFMetaDictionary.dod -------------------------------------------------------------------------------- /dodo/AAFMob.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFMob.dod -------------------------------------------------------------------------------- /dodo/AAFMob2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFMob2.dod -------------------------------------------------------------------------------- /dodo/AAFMobSlot.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFMobSlot.dod -------------------------------------------------------------------------------- /dodo/AAFModule.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFModule.dod -------------------------------------------------------------------------------- /dodo/AAFMultiEssenceCodec.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFMultiEssenceCodec.dod -------------------------------------------------------------------------------- /dodo/AAFMultipleDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFMultipleDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFNestedScope.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFNestedScope.dod -------------------------------------------------------------------------------- /dodo/AAFNetworkLocator.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFNetworkLocator.dod -------------------------------------------------------------------------------- /dodo/AAFObject.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFObject.dod -------------------------------------------------------------------------------- /dodo/AAFOperationDef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFOperationDef.dod -------------------------------------------------------------------------------- /dodo/AAFOperationGroup.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFOperationGroup.dod -------------------------------------------------------------------------------- /dodo/AAFPCMDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFPCMDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFParameter.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFParameter.dod -------------------------------------------------------------------------------- /dodo/AAFParameterDef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFParameterDef.dod -------------------------------------------------------------------------------- /dodo/AAFPhysicalDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFPhysicalDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFPlainEssenceData.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFPlainEssenceData.dod -------------------------------------------------------------------------------- /dodo/AAFPlainStreamData.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFPlainStreamData.dod -------------------------------------------------------------------------------- /dodo/AAFPlugin.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFPlugin.dod -------------------------------------------------------------------------------- /dodo/AAFPluginDef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFPluginDef.dod -------------------------------------------------------------------------------- /dodo/AAFPluginManager.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFPluginManager.dod -------------------------------------------------------------------------------- /dodo/AAFPluginTypes.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFPluginTypes.dod -------------------------------------------------------------------------------- /dodo/AAFProgress.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFProgress.dod -------------------------------------------------------------------------------- /dodo/AAFPropValData.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFPropValData.dod -------------------------------------------------------------------------------- /dodo/AAFProperty.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFProperty.dod -------------------------------------------------------------------------------- /dodo/AAFPropertyDef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFPropertyDef.dod -------------------------------------------------------------------------------- /dodo/AAFPropertyValue.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFPropertyValue.dod -------------------------------------------------------------------------------- /dodo/AAFPulldown.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFPulldown.dod -------------------------------------------------------------------------------- /dodo/AAFRGBADescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFRGBADescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFRGBADescriptor2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFRGBADescriptor2.dod -------------------------------------------------------------------------------- /dodo/AAFRIFFChunk.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFRIFFChunk.dod -------------------------------------------------------------------------------- /dodo/AAFRandomFile.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFRandomFile.dod -------------------------------------------------------------------------------- /dodo/AAFRandomRawStorage.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFRandomRawStorage.dod -------------------------------------------------------------------------------- /dodo/AAFRawStorage.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFRawStorage.dod -------------------------------------------------------------------------------- /dodo/AAFRecordingDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFRecordingDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFRoot.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFRoot.dod -------------------------------------------------------------------------------- /dodo/AAFScopeReference.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFScopeReference.dod -------------------------------------------------------------------------------- /dodo/AAFSearchSource.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFSearchSource.dod -------------------------------------------------------------------------------- /dodo/AAFSegment.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFSegment.dod -------------------------------------------------------------------------------- /dodo/AAFSelector.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFSelector.dod -------------------------------------------------------------------------------- /dodo/AAFSequence.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFSequence.dod -------------------------------------------------------------------------------- /dodo/AAFSetFileBits.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFSetFileBits.dod -------------------------------------------------------------------------------- /dodo/AAFSoundDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFSoundDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFSourceClip.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFSourceClip.dod -------------------------------------------------------------------------------- /dodo/AAFSourceMob.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFSourceMob.dod -------------------------------------------------------------------------------- /dodo/AAFSourceReference.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFSourceReference.dod -------------------------------------------------------------------------------- /dodo/AAFSourceReference2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFSourceReference2.dod -------------------------------------------------------------------------------- /dodo/AAFStaticMobSlot.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFStaticMobSlot.dod -------------------------------------------------------------------------------- /dodo/AAFStreamAccess.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFStreamAccess.dod -------------------------------------------------------------------------------- /dodo/AAFStreamPropertyValue.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFStreamPropertyValue.dod -------------------------------------------------------------------------------- /dodo/AAFStrongRefArrayValue.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFStrongRefArrayValue.dod -------------------------------------------------------------------------------- /dodo/AAFStrongRefSetValue.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFStrongRefSetValue.dod -------------------------------------------------------------------------------- /dodo/AAFStrongRefValue.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFStrongRefValue.dod -------------------------------------------------------------------------------- /dodo/AAFTIFFDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTIFFDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFTaggedValue.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTaggedValue.dod -------------------------------------------------------------------------------- /dodo/AAFTaggedValueDefinition.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTaggedValueDefinition.dod -------------------------------------------------------------------------------- /dodo/AAFTapeDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTapeDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFTextClip.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTextClip.dod -------------------------------------------------------------------------------- /dodo/AAFTextLocator.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTextLocator.dod -------------------------------------------------------------------------------- /dodo/AAFTimecode.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTimecode.dod -------------------------------------------------------------------------------- /dodo/AAFTimecodeStream.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTimecodeStream.dod -------------------------------------------------------------------------------- /dodo/AAFTimecodeStream12M.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTimecodeStream12M.dod -------------------------------------------------------------------------------- /dodo/AAFTimelineMobSlot.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTimelineMobSlot.dod -------------------------------------------------------------------------------- /dodo/AAFTimelineMobSlot2.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTimelineMobSlot2.dod -------------------------------------------------------------------------------- /dodo/AAFTransition.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTransition.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDef.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefCharacter.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefCharacter.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefEnum.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefEnum.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefExtEnum.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefExtEnum.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefFixedArray.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefFixedArray.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefIndirect.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefIndirect.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefInt.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefInt.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefObjectRef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefObjectRef.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefOpaque.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefOpaque.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefRecord.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefRecord.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefRename.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefRename.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefSet.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefSet.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefStream.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefStream.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefStream3.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefStream3.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefStreamEx.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefStreamEx.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefString.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefString.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefStrongObjRef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefStrongObjRef.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefVariableArray.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefVariableArray.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefVariableArrayEx.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefVariableArrayEx.dod -------------------------------------------------------------------------------- /dodo/AAFTypeDefWeakObjRef.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypeDefWeakObjRef.dod -------------------------------------------------------------------------------- /dodo/AAFTypes.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFTypes.dod -------------------------------------------------------------------------------- /dodo/AAFVaryingValue.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFVaryingValue.dod -------------------------------------------------------------------------------- /dodo/AAFWAVEDescriptor.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFWAVEDescriptor.dod -------------------------------------------------------------------------------- /dodo/AAFWeakRefArrayValue.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFWeakRefArrayValue.dod -------------------------------------------------------------------------------- /dodo/AAFWeakRefSetValue.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFWeakRefSetValue.dod -------------------------------------------------------------------------------- /dodo/AAFWeakRefValue.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/AAFWeakRefValue.dod -------------------------------------------------------------------------------- /dodo/CopyrightMessage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/CopyrightMessage.txt -------------------------------------------------------------------------------- /dodo/DelTargets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/DelTargets.sh -------------------------------------------------------------------------------- /dodo/EnumAAFClassDefs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFClassDefs.dod -------------------------------------------------------------------------------- /dodo/EnumAAFCodecDefs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFCodecDefs.dod -------------------------------------------------------------------------------- /dodo/EnumAAFCodecFlavours.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFCodecFlavours.dod -------------------------------------------------------------------------------- /dodo/EnumAAFComponents.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFComponents.dod -------------------------------------------------------------------------------- /dodo/EnumAAFContainerDefs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFContainerDefs.dod -------------------------------------------------------------------------------- /dodo/EnumAAFControlPoints.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFControlPoints.dod -------------------------------------------------------------------------------- /dodo/EnumAAFDataDefs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFDataDefs.dod -------------------------------------------------------------------------------- /dodo/EnumAAFEssenceData.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFEssenceData.dod -------------------------------------------------------------------------------- /dodo/EnumAAFFileDescriptors.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFFileDescriptors.dod -------------------------------------------------------------------------------- /dodo/EnumAAFFileEncodings.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFFileEncodings.dod -------------------------------------------------------------------------------- /dodo/EnumAAFIdentifications.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFIdentifications.dod -------------------------------------------------------------------------------- /dodo/EnumAAFInterpolationDefs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFInterpolationDefs.dod -------------------------------------------------------------------------------- /dodo/EnumAAFKLVData.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFKLVData.dod -------------------------------------------------------------------------------- /dodo/EnumAAFKLVDataDefs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFKLVDataDefs.dod -------------------------------------------------------------------------------- /dodo/EnumAAFLoadedPlugins.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFLoadedPlugins.dod -------------------------------------------------------------------------------- /dodo/EnumAAFLocators.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFLocators.dod -------------------------------------------------------------------------------- /dodo/EnumAAFMobSlots.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFMobSlots.dod -------------------------------------------------------------------------------- /dodo/EnumAAFMobs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFMobs.dod -------------------------------------------------------------------------------- /dodo/EnumAAFOperationDefs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFOperationDefs.dod -------------------------------------------------------------------------------- /dodo/EnumAAFParameterDefs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFParameterDefs.dod -------------------------------------------------------------------------------- /dodo/EnumAAFParameters.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFParameters.dod -------------------------------------------------------------------------------- /dodo/EnumAAFPluginDefs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFPluginDefs.dod -------------------------------------------------------------------------------- /dodo/EnumAAFPluginLocators.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFPluginLocators.dod -------------------------------------------------------------------------------- /dodo/EnumAAFProperties.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFProperties.dod -------------------------------------------------------------------------------- /dodo/EnumAAFPropertyDefs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFPropertyDefs.dod -------------------------------------------------------------------------------- /dodo/EnumAAFPropertyValues.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFPropertyValues.dod -------------------------------------------------------------------------------- /dodo/EnumAAFRIFFChunks.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFRIFFChunks.dod -------------------------------------------------------------------------------- /dodo/EnumAAFSegments.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFSegments.dod -------------------------------------------------------------------------------- /dodo/EnumAAFStorablePropVals.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFStorablePropVals.dod -------------------------------------------------------------------------------- /dodo/EnumAAFTaggedValueDefs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFTaggedValueDefs.dod -------------------------------------------------------------------------------- /dodo/EnumAAFTaggedValues.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFTaggedValues.dod -------------------------------------------------------------------------------- /dodo/EnumAAFTypeDefs.dod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/EnumAAFTypeDefs.dod -------------------------------------------------------------------------------- /dodo/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GNUmakefile -------------------------------------------------------------------------------- /dodo/GenAafIdl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenAafIdl.sh -------------------------------------------------------------------------------- /dodo/GenAafPrivateIdl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenAafPrivateIdl.sh -------------------------------------------------------------------------------- /dodo/GenAafPrivate_i.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenAafPrivate_i.sh -------------------------------------------------------------------------------- /dodo/GenAafPrivateh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenAafPrivateh.sh -------------------------------------------------------------------------------- /dodo/GenAaf_i.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenAaf_i.sh -------------------------------------------------------------------------------- /dodo/GenAafh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenAafh.sh -------------------------------------------------------------------------------- /dodo/GenCLSIDs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenCLSIDs.sh -------------------------------------------------------------------------------- /dodo/GenClassIDs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenClassIDs.sh -------------------------------------------------------------------------------- /dodo/GenDepend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenDepend.sh -------------------------------------------------------------------------------- /dodo/GenDepend2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenDepend2.sh -------------------------------------------------------------------------------- /dodo/GenEnumValidation.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenEnumValidation.pl -------------------------------------------------------------------------------- /dodo/GenObjectInterfaces.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenObjectInterfaces.pl -------------------------------------------------------------------------------- /dodo/GenObjectTable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenObjectTable.sh -------------------------------------------------------------------------------- /dodo/GenObjectTable_i.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenObjectTable_i.sh -------------------------------------------------------------------------------- /dodo/GenPluginIdl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenPluginIdl.sh -------------------------------------------------------------------------------- /dodo/GenPlugin_i.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenPlugin_i.sh -------------------------------------------------------------------------------- /dodo/GenPluginh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenPluginh.sh -------------------------------------------------------------------------------- /dodo/GenTargets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/GenTargets.sh -------------------------------------------------------------------------------- /dodo/aafobjects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/aafobjects.mk -------------------------------------------------------------------------------- /dodo/dod2iid.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/dod2iid.awk -------------------------------------------------------------------------------- /dodo/dod2iid.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/dod2iid.pl -------------------------------------------------------------------------------- /dodo/dododepend.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/dododepend.mak -------------------------------------------------------------------------------- /dodo/dodotargets.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/dodotargets.mak -------------------------------------------------------------------------------- /dodo/enchiridion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/enchiridion.txt -------------------------------------------------------------------------------- /dodo/macros/base.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/base.mac -------------------------------------------------------------------------------- /dodo/macros/comc.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/comc.mac -------------------------------------------------------------------------------- /dodo/macros/comcx.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/comcx.mac -------------------------------------------------------------------------------- /dodo/macros/comh.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/comh.mac -------------------------------------------------------------------------------- /dodo/macros/comt.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/comt.mac -------------------------------------------------------------------------------- /dodo/macros/cpp.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/cpp.mac -------------------------------------------------------------------------------- /dodo/macros/cppt.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/cppt.mac -------------------------------------------------------------------------------- /dodo/macros/dod2iid.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/dod2iid.mac -------------------------------------------------------------------------------- /dodo/macros/exp.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/exp.mac -------------------------------------------------------------------------------- /dodo/macros/fidl.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/fidl.mac -------------------------------------------------------------------------------- /dodo/macros/frefh.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/frefh.mac -------------------------------------------------------------------------------- /dodo/macros/h.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/h.mac -------------------------------------------------------------------------------- /dodo/macros/idl.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/idl.mac -------------------------------------------------------------------------------- /dodo/macros/implc.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/implc.mac -------------------------------------------------------------------------------- /dodo/macros/implh.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/implh.mac -------------------------------------------------------------------------------- /dodo/macros/refh.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/macros/refh.mac -------------------------------------------------------------------------------- /dodo/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/makefile -------------------------------------------------------------------------------- /dodo/maketargets.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/maketargets.mak -------------------------------------------------------------------------------- /dodo/maketargets_gnu.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/maketargets_gnu.mak -------------------------------------------------------------------------------- /dodo/sync_copyright.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/sync_copyright.pl -------------------------------------------------------------------------------- /dodo/tool/ArgDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/ArgDef.cpp -------------------------------------------------------------------------------- /dodo/tool/ArgDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/ArgDef.h -------------------------------------------------------------------------------- /dodo/tool/ArgDefTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/ArgDefTest.cpp -------------------------------------------------------------------------------- /dodo/tool/ArgSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/ArgSet.cpp -------------------------------------------------------------------------------- /dodo/tool/ArgSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/ArgSet.h -------------------------------------------------------------------------------- /dodo/tool/ArgSetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/ArgSetTest.cpp -------------------------------------------------------------------------------- /dodo/tool/DodoMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/DodoMain.cpp -------------------------------------------------------------------------------- /dodo/tool/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/GNUmakefile -------------------------------------------------------------------------------- /dodo/tool/MacroDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/MacroDef.cpp -------------------------------------------------------------------------------- /dodo/tool/MacroDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/MacroDef.h -------------------------------------------------------------------------------- /dodo/tool/MacroDefTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/MacroDefTest.cpp -------------------------------------------------------------------------------- /dodo/tool/MacroSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/MacroSet.cpp -------------------------------------------------------------------------------- /dodo/tool/MacroSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/MacroSet.h -------------------------------------------------------------------------------- /dodo/tool/MacroSetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/MacroSetTest.cpp -------------------------------------------------------------------------------- /dodo/tool/SourceInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/SourceInfo.cpp -------------------------------------------------------------------------------- /dodo/tool/SourceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/SourceInfo.h -------------------------------------------------------------------------------- /dodo/tool/SourceInfoTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/SourceInfoTest.cpp -------------------------------------------------------------------------------- /dodo/tool/TestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/TestMain.cpp -------------------------------------------------------------------------------- /dodo/tool/TextLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/TextLine.cpp -------------------------------------------------------------------------------- /dodo/tool/TextLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/TextLine.h -------------------------------------------------------------------------------- /dodo/tool/TextLineTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/TextLineTest.cpp -------------------------------------------------------------------------------- /dodo/tool/TextStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/TextStream.cpp -------------------------------------------------------------------------------- /dodo/tool/TextStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/TextStream.h -------------------------------------------------------------------------------- /dodo/tool/TextStreamTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/TextStreamTest.cpp -------------------------------------------------------------------------------- /dodo/tool/Vect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/Vect.h -------------------------------------------------------------------------------- /dodo/tool/fix_compiler_warnings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/fix_compiler_warnings.pl -------------------------------------------------------------------------------- /dodo/tool/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/dodo/tool/makefile -------------------------------------------------------------------------------- /examples/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples/GNUmakefile -------------------------------------------------------------------------------- /examples/com-api/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples/com-api/GNUmakefile -------------------------------------------------------------------------------- /examples2/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/GNUmakefile -------------------------------------------------------------------------------- /examples2/axDump/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axDump/GNUmakefile -------------------------------------------------------------------------------- /examples2/axDump/axDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axDump/axDump.cpp -------------------------------------------------------------------------------- /examples2/axDump/axDump.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axDump/axDump.vcproj -------------------------------------------------------------------------------- /examples2/axExample/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axExample/GNUmakefile -------------------------------------------------------------------------------- /examples2/axExample/axExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axExample/axExample.cpp -------------------------------------------------------------------------------- /examples2/axExample/axExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axExample/axExample.h -------------------------------------------------------------------------------- /examples2/axFileGen/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axFileGen/GNUmakefile -------------------------------------------------------------------------------- /examples2/axFileGen/axFileGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axFileGen/axFileGen.cpp -------------------------------------------------------------------------------- /examples2/axFileGen/axFileGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axFileGen/axFileGen.h -------------------------------------------------------------------------------- /examples2/axHrMap/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axHrMap/GNUmakefile -------------------------------------------------------------------------------- /examples2/axHrMap/axHrMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axHrMap/axHrMap.cpp -------------------------------------------------------------------------------- /examples2/axHrMap/axHrMap.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axHrMap/axHrMap.vcproj -------------------------------------------------------------------------------- /examples2/axLib/AxBaseObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxBaseObj.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxBaseObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxBaseObj.h -------------------------------------------------------------------------------- /examples2/axLib/AxBaseObjIter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxBaseObjIter.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxBaseObjIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxBaseObjIter.h -------------------------------------------------------------------------------- /examples2/axLib/AxComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxComponent.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxComponent.h -------------------------------------------------------------------------------- /examples2/axLib/AxContentStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxContentStorage.h -------------------------------------------------------------------------------- /examples2/axLib/AxDefObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxDefObject.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxDefObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxDefObject.h -------------------------------------------------------------------------------- /examples2/axLib/AxDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxDictionary.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxDictionary.h -------------------------------------------------------------------------------- /examples2/axLib/AxEssence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxEssence.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxEssence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxEssence.h -------------------------------------------------------------------------------- /examples2/axLib/AxEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxEx.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxEx.h -------------------------------------------------------------------------------- /examples2/axLib/AxFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxFile.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxFile.h -------------------------------------------------------------------------------- /examples2/axLib/AxHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxHeader.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxHeader.h -------------------------------------------------------------------------------- /examples2/axLib/AxHrMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxHrMap.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxHrMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxHrMap.h -------------------------------------------------------------------------------- /examples2/axLib/AxInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxInit.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxInit.h -------------------------------------------------------------------------------- /examples2/axLib/AxIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxIterator.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxIterator.h -------------------------------------------------------------------------------- /examples2/axLib/AxKLVData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxKLVData.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxKLVData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxKLVData.h -------------------------------------------------------------------------------- /examples2/axLib/AxMetaDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxMetaDef.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxMetaDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxMetaDef.h -------------------------------------------------------------------------------- /examples2/axLib/AxMob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxMob.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxMob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxMob.h -------------------------------------------------------------------------------- /examples2/axLib/AxMobSlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxMobSlot.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxMobSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxMobSlot.h -------------------------------------------------------------------------------- /examples2/axLib/AxObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxObject.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxObject.h -------------------------------------------------------------------------------- /examples2/axLib/AxParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxParameter.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxParameter.h -------------------------------------------------------------------------------- /examples2/axLib/AxPluginMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxPluginMgr.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxPluginMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxPluginMgr.h -------------------------------------------------------------------------------- /examples2/axLib/AxProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxProperty.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxProperty.h -------------------------------------------------------------------------------- /examples2/axLib/AxPropertyValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxPropertyValue.h -------------------------------------------------------------------------------- /examples2/axLib/AxSmartPointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxSmartPointer.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxSmartPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxSmartPointer.h -------------------------------------------------------------------------------- /examples2/axLib/AxStorageErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxStorageErrors.h -------------------------------------------------------------------------------- /examples2/axLib/AxTaggedValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxTaggedValue.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxTaggedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxTaggedValue.h -------------------------------------------------------------------------------- /examples2/axLib/AxTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxTypes.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxTypes.h -------------------------------------------------------------------------------- /examples2/axLib/AxUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxUtil.cpp -------------------------------------------------------------------------------- /examples2/axLib/AxUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/AxUtil.h -------------------------------------------------------------------------------- /examples2/axLib/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/GNUmakefile -------------------------------------------------------------------------------- /examples2/axLib/axLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axLib/axLib.vcproj -------------------------------------------------------------------------------- /examples2/axPlugin/AxImplPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/AxImplPlugin.h -------------------------------------------------------------------------------- /examples2/axPlugin/AxPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/AxPlugin.cpp -------------------------------------------------------------------------------- /examples2/axPlugin/AxPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/AxPlugin.h -------------------------------------------------------------------------------- /examples2/axPlugin/AxPlugin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/AxPlugin.pdf -------------------------------------------------------------------------------- /examples2/axPlugin/AxPluginFctry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/AxPluginFctry.h -------------------------------------------------------------------------------- /examples2/axPlugin/AxPluginMac.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/AxPluginMac.exp -------------------------------------------------------------------------------- /examples2/axPlugin/AxPluginUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/AxPluginUtil.h -------------------------------------------------------------------------------- /examples2/axPlugin/AxPluginWin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/AxPluginWin.cpp -------------------------------------------------------------------------------- /examples2/axPlugin/AxPluginWin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/AxPluginWin.def -------------------------------------------------------------------------------- /examples2/axPlugin/CAxPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/CAxPlugin.cpp -------------------------------------------------------------------------------- /examples2/axPlugin/CAxPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/CAxPlugin.h -------------------------------------------------------------------------------- /examples2/axPlugin/CAxUnknown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/CAxUnknown.cpp -------------------------------------------------------------------------------- /examples2/axPlugin/CAxUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/CAxUnknown.h -------------------------------------------------------------------------------- /examples2/axPlugin/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/GNUmakefile -------------------------------------------------------------------------------- /examples2/axPlugin/ReadMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/ReadMe -------------------------------------------------------------------------------- /examples2/axPlugin/axPlugin.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPlugin/axPlugin.vcproj -------------------------------------------------------------------------------- /examples2/axPluginInfo/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axPluginInfo/GNUmakefile -------------------------------------------------------------------------------- /examples2/axexamplerules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/examples2/axexamplerules.mk -------------------------------------------------------------------------------- /meta/AAFMetaDict.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/AAFMetaDict.xls -------------------------------------------------------------------------------- /meta/headergen/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/headergen/GNUmakefile -------------------------------------------------------------------------------- /meta/headergen/classDefUid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/headergen/classDefUid.cpp -------------------------------------------------------------------------------- /meta/headergen/extEnumUid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/headergen/extEnumUid.cpp -------------------------------------------------------------------------------- /meta/headergen/genDefInstances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/headergen/genDefInstances.cpp -------------------------------------------------------------------------------- /meta/headergen/headerGenTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/headergen/headerGenTypes.h -------------------------------------------------------------------------------- /meta/headergen/headerGenUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/headergen/headerGenUtils.cpp -------------------------------------------------------------------------------- /meta/headergen/headerGenUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/headergen/headerGenUtils.h -------------------------------------------------------------------------------- /meta/headergen/propertyDefUid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/headergen/propertyDefUid.cpp -------------------------------------------------------------------------------- /meta/headergen/propertyId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/headergen/propertyId.cpp -------------------------------------------------------------------------------- /meta/headergen/result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/headergen/result.cpp -------------------------------------------------------------------------------- /meta/headergen/storedObjectUid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/headergen/storedObjectUid.cpp -------------------------------------------------------------------------------- /meta/headergen/typeDefUid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/headergen/typeDefUid.cpp -------------------------------------------------------------------------------- /meta/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/makefile -------------------------------------------------------------------------------- /meta/mkdict.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/meta/mkdict.awk -------------------------------------------------------------------------------- /ref-impl/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/GNUmakefile -------------------------------------------------------------------------------- /ref-impl/aafiid/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/aafiid/GNUmakefile -------------------------------------------------------------------------------- /ref-impl/aafiid/aafiid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/aafiid/aafiid.cpp -------------------------------------------------------------------------------- /ref-impl/aaflib/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/aaflib/GNUmakefile -------------------------------------------------------------------------------- /ref-impl/aaflib/aaflib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/aaflib/aaflib.cpp -------------------------------------------------------------------------------- /ref-impl/aaflib/aaflib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/aaflib/aaflib.h -------------------------------------------------------------------------------- /ref-impl/aaflib/aaflibsgi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/aaflib/aaflibsgi.cpp -------------------------------------------------------------------------------- /ref-impl/aaflib/aaflibwin32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/aaflib/aaflibwin32.cpp -------------------------------------------------------------------------------- /ref-impl/aaflib/aafrdli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/aaflib/aafrdli.h -------------------------------------------------------------------------------- /ref-impl/bld_cfg/Darwin.mk: -------------------------------------------------------------------------------- 1 | include $(BLD_CFG_DIR)/PPCDarwin.mk 2 | -------------------------------------------------------------------------------- /ref-impl/bld_cfg/FreeBSD.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/bld_cfg/FreeBSD.mk -------------------------------------------------------------------------------- /ref-impl/bld_cfg/IRIX.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/bld_cfg/IRIX.mk -------------------------------------------------------------------------------- /ref-impl/bld_cfg/IRIX64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/bld_cfg/IRIX64.mk -------------------------------------------------------------------------------- /ref-impl/bld_cfg/Linux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/bld_cfg/Linux.mk -------------------------------------------------------------------------------- /ref-impl/bld_cfg/PPCDarwin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/bld_cfg/PPCDarwin.mk -------------------------------------------------------------------------------- /ref-impl/bld_cfg/Windows_98.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/bld_cfg/Windows_98.mk -------------------------------------------------------------------------------- /ref-impl/bld_cfg/Windows_NT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/bld_cfg/Windows_NT.mk -------------------------------------------------------------------------------- /ref-impl/bld_cfg/bld_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/bld_cfg/bld_cfg.h -------------------------------------------------------------------------------- /ref-impl/bld_cfg/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/bld_cfg/common.mk -------------------------------------------------------------------------------- /ref-impl/bld_cfg/depend.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/bld_cfg/depend.mk -------------------------------------------------------------------------------- /ref-impl/doc/OM/contents.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/doc/OM/contents.d -------------------------------------------------------------------------------- /ref-impl/doc/OM/html.fmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/doc/OM/html.fmt -------------------------------------------------------------------------------- /ref-impl/doc/OM/makedocs.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/doc/OM/makedocs.ksh -------------------------------------------------------------------------------- /ref-impl/doc/com-api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/doc/com-api/Makefile -------------------------------------------------------------------------------- /ref-impl/doc/com-api/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/doc/com-api/README.txt -------------------------------------------------------------------------------- /ref-impl/doc/com-api/aafDSlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/doc/com-api/aafDSlogo.gif -------------------------------------------------------------------------------- /ref-impl/doc/com-api/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/doc/com-api/doxygen.cfg -------------------------------------------------------------------------------- /ref-impl/doc/com-api/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/doc/com-api/footer.html -------------------------------------------------------------------------------- /ref-impl/doc/com-api/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/doc/com-api/header.html -------------------------------------------------------------------------------- /ref-impl/doc/com-api/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/doc/com-api/styles.css -------------------------------------------------------------------------------- /ref-impl/dtd/OM/ObjectManager.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/dtd/OM/ObjectManager.dtd -------------------------------------------------------------------------------- /ref-impl/expat/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/COPYING -------------------------------------------------------------------------------- /ref-impl/expat/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/GNUmakefile -------------------------------------------------------------------------------- /ref-impl/expat/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/ascii.h -------------------------------------------------------------------------------- /ref-impl/expat/asciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/asciitab.h -------------------------------------------------------------------------------- /ref-impl/expat/expat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/expat.h -------------------------------------------------------------------------------- /ref-impl/expat/expat_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/expat_config.h -------------------------------------------------------------------------------- /ref-impl/expat/expat_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/expat_external.h -------------------------------------------------------------------------------- /ref-impl/expat/iasciitab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/iasciitab.h -------------------------------------------------------------------------------- /ref-impl/expat/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/internal.h -------------------------------------------------------------------------------- /ref-impl/expat/latin1tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/latin1tab.h -------------------------------------------------------------------------------- /ref-impl/expat/nametab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/nametab.h -------------------------------------------------------------------------------- /ref-impl/expat/utf8tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/utf8tab.h -------------------------------------------------------------------------------- /ref-impl/expat/xmlparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/xmlparse.c -------------------------------------------------------------------------------- /ref-impl/expat/xmlrole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/xmlrole.c -------------------------------------------------------------------------------- /ref-impl/expat/xmlrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/xmlrole.h -------------------------------------------------------------------------------- /ref-impl/expat/xmltok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/xmltok.c -------------------------------------------------------------------------------- /ref-impl/expat/xmltok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/xmltok.h -------------------------------------------------------------------------------- /ref-impl/expat/xmltok_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/xmltok_impl.c -------------------------------------------------------------------------------- /ref-impl/expat/xmltok_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/xmltok_impl.h -------------------------------------------------------------------------------- /ref-impl/expat/xmltok_ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/expat/xmltok_ns.c -------------------------------------------------------------------------------- /ref-impl/include/AAFCOMPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFCOMPlatform.h -------------------------------------------------------------------------------- /ref-impl/include/AAFClassDefUIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFClassDefUIDs.h -------------------------------------------------------------------------------- /ref-impl/include/AAFCodecDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFCodecDefs.h -------------------------------------------------------------------------------- /ref-impl/include/AAFDataDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFDataDefs.h -------------------------------------------------------------------------------- /ref-impl/include/AAFDefUIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFDefUIDs.h -------------------------------------------------------------------------------- /ref-impl/include/AAFExtEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFExtEnum.h -------------------------------------------------------------------------------- /ref-impl/include/AAFFileKinds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFFileKinds.h -------------------------------------------------------------------------------- /ref-impl/include/AAFFileMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFFileMode.h -------------------------------------------------------------------------------- /ref-impl/include/AAFKLVDataDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFKLVDataDefs.h -------------------------------------------------------------------------------- /ref-impl/include/AAFMetaResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFMetaResult.h -------------------------------------------------------------------------------- /ref-impl/include/AAFOPDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFOPDefs.h -------------------------------------------------------------------------------- /ref-impl/include/AAFPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFPlatform.h -------------------------------------------------------------------------------- /ref-impl/include/AAFPluginDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFPluginDefs.h -------------------------------------------------------------------------------- /ref-impl/include/AAFPropertyDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFPropertyDefs.h -------------------------------------------------------------------------------- /ref-impl/include/AAFPropertyIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFPropertyIDs.h -------------------------------------------------------------------------------- /ref-impl/include/AAFResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFResult.h -------------------------------------------------------------------------------- /ref-impl/include/AAFSDKBuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFSDKBuild.h -------------------------------------------------------------------------------- /ref-impl/include/AAFSmartPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFSmartPointer.h -------------------------------------------------------------------------------- /ref-impl/include/AAFTypeDefUIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/AAFTypeDefUIDs.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMAVLTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMAVLTree.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMArrayType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMArrayType.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMContainer.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMDataSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMDataSet.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMDataStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMDataStream.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMDataTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMDataTypes.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMDataVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMDataVector.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMDefinition.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMDictionary.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMExceptions.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMIOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMIOStream.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMList.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMMXFStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMMXFStorage.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMOStream.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMObject.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMObjectSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMObjectSet.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMOpaqueType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMOpaqueType.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMPageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMPageCache.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMProperty.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMRawStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMRawStorage.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMRecordType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMRecordType.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMSet.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMSetType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMSetType.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMSingleton.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMStackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMStackTrace.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMStream.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMStreamType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMStreamType.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMStringType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMStringType.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMType.h -------------------------------------------------------------------------------- /ref-impl/include/OM/OMVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/OM/OMVector.h -------------------------------------------------------------------------------- /ref-impl/include/com-api/AAF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/com-api/AAF.h -------------------------------------------------------------------------------- /ref-impl/include/com-api/AAF.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/com-api/AAF.idl -------------------------------------------------------------------------------- /ref-impl/include/com-api/AAF_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/com-api/AAF_i.c -------------------------------------------------------------------------------- /ref-impl/include/ref-api/AAF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/ref-api/AAF.h -------------------------------------------------------------------------------- /ref-impl/include/ref-api/AAF_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/ref-api/AAF_i.c -------------------------------------------------------------------------------- /ref-impl/include/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/include/utf8.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/GNUmakefile -------------------------------------------------------------------------------- /ref-impl/libjpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/README -------------------------------------------------------------------------------- /ref-impl/libjpeg/ansi2knr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/ansi2knr.1 -------------------------------------------------------------------------------- /ref-impl/libjpeg/ansi2knr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/ansi2knr.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/cderror.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/cdjpeg.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/cdjpeg.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/change.log -------------------------------------------------------------------------------- /ref-impl/libjpeg/cjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/cjpeg.1 -------------------------------------------------------------------------------- /ref-impl/libjpeg/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/cjpeg.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/ckconfig.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/coderules.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/coderules.doc -------------------------------------------------------------------------------- /ref-impl/libjpeg/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/config.guess -------------------------------------------------------------------------------- /ref-impl/libjpeg/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/config.sub -------------------------------------------------------------------------------- /ref-impl/libjpeg/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/configure -------------------------------------------------------------------------------- /ref-impl/libjpeg/djpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/djpeg.1 -------------------------------------------------------------------------------- /ref-impl/libjpeg/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/djpeg.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/example.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/filelist.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/filelist.doc -------------------------------------------------------------------------------- /ref-impl/libjpeg/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/install-sh -------------------------------------------------------------------------------- /ref-impl/libjpeg/install.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/install.doc -------------------------------------------------------------------------------- /ref-impl/libjpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jcapimin.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jcapistd.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jccoefct.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jccolor.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jcdctmgr.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jchuff.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jchuff.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jcinit.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jcmainct.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jcmarker.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jcmaster.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jcomapi.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.bcc -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.cfg -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.dj -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.doc -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.mac -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.manx -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.mc6 -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.sas -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.st -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.vc -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.vms -------------------------------------------------------------------------------- /ref-impl/libjpeg/jconfig.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jconfig.wat -------------------------------------------------------------------------------- /ref-impl/libjpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jcparam.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jcphuff.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jcprepct.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jcsample.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jctrans.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdapimin.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdapistd.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdatadst.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdatasrc.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdcoefct.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdcolor.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdct.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jddctmgr.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdhuff.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdhuff.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdinput.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdmainct.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdmarker.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdmaster.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdmerge.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdosabcc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdosabcc.obj -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdosamsc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdosamsc.obj -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdosaobj.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdosaobj.doc -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdphuff.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdpostct.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdsample.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jdtrans.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jerror.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jerror.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jfdctflt.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jfdctfst.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jfdctint.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jidctflt.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jidctfst.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jidctint.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jidctred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jidctred.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jinclude.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jmemansi.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jmemdos.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jmemdosa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jmemdosa.asm -------------------------------------------------------------------------------- /ref-impl/libjpeg/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jmemmac.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jmemmgr.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jmemname.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jmemnobs.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jmemsys.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jmorecfg.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jpegint.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jpeglib.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/jpegtran.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jpegtran.1 -------------------------------------------------------------------------------- /ref-impl/libjpeg/jpegtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jpegtran.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jquant1.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jquant2.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jutils.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/jversion.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/libjpeg.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/libjpeg.doc -------------------------------------------------------------------------------- /ref-impl/libjpeg/ltconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/ltconfig -------------------------------------------------------------------------------- /ref-impl/libjpeg/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/ltmain.sh -------------------------------------------------------------------------------- /ref-impl/libjpeg/makcjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makcjpeg.st -------------------------------------------------------------------------------- /ref-impl/libjpeg/makdjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makdjpeg.st -------------------------------------------------------------------------------- /ref-impl/libjpeg/makeapps.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makeapps.ds -------------------------------------------------------------------------------- /ref-impl/libjpeg/makefile.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makefile.ansi -------------------------------------------------------------------------------- /ref-impl/libjpeg/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makefile.bcc -------------------------------------------------------------------------------- /ref-impl/libjpeg/makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makefile.cfg -------------------------------------------------------------------------------- /ref-impl/libjpeg/makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makefile.dj -------------------------------------------------------------------------------- /ref-impl/libjpeg/makefile.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makefile.manx -------------------------------------------------------------------------------- /ref-impl/libjpeg/makefile.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makefile.mc6 -------------------------------------------------------------------------------- /ref-impl/libjpeg/makefile.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makefile.mms -------------------------------------------------------------------------------- /ref-impl/libjpeg/makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makefile.sas -------------------------------------------------------------------------------- /ref-impl/libjpeg/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makefile.unix -------------------------------------------------------------------------------- /ref-impl/libjpeg/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makefile.vc -------------------------------------------------------------------------------- /ref-impl/libjpeg/makefile.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makefile.vms -------------------------------------------------------------------------------- /ref-impl/libjpeg/makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makefile.wat -------------------------------------------------------------------------------- /ref-impl/libjpeg/makelib.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makelib.ds -------------------------------------------------------------------------------- /ref-impl/libjpeg/makeproj.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makeproj.mac -------------------------------------------------------------------------------- /ref-impl/libjpeg/makljpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makljpeg.st -------------------------------------------------------------------------------- /ref-impl/libjpeg/maktjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/maktjpeg.st -------------------------------------------------------------------------------- /ref-impl/libjpeg/makvms.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/makvms.opt -------------------------------------------------------------------------------- /ref-impl/libjpeg/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/rdbmp.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/rdcolmap.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/rdgif.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/rdjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/rdjpgcom.1 -------------------------------------------------------------------------------- /ref-impl/libjpeg/rdjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/rdjpgcom.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/rdppm.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/rdrle.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/rdswitch.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/rdtarga.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/readme.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/readme.dos -------------------------------------------------------------------------------- /ref-impl/libjpeg/structure.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/structure.doc -------------------------------------------------------------------------------- /ref-impl/libjpeg/testimg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/testimg.bmp -------------------------------------------------------------------------------- /ref-impl/libjpeg/testimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/testimg.jpg -------------------------------------------------------------------------------- /ref-impl/libjpeg/testimg.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/testimg.ppm -------------------------------------------------------------------------------- /ref-impl/libjpeg/testimgp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/testimgp.jpg -------------------------------------------------------------------------------- /ref-impl/libjpeg/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/testorig.jpg -------------------------------------------------------------------------------- /ref-impl/libjpeg/testprog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/testprog.jpg -------------------------------------------------------------------------------- /ref-impl/libjpeg/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/transupp.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/transupp.h -------------------------------------------------------------------------------- /ref-impl/libjpeg/usage.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/usage.doc -------------------------------------------------------------------------------- /ref-impl/libjpeg/wizard.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/wizard.doc -------------------------------------------------------------------------------- /ref-impl/libjpeg/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/wrbmp.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/wrgif.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/wrjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/wrjpgcom.1 -------------------------------------------------------------------------------- /ref-impl/libjpeg/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/wrjpgcom.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/wrppm.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/wrrle.c -------------------------------------------------------------------------------- /ref-impl/libjpeg/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/libjpeg/wrtarga.c -------------------------------------------------------------------------------- /ref-impl/plugins/AAFINTP.DEF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/AAFINTP.DEF -------------------------------------------------------------------------------- /ref-impl/plugins/AAFInterpCOM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/AAFInterpCOM.cpp -------------------------------------------------------------------------------- /ref-impl/plugins/AAFPluginCOM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/AAFPluginCOM.cpp -------------------------------------------------------------------------------- /ref-impl/plugins/AAFPluginUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/AAFPluginUtils.h -------------------------------------------------------------------------------- /ref-impl/plugins/AAFRational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/AAFRational.cpp -------------------------------------------------------------------------------- /ref-impl/plugins/AAFRational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/AAFRational.h -------------------------------------------------------------------------------- /ref-impl/plugins/AafPlugincom.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/AafPlugincom.def -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFAIFCCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFAIFCCodec.cpp -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFAIFCCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFAIFCCodec.h -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFBasicInterp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFBasicInterp.h -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFCDCICodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFCDCICodec.cpp -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFCDCICodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFCDCICodec.h -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFDNxHDCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFDNxHDCodec.h -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFJPEGCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFJPEGCodec.cpp -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFJPEGCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFJPEGCodec.h -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFPCMCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFPCMCodec.cpp -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFPCMCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFPCMCodec.h -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFVC3Codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFVC3Codec.cpp -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFVC3Codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFVC3Codec.h -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFWAVECodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFWAVECodec.cpp -------------------------------------------------------------------------------- /ref-impl/plugins/CAAFWAVECodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/CAAFWAVECodec.h -------------------------------------------------------------------------------- /ref-impl/plugins/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/GNUmakefile -------------------------------------------------------------------------------- /ref-impl/plugins/jpegesdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/jpegesdata.h -------------------------------------------------------------------------------- /ref-impl/plugins/jpegesdatadst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/jpegesdatadst.cpp -------------------------------------------------------------------------------- /ref-impl/plugins/jpegesdatasrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/jpegesdatasrc.cpp -------------------------------------------------------------------------------- /ref-impl/plugins/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/plugins/utf8.cpp -------------------------------------------------------------------------------- /ref-impl/src/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/GNUmakefile -------------------------------------------------------------------------------- /ref-impl/src/OM/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/GNUmakefile -------------------------------------------------------------------------------- /ref-impl/src/OM/OMAVLTreeT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMAVLTreeT.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMArrayPropertyT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMArrayPropertyT.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMArrayType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMArrayType.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMAssertions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMAssertions.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMAssertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMAssertions.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMByteArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMByteArray.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMByteArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMByteArray.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMClassFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMClassFactory.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMDataSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMDataSet.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMDataStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMDataStream.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMDataTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMDataTypes.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMDataVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMDataVector.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMDefinition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMDefinition.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMDictionary.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMExceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMExceptions.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMFile.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMFile.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMIOStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMIOStream.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMIdentitySetT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMIdentitySetT.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMIndirectType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMIndirectType.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMIntegerType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMIntegerType.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMListIteratorT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMListIteratorT.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMListT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMListT.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMMXFStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMMXFStorage.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMOStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMOStream.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMOpaqueType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMOpaqueType.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMPageCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMPageCache.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMPortability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMPortability.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMProperty.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMPropertySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMPropertySet.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMRecordType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMRecordType.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMRedBlackTreeT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMRedBlackTreeT.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMRefProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMRefProperty.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMReferenceSetT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMReferenceSetT.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMRenamedType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMRenamedType.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMRootStorable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMRootStorable.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMRootStorable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMRootStorable.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMSetIteratorT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMSetIteratorT.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMSetPropertyT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMSetPropertyT.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMSetT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMSetT.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMSetType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMSetType.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMSingletonT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMSingletonT.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMStackTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMStackTrace.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMStorable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMStorable.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMStorable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMStorable.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMStoredObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMStoredObject.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMStoredObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMStoredObject.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMStoredSetIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMStoredSetIndex.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMStream.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMStreamType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMStreamType.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMStringType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMStringType.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMSymbolspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMSymbolspace.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMSymbolspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMSymbolspace.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMType.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMTypeVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMTypeVisitor.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMUtilities.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMUtilities.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMVectorT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMVectorT.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMWString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMWString.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMWString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMWString.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMXMLReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMXMLReader.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMXMLReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMXMLReader.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMXMLStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMXMLStorage.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMXMLStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMXMLStorage.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMXMLUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMXMLUtilities.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMXMLUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMXMLUtilities.h -------------------------------------------------------------------------------- /ref-impl/src/OM/OMXMLWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMXMLWriter.cpp -------------------------------------------------------------------------------- /ref-impl/src/OM/OMXMLWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/OMXMLWriter.h -------------------------------------------------------------------------------- /ref-impl/src/OM/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/OM/utf8.cpp -------------------------------------------------------------------------------- /ref-impl/src/com-api/AAFCLSIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/AAFCLSIDs.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFDataDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFDataDef.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFEvent.cpp -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFEvent.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFFile.cpp -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFFile.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFFiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFFiller.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFHeader.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFKLVData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFKLVData.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFLocator.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFMob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFMob.cpp -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFMob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFMob.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFMobSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFMobSlot.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFObject.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFRoot.cpp -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFRoot.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFSegment.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/CAAFTypeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/CAAFTypeDef.h -------------------------------------------------------------------------------- /ref-impl/src/com-api/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/com-api/GNUmakefile -------------------------------------------------------------------------------- /ref-impl/src/impl/AAFClassIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/AAFClassIDs.h -------------------------------------------------------------------------------- /ref-impl/src/impl/AAFObjectModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/AAFObjectModel.h -------------------------------------------------------------------------------- /ref-impl/src/impl/AAFUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/AAFUtils.cpp -------------------------------------------------------------------------------- /ref-impl/src/impl/AAFUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/AAFUtils.h -------------------------------------------------------------------------------- /ref-impl/src/impl/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/GNUmakefile -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFContext.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFDataDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFDataDef.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFEvent.cpp -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFEvent.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFFile.cpp -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFFile.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFFiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFFiller.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFHeader.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFKLVData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFKLVData.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFLocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFLocator.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFMob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFMob.cpp -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFMob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFMob.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFMobSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFMobSlot.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFModule.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFObject.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFRoot.cpp -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFRoot.h -------------------------------------------------------------------------------- /ref-impl/src/impl/ImplAAFUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/ImplAAFUID.h -------------------------------------------------------------------------------- /ref-impl/src/impl/aafErr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/aafErr.cpp -------------------------------------------------------------------------------- /ref-impl/src/impl/aafErr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/aafErr.h -------------------------------------------------------------------------------- /ref-impl/src/impl/aafTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/aafTable.cpp -------------------------------------------------------------------------------- /ref-impl/src/impl/aafTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/src/impl/aafTable.h -------------------------------------------------------------------------------- /ref-impl/xsd/aafxml/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/xsd/aafxml/README.txt -------------------------------------------------------------------------------- /ref-impl/xsd/aafxml/classdef.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/xsd/aafxml/classdef.xsl -------------------------------------------------------------------------------- /ref-impl/xsd/aafxml/main.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/xsd/aafxml/main.xsl -------------------------------------------------------------------------------- /ref-impl/xsd/aafxml/merge.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/xsd/aafxml/merge.xsl -------------------------------------------------------------------------------- /ref-impl/xsd/aafxml/metadict.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/xsd/aafxml/metadict.xsd -------------------------------------------------------------------------------- /ref-impl/xsd/aafxml/propdef.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/xsd/aafxml/propdef.xsl -------------------------------------------------------------------------------- /ref-impl/xsd/aafxml/typedef.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/xsd/aafxml/typedef.xsl -------------------------------------------------------------------------------- /ref-impl/xsd/aafxml/util.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ref-impl/xsd/aafxml/util.xsl -------------------------------------------------------------------------------- /ss-impl/ref/h/ref.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ss-impl/ref/h/ref.hxx -------------------------------------------------------------------------------- /ss-impl/ref/h/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ss-impl/ref/h/storage.h -------------------------------------------------------------------------------- /ss-impl/ref/h/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ss-impl/ref/h/tchar.h -------------------------------------------------------------------------------- /ss-impl/ref/h/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/ss-impl/ref/h/wchar.h -------------------------------------------------------------------------------- /sss-impl/include/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/sss-impl/include/Types.h -------------------------------------------------------------------------------- /test/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/test/GNUmakefile -------------------------------------------------------------------------------- /test/com/ComModTestAAF/Laser.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/test/com/ComModTestAAF/Laser.wav -------------------------------------------------------------------------------- /test/com/ComModTestAAF/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/test/com/ComModTestAAF/utf8.cpp -------------------------------------------------------------------------------- /test/com/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/test/com/GNUmakefile -------------------------------------------------------------------------------- /test/com/ScaleTest/1frame.dv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/test/com/ScaleTest/1frame.dv -------------------------------------------------------------------------------- /test/com/ScaleTest/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/test/com/ScaleTest/GNUmakefile -------------------------------------------------------------------------------- /test/com/ScaleTest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/test/com/ScaleTest/README.txt -------------------------------------------------------------------------------- /test/com/ScaleTest/ScaleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/test/com/ScaleTest/ScaleTest.cpp -------------------------------------------------------------------------------- /test/com/ScaleTest/createtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/test/com/ScaleTest/createtest.sh -------------------------------------------------------------------------------- /test/com/ScaleTest/runaaftest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/test/com/ScaleTest/runaaftest.sh -------------------------------------------------------------------------------- /test/com/XMLStoredFormat/input/testStream_empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/com/XMLStoredFormat/input/testStream_simple: -------------------------------------------------------------------------------- 1 | ABCDEFG 2 | -------------------------------------------------------------------------------- /unixaafsdk.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/unixaafsdk.mak -------------------------------------------------------------------------------- /update.ksh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dneg/aaf/HEAD/update.ksh --------------------------------------------------------------------------------