This commit is contained in:
2024-08-07 09:12:07 -04:00
parent ca445435a0
commit fdfadd5c7e
1021 changed files with 73601 additions and 0 deletions

21
avifile/ADDHDR.CPP Normal file
View File

@@ -0,0 +1,21 @@
#include <avifile/addhdr.hpp>
bool AVIAdditionalHeader::read(File &inFile)
{
String strdLiteral("strd");
String strdHeader;
DWORD sizeHeader;
strdHeader.reserve(strdLiteral.length()+1);
inFile.read(strdHeader,strdLiteral.length());
if(!(strdHeader==strdLiteral))
{
inFile-=strdLiteral.length();
return false;
}
::OutputDebugString(String("[AVIAdditionalHeader::operator<<]")+strdHeader+String("\n"));
inFile.read(sizeHeader);
inFile+=sizeHeader;
return true;
}